cancel
Showing results for 
Search instead for 
Did you mean: 

User Exit

Former Member
0 Kudos

Hi SAP Consultants,

I need to ask abt user exit. Wht is it ? How to integrate b/w SD & ABAP ?

How to co-relate user exit with smart forms?

Plz clarify .

Best regards,

Ankur

Accepted Solutions (0)

Answers (3)

Answers (3)

Manoj_Mahajan78
Active Contributor
0 Kudos

Hi Ankur,

Please visit http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

You will get all info @ user exits.

Regds

MM

Former Member
0 Kudos

Hi,

Userexits are predefined places in the SAP standard coding where customer can put their own logic in order to adjust standard processes to customer requirements. These places are predefined by SAP.

Transaction SMOD shows you which enhancements SAP has provided and of which components they consist of .

If you want to implement a userexit then you have to define an enhancement project (transaction CMOD), assign all enhancements (e.g. CATS0001, CATS0002, etc.) you need an then implement them.

Finally, you have to activate your project in order to activate the userexits.

Types of Exits

There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.

Menu Exits

Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.

SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item?s text when activating the item in an add-on project.

Screen Exits

Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen?s flow logic.

Function Module Exits

Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits.

When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated.

Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs.

Field Exits

Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field. Example: The data element BBBNR identifies a company?s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100.

The field exit concept lets you create a special function module that contains this logic.

You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number.

In 4.6c, you can use "RSMODPRF" program to create field exits.

Regards,

Ashutosh

Former Member
0 Kudos

Hello Ankur ,

as per my knowledge through out the system you can find user-exit programs.The total sap software is programmed through User-exits only.so, when ever we dont get the sloution in STD SAP for client specific requirement we go for User- exits . here u have differ kind of user -exits . ex . sales document user exit --mv45afzz

billing document is rv60afzz,dilevary is vl45afzz.

i hope some what i t may help u.

with regards,

venkat