‎2008 Jul 07 11:22 AM
how do i find the function exit for a standrd program?
i just follow a simple rule to find out user exits and that is to search for the key word 'user exit'
in standard program but how do i find out the function exits?
Please let me know?
regards
‎2008 Jul 07 11:31 AM
Hi
These start from the word EXIT_programname_NNN ending in a 3 digit number. No access code is required to implement any type of exit including function exits. The function exits are called from the standard SAP program in the form
of ABAP statement
CALL CUSTOMER-FUNCTION 'NNN'
To implement the FUNCTION EXITs first of all the project is created and a suitable enhancement package is selected and from its compnents the function exit to be implemented is selected and on double clicking it the exit code will appear in ABAP EDITOR(se38) where a Z include will be found and the customer code should be entered in this include.
Reward if useful
Regards
Divya
‎2008 Jul 07 11:24 AM
hi,
Execute the below piece of code by giving the transaction code in the selection screen to find all the active exits
http://www.sap-img.com/ab038.htm
Regards,
Santosh
‎2008 Jul 07 11:27 AM
thnkx for the reply santosh but we cnt find the function exits through this program
‎2008 Jul 07 11:33 AM
hi,
With that program you will come to know the enhancements ...doble click on it to find all the customer functions(Components Section ) in it ...
Regards,
Santosh
‎2008 Jul 07 11:28 AM
‎2008 Jul 07 11:31 AM
Hi
These start from the word EXIT_programname_NNN ending in a 3 digit number. No access code is required to implement any type of exit including function exits. The function exits are called from the standard SAP program in the form
of ABAP statement
CALL CUSTOMER-FUNCTION 'NNN'
To implement the FUNCTION EXITs first of all the project is created and a suitable enhancement package is selected and from its compnents the function exit to be implemented is selected and on double clicking it the exit code will appear in ABAP EDITOR(se38) where a Z include will be found and the customer code should be entered in this include.
Reward if useful
Regards
Divya
‎2008 Jul 07 11:34 AM
hi bhanu ,
These are used to add functionality through ABAP code . These start from the word EXIT_programname_NNN ending in a 3 digit number. No access code is required to implement any type of exit including function exits.
The function exits are called from the standard SAP program in the form
of ABAP statement
CALL CUSTOMER-FUNCTION 'NNN'
This is in contrast to USEREXITs where PERFORM statement is used to call
the required userexit.
To implement the FUNCTION EXITs first of all the project is created and a suitable enhancement package is selected and from its compnents the function exit to be implemented is selected and on double clicking it the exit code will appear in ABAP EDITOR(se38) where a Z include will be found and the customer code should be entered in this include.
regrads,
sandeep