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

User Exits Steps

p291102
Active Contributor
0 Likes
1,727

Hi ,

Can anyone give general baisc intro on user exits ?

Regards

M Sankar

1 ACCEPTED SOLUTION
Read only

mithun_shetty4
Contributor
0 Likes
1,091

User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a function module. The code for the function module is written by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.

The naming standard of function modules for functionmodule exits is:

EXIT_<program name><3 digit suffix>

The call to a functionmodule exit is implemented as:

CALL CUSTOMER.-FUNCTION ❤️ digit suffix>

To find a Exit.

Goto Transaction -- Find The Package

SMOD >f4>Use the Package here to Find the Exits In the Package.

Else if you Want to search by Application Area wise ,

There is one more tab to find the Exits in the Respective Application Area.

Implementing the Exit-- CMOD Create ProjectsAssgn your Component .

Now Run ur Transaction to Check if it Triggers.

Thats it..

For More ..

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

Award Point if Useful.

Regards,

Mithun.

5 REPLIES 5
Read only

Former Member
0 Likes
1,091

hi

check this short tutorial on user exits

www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

reward if it helps

Krishna

Read only

RenjithKumar
Product and Topic Expert
Product and Topic Expert
0 Likes
1,091

Hi ,

This is a complete Step by Step Screen shot tutorial on User Exits :

http://www.201interviewquestions.com/docs/User%20exits.ppt

http://erpgenie.com/abaptips/component/option,com_docman/task,doc_details/gid,27/

Best Regards

Renjith Kumar

Read only

Former Member
0 Likes
1,091

Hai,

Userxits allow us to add our own functionality to SAP standard program

without modifying it . These are implemented in the form of subroutines and hence are also known as FORM EXITs. The userexits are generally collected in includes and attached to the standard program by the SAP.

User exits are used when the flow for a particular transaction has to take some other route other then the normal flow. this can be the case when you have to attach some additional functionality lik u need a customised screen, or new functionality (using a functional module). based on these things user exits can be classified as screen exits, function module exits, field exits( not used anymore). hope this gives some help on userexits.

For More information on Exits, check these links

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sapgenie.com/abap/code/abap26.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

http://www.easymarketplace.de/userexit.php

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sappoint.com/abap/userexit.pdfUser-Exit

http://www.planetsap.com/userexit_main_page.htm

Regards,

Padmam.

Read only

mithun_shetty4
Contributor
0 Likes
1,092

User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a function module. The code for the function module is written by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.

The naming standard of function modules for functionmodule exits is:

EXIT_<program name><3 digit suffix>

The call to a functionmodule exit is implemented as:

CALL CUSTOMER.-FUNCTION ❤️ digit suffix>

To find a Exit.

Goto Transaction -- Find The Package

SMOD >f4>Use the Package here to Find the Exits In the Package.

Else if you Want to search by Application Area wise ,

There is one more tab to find the Exits in the Respective Application Area.

Implementing the Exit-- CMOD Create ProjectsAssgn your Component .

Now Run ur Transaction to Check if it Triggers.

Thats it..

For More ..

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

Award Point if Useful.

Regards,

Mithun.