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

function exit

Former Member
0 Likes
3,444

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,860

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

6 REPLIES 6
Read only

Former Member
0 Likes
1,860

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

Read only

0 Likes
1,860

thnkx for the reply santosh but we cnt find the function exits through this program

Read only

0 Likes
1,860

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

Read only

Former Member
0 Likes
1,860

hi

seach for the term

customer-function

and then select the appropiate function

also use this link and refer ti KIRAN answer

Cheers

Snehi

Edited by: snehi chouhan on Jul 7, 2008 12:28 PM

Edited by: snehi chouhan on Jul 7, 2008 12:32 PM

Read only

Former Member
0 Likes
1,861

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

Read only

Former Member
0 Likes
1,860

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