cancel
Showing results for 
Search instead for 
Did you mean: 

Reg: Screen Exit

Former Member
0 Kudos

Hi,

how to find screen exit?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

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.

The basic rule in SAP as far as ABAP workbench developments are concerned is "Do not modify the source code of the program"

Since needs and requirements keep on changing from client to client and for various business scenarios, there is a need to customise the programs as per client requirement.

For this purpose, SAP has provided numerous list of user-exits also known as enhancements, which is nothing but a program which will deal with the client additional requirement, without modifying the source code of the program. These exits are already provided by SAP. You can see the list of user-exits provided by using the transaction code SMOD. If you cannot find an user exit which match with client requirements, then you can tell SAP to create a new user exit.

On the other hand, field exit is nothing but where you write a small program, to control the properties of an existing field in a particular screen. Hence creation of a field exit is controlled by Program name, screen no. and the field name.

To give you an example, if you want to prevent a particular payment method to be executed via transaction FBZ5 or F-58, such that if the user enter a particular payment method while executing the transaction FBZ5 or F-58, the system should restrict the user from proceeding further, u can write a field exit for field RZAWE (payment method).

The program which controls the creation of field exit is RSMODORF

As far as screen exit is concerned, as per the client requirement if the user wants a separate screen to appear on execution of a particular task, which deviates from the standard sap provided flow of transactions, you write a screen exit. In such case you first prepare the screen using the screen painter and define it as to after which sap screen you want this screen to appear for processing the transaction further.

with regards,

sowjanyagosala

Former Member
0 Kudos

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.

The basic rule in SAP as far as ABAP workbench developments are concerned is "Do not modify the source code of the program"

Since needs and requirements keep on changing from client to client and for various business scenarios, there is a need to customise the programs as per client requirement.

For this purpose, SAP has provided numerous list of user-exits also known as enhancements, which is nothing but a program which will deal with the client additional requirement, without modifying the source code of the program. These exits are already provided by SAP. You can see the list of user-exits provided by using the transaction code SMOD. If you cannot find an user exit which match with client requirements, then you can tell SAP to create a new user exit.

On the other hand, field exit is nothing but where you write a small program, to control the properties of an existing field in a particular screen. Hence creation of a field exit is controlled by Program name, screen no. and the field name.

To give you an example, if you want to prevent a particular payment method to be executed via transaction FBZ5 or F-58, such that if the user enter a particular payment method while executing the transaction FBZ5 or F-58, the system should restrict the user from proceeding further, u can write a field exit for field RZAWE (payment method).

The program which controls the creation of field exit is RSMODORF

As far as screen exit is concerned, as per the client requirement if the user wants a separate screen to appear on execution of a particular task, which deviates from the standard sap provided flow of transactions, you write a screen exit. In such case you first prepare the screen using the screen painter and define it as to after which sap screen you want this screen to appear for processing the transaction further.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

check this link....

there is a program to find screen exit...

http://www.sap-basis-abap.com/abap/how-to-find-a-screen-exit-in-a-given-sap-standard-t-code.htm

Former Member
0 Kudos

hai Santhosh,

Just Go To SE84

Give The Program Name Or Package name In Which ME21N is present.

Then Click On Display.

Then Click On Enhancements.

Then U will Get USer Exits Aswell As BADI 's

IF Found helpful Reward.

Regards

Eshwar