‎2010 May 20 1:19 PM
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.
‎2010 May 20 1:24 PM
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]
‎2010 May 20 1:45 PM
thanks,
pls tell me where can i write code or extend the screen?
br.
‎2010 May 20 2:09 PM
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.