‎2006 Sep 02 8:04 AM
hi all,
what is the diff between user-exit and customer-exit.
quick answere is apprecitable.
regards
kanny
‎2006 Sep 02 8:09 AM
HI,
There is no difference between these two. two names for the same thing.
you can define this like this.
User-exits are empty subroutines that SAP Developers have provided for you.You can fill them with your own source code.Technically this is a modification.Customer exits are nothing but a include in customer name space will be provided in the function module which starts with CALL CUSTOMER.You can fill them with your own source code.Technically this is an enhancement.
look into following links for procedure to find and use user-exits transaction for finding user-exits is 'SMOD'
<b>http://www.sapbrain.com/TUTORIALS/TECHNICAL/user_exits_tutorial.html
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm</b>;
REgards,
Message was edited by: HRA
‎2006 Sep 02 8:10 AM
hi
how can i find an enhancement (procedure)
sql trace?
regards
kanny
‎2006 Sep 02 8:29 AM
Hi ,
To fina a enhacment for a specific Tcode.
get the dev class of tcode from se93 tcode
goto tcode SMOD , enter f4 on enhacment ,enetr the dev class u will find all the enhancment related to that tcode.
then reading the description u can decide which enhamcment is useful.
reward points if helpful
Regards
Kapil
‎2006 Sep 02 4:45 PM
hi
good
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. There are many types of user exit, and often they differ between modules, so I can't give a step by step guide to finding them. Some tips are:
Use CMOD
Search the major module pools of the applications for forms beginning userexit
Check the IMG, often there are links to user exits here.
http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
THANKS
MRUTYUN
‎2006 Sep 02 4:56 PM
USER EXITS:
User exits are empty subroutines that SAP developers have provided for you in which you can fill your own source code.Technically itz a modification.Mostly in SD.
CUSTOMER EXITS:
Customer exits are means of doing enhancement to SAP system.Technically itz an enhancement.Egs.Function Module Exit,Menu Exit,Screen Exit.
Cheers,
Abdul Hakim
‎2006 Sep 02 9:00 PM
Hi All,
User Exit is only for SD. In other modules it is known as Customer Enhancements/Exits.
Also, User Exits exists for the most of the transactions dealing with Create/Change transaction. Check TSTS/TADIR.
NJoy The Hunting!!!
-Sid