Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

differnce between user and customer exit

Answer Posted / ektagalani


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.

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

These calls have the following syntax:

CALL CUSTOMER-FUNCTION ‘001’.

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.

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Create any functions? How to go about it?

980


What are the events in abap/4 language? : abap hr

1027


Does the call transaction method allow multiple transactions to be processed by sap? : abap bdc

913


What are the 3 types of function modules in sap?

1027


WHAT ARE THE MANDATORY FIELDS TO BE FILLED FROM TABLES BAPIITEMIN, BAPIPARTNR, BAPIITEMEX, BAPICUCFG, BAPICUINS, BAPICUPRT, AND BAPICUVAL IN BAPI 'BAPI_QUOTATION_CREATEFROMDATA

2492


How can the standard tables of sap be modified?

1074


What is view? Explain the different types of view?

1148


What is locking? : abap data dictionary

1096


What should be declared explicitly in the corresponding abap/4 statements to access internal tables without header lines & why? : abap modularization

1044


Explain get cursor field?

1126


What are the differences between sap memory and abap memory?

1061


Example of table cluster and cluster tables.

1076


What is lock object ? : abap data dictionary

1053


What are the advantages/ dis-advantages of logical databases?

916


I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/

2257