cancel
Showing results for 
Search instead for 
Did you mean: 

userexits

Former Member
0 Kudos

hi

give me the defination of userexit ......

with regards....

sham

Accepted Solutions (0)

Answers (4)

Answers (4)

Lakshmipathi
Active Contributor
0 Kudos

Dear sham

The simple definition for User Exit is that it offer you the option of enhancing existing functions according to your personal requirements.

thanks

G. Lakshmipathi

Former Member
0 Kudos

Hi,

[A Short Tutorial on User Exits|http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm]

[User Exits In Sales Document Processing|http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm]

Assign Points if helpful.

Thanks and Regards,

Naveen Dasari.

Former Member
0 Kudos

Hi Shameer,

User exit - A user exit is a three character code that instructs the system to access a program during system processing.

The original purpose of user exits was to allow the user to avoid modification adjustment.

A user exit is considered a modification, since technically objects in the SAP namespace are being modified.

The SAP developer creates a special include in a module pool. These includes contain one or more subroutines routines that satisfy the naming convention userexit_<name>.

SXX: S is for standard exits that are delivered by SAP. XX represents the 2-digit exit number.

UXX: U is for user exits that are defined by the user. XX represents the 2-digit exit number

Reward if it helpful.

Regards

Sasikanth.Ch

Former Member
0 Kudos

Hi,

Point in an SAP program where a customer's own program can be called.

User exits allow developers to access and modify program components and data objects in the standard system. On upgrade, each user exit must be checked to ensure that it conforms to the standard system.

Prase