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

customer exit

Former Member
0 Likes
402

hi friends...

could u plz tell me the difference between user exist & customer-exit

thanks in advance.

hi friends...

could u plz tell me the difference between user exist & customer-exit

thanks in advance.

2 REPLIES 2
Read only

Former Member
0 Likes
381

Hi Priya,

A customer exit is a type of user exit. A user exit is a handle that SAP put into their code, allowing a customer to add their own routines.

Regards

Aneesh.

Read only

Former Member
0 Likes
381

hi,

The R/3 enhancement concept allows you to add your own functionality to SAP’s 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.

Please check these links for more information.

http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm

http://www.sapdevelopment.co.uk/enhance/enhancehome.htm

Mark the helpful answers

~~Guduri