2007 Feb 08 5:19 PM
pls give detailed information about user exits.
2007 Feb 08 5:21 PM
Hi,
Check this link..
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sap-img.com/abap/what-is-user-exits.htm
Thanks,
Naren
2007 Feb 08 5:22 PM
Hi Srikant,
The R/3 enhancement concept allows you to add your own functionality to SAPs standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
Customer exits are implemented in Z-includes and are ENHANCEMENTS to the system.
User-exits were firstly intended to be developed for the SD module. You make your coding in includes in SAP namespace (e.g MV*). That's why, user exits are MODIFICATIONS to the system. In includes for user exits there are empty subroutines ( generally with the name convention "userexit_...") and you code using global variables of the main program.
But, generally developers use these terms without this distinction. So, someone may mean a "customer exit" when (s)he says "user exit" or vice-versa.
Hope this will help.
Thanks.
2007 Feb 08 5:33 PM
To work with user Exits you need to use following transaction codes.
1. SMOD
2. CMOD
to find user exit in any programm / developement class / package
Open SMOD / CMOD and press F4 then give programm name or package name. It will give all user exits in the programm and it's impelementation if it's done.
You can also find CALL CUSTOMER-FUNCTION in any programm to locate the user-exit.
DARSHAN
2007 Feb 08 5:34 PM
2007 Feb 08 5:35 PM