What is User Exits and Customer
Exits?
Difference between user exits & customer exits: User exit - A user exit is a three character code that instructs the system to access a program during system processing. 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 Customer exit - 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.
*-- Mani
The following document is about exits in SAP :- 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 user 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. Types of Exits
Menu Exits
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
Function Module 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. These calls have the following syntax: CALL CUSTOMER-FUNCTION ‘001’. Field Exits
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. An example of a user exits :- MODULE user_exit_0001 INPUT
Get help for your ABAP problems
ABAP Tips
Best regards,
All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|