Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

user exit in se16

Former Member
0 Kudos

Can Anyone tell me how screen exit works and is there any <b>user exit</b> in <b>se16</b>??????

3 REPLIES 3

Former Member
0 Kudos

Hello,

Go for BADI's.

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

Regs,

Venkat

Former Member
0 Kudos

screen exits are openings given by SAP in standard SAP transactions so that you can add your own screens in SAP transactions.After the screens have been added you can pass data to or from the screen using function exits provided by SAP.

I think SE16 has no exits.

Former Member
0 Kudos

Hi,

There is no screen exit for transaction SE16, to understand more about the screen exits go thro' the link, http://help.sap.com/saphelp_47x200/helpdata/en/c8/1975e643b111d1896f0000e8322d00/frameset.htm,

Rgds,