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

field exit

Former Member
0 Likes
593

Hi,

i need to display a field on vf03 after entered into vf03 billing doc, we can go to the Accounting and here i need to show the sgtxt of the lines to the user.

Is there anyway to the that? Default, it is not seeming.

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
530

Hi,

this sound like an extension of your screen, which must be done as a screen exit and not field exit as you write. There are some examples in SDN for it:

[link 1|http://wiki.sdn.sap.com/wiki/display/ABAP/USERANDCUSTOMEREXITS.]

[link 2|http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975e643b111d1896f0000e8322d00/frameset.htm]

Read only

0 Likes
530

thanks,

pls tell me where can i write code or extend the screen?

br.

Read only

0 Likes
530

hi,

there´s no recipe or magic formula for that. Every case is specific and I myself cannot tell you exactly what and where you have to do. First step is to learn about screen exits.

These are only some basic steps:

1. Go to the screen>System>Status-->Program (Double click this program. It will take you to the program)

2. Now, Go to-->Object Directory Entry.

3. Make a note about package name.

4. Now run the transaction SMOD, press F4 and enter the above noted package, press enter.

5. It will display a list of Exits.

6. Now go back to the initial screen SMOD.

7. Specify the exit name here that might be the correct one and select the radio button Components.

8. It will display four group boxes one for FM, second for Fcodes, third for Screen areas and last for includes.

9. Go to transaction CMOD, create a new project and click the button "Enhancement assignments" and specify your enhancements that you got in SMOD.

10. Now double click the enhancement, it will take you to the ABAP editor with some includes starting with Z, double click the screen you want to modify and proceed.