Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Form exits

Former Member
0 Likes
1,150

Guy's there are some exit ,called form exit ,which are

different form user exit ,menu exit and screen exit,

how to find form exit ,is there any Tcode like smod or

cmod to find form exit for given transcation,

Guy's there are some exit ,called form exit ,which are

different form user exit ,menu exit and screen exit,

how to find form exit ,is there any Tcode like smod or

cmod to find form exit for given transcation,

4 REPLIES 4
Read only

Former Member
0 Likes
958

Hi Sanju,

I've not heard of FORM EXITS..

what does that mean and what is it used for...

All i know was Screen Exits, Menu Exits

Field Exits and Function Module Exits ..

regards

satesh

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
958

A form exit is a form or subroutine that is provided by sap for doing custom logic. It is implemented as a FORM...ENDFORM. These forms are called at specific times in the processing of the transaction, you have no control when they are fired. To add custom code to these, you will need to get an access key for the program where the FORMs are located. Usually this is an INCLUDE program. Then it is just a matter of add the logic in the form. Check out include MV45AFZZ. These are FORM exits for sales document processing.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
958

Do tou mean ROUTINES in ABAP where various checks during Document processing are carried out.

Have a look at this documentation provided by SAP under section ROUTINES.

http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm

Read only

0 Likes
958

absolutely that what i was looking for

thanks'