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

Former Member
0 Likes
493

how can i creat my own user exits for a perticular scenerio

4 REPLIES 4
Read only

dani_mn
Active Contributor
0 Likes
467

HI,

User Exits are SAP provided enhancements points in which cusotmer can fill there own logic.

You can't create your own user exit. If the exit is available you can use it.

for searching exit use tcode 'SMOD'.

Regards,

HRA

Read only

Former Member
0 Likes
467

If its standard code, you cannot create your own exits. If its entirely cutom code, you can.

Regards,

Ravi

Read only

0 Likes
467

how to create a user exit for a custom code?

Read only

Former Member
0 Likes
467

HI

GOOD

User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a functionmodule. The code for the function module is writeen 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>

go through this link

http://sap.niraj.tripod.com/id21.html

thanks

mrutyun