Application Development and Automation 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: 
Read only

Screen Exit??

Former Member
0 Likes
1,041

Hi all

What is Screen Exit??

Using Screen exit how can i add a new field in to a Master Customer table??

How can i save data into thaat field?

Can you please help me in this>>

thanks

subin

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
999

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.

For information on Exits, check these links

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sapgenie.com/abap/code/abap26.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

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

http://www.easymarketplace.de/userexit.php

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sappoint.com/abap/userexit.pdfUser-Exit

<b>Reward Points if it helps,</b>

Satish

6 REPLIES 6
Read only

Former Member
0 Likes
999

Screen exit means if want to add any fields in the standard transaction using subscreen, in subscreen we will add fields.

second step we have to choose suitable exit to populate this information to standard table

third step in standard table we have to add this field by using append or include structure

Read only

Former Member
0 Likes
999

<b>Screen Exits</b>

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.

<b>Using Screen exit how can i add a new field in to a Master Customer table??

How can i save data into thaat field?</b>

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

Read only

0 Likes
999

Hi,

Does this apply to screen exits within Mobile Data Entry?

I am trying to add a new field on one of the screens within transaction LM51 and I can't get it to work.

I have followed the usual steps and added my new field to the new subscreen.

I am assuming by updating the config and activating the enhancement, the system know which subscreen to call.

What seems to be happening is that the new subscreen is displayed, but the original screen (main screen) is not displayed at all?

Any ideas?

Thanks,

Ruby

Read only

0 Likes
999

Hi,

Does this apply to screen exits within Mobile Data Entry?

I am trying to add a new field on one of the screens within transaction LM51 and I can't get it to work.

I have followed the usual steps and added my new field to the new subscreen.

I am assuming by updating the config and activating the enhancement, the system know which subscreen to call.

What seems to be happening is that the new subscreen is displayed, but the original screen (main screen) is not displayed at all?

Any ideas?

Thanks,

Ruby

Read only

Former Member
0 Likes
1,000

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.

For information on Exits, check these links

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sapgenie.com/abap/code/abap26.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

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

http://www.easymarketplace.de/userexit.php

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sappoint.com/abap/userexit.pdfUser-Exit

<b>Reward Points if it helps,</b>

Satish

Read only

Former Member
0 Likes
999

hi

<b>Screen Exits</b> Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special sub screen areas on a standard R/3 screen and calling a customer sub screen from the standard screen’s flow logic.

Use the project management transaction (CMOD) to edit subscreens.

The technical names of screen exits consist of the name of the calling program, a four-digit screen number, and the name of the subscreen area, followed by the name of the X function group's program and the number of the subscreen.

You create subscreens and their corresponding PBO and PAI modules yourself using forward navigation.

Make sure that your subscreens are of screen type subscreen the first time you create them.

You are not allow to alter any of the interfaces in the X function group that the subscreen and the function module exits belong to, nor are you allowed to add any of your own function modules.

Field Exits – It is triggered at field level.

It is attached at data element

Specific to one screen only or to all the screen where field appears.

Field exit is not allowed in SAP version 4.7 and above .

Example with screen shots for consultants working in

SAP V 4.6 below version.