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: 

Hi Gurus, Let me know procedure to find the screen exit

Former Member
0 Kudos

Hi,

I want to include 2 new fields in the material master and 1 field in the customer master. This data fields are also avilable in the masterdata when we open in the change mode.

I want the step by step procedure to identify the correspoding screen exits.

Thanks in advance.

definatly rewarded

3 REPLIES 3

Former Member
0 Kudos

Hi Madhu,

For screen exit u can create it by creating a pf status and then within pf status u will find application toolbar and there u can select the exit button. for that also you need to code for that.

the sample code is as below for screen exit....

PROCESS AFTER INPUT.
MODULE exit_0100 AT EXIT-COMMAND.

***********************************************************
and code in exit module will be like

MODULE exit_0100 INPUT.

IF sy-ucomm = 'MNU_BACK' OR
sy-ucomm = 'MNU_CANCEL' OR
sy-ucomm = 'MNU_EXIT'.
LEAVE PROGRAM.

ENDIF.

ENDMODULE. " exit_0100 INPUT

Regards

Aneesh.

Former Member
0 Kudos

Hi

Screen Exit is nothing but enhancing the screen like creating some more fields, subscreen and so on.

1. Go to the screen>System>Status-->Program (Double

click this program. It will take you to the program.

2. Now, Goto-->Object Directory Entry.

3. Make a note the package name.

4. Now run the transactions SMOD, press F4 and enter the

above noted package, press enter.

5. It will display list of Exits.

6. Now go back to the initial screen SMOD.

7. Specify the exit name here and select the radio button

Components.

8. It will display four group boxes one for FM, second

for Fcodes, thrid for Screen areas and last for

includes.

9. Goto transaction CMOD, create a new project, and

click the button "Enhancement assignments" and

specify your enhancements that you got in SMOD.

10. Now bouble clikc the enhancement, it will take you to editor with some includes starting with Z, double clikc the include you want to edit and proceed.

and you just go through these links also

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

Check the following link.

https://www.sdn.sap.com/irj/sdn/advancedsearch?query=how%20to%20find%20screen%20exits&cat=sdn_all

<b>Reward points for useful Answers</b>

Regards

Anji

Former Member
0 Kudos

Hi,

1. in se11, goto table MODSAP

View table contents

2. in Type field, enter 'S' (for screen exit)

3. For that tcode, u should know the program name

or the CALLING SCREEN.

eg. SAPLLMOB

4. then type SAPLLMOB* and execute

<b>Reward points</b>

Regards