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-exit

Former Member
0 Likes
668

hi all,

what is the diff between user-exit and customer-exit.

quick answere is apprecitable.

regards

kanny

6 REPLIES 6
Read only

dani_mn
Active Contributor
0 Likes
607

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

Read only

Former Member
0 Likes
607

hi

how can i find an enhancement (procedure)

sql trace?

regards

kanny

Read only

Former Member
0 Likes
607

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

Read only

Former Member
0 Likes
607

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

Read only

abdul_hakim
Active Contributor
0 Likes
607

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

Read only

Former Member
0 Likes
607

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