2005 Jul 21 6:12 AM
Recently, I stumbled on an SAP table that you can run via SE16 and it will give you a list of all the screens and fieldnames + field text for a particular transaction. I didn't note it down, now I need it and I can seem to be able to find it. Does any remember what the table name is?
Thanks,
Sam
2005 Jul 21 6:27 AM
Recently, I stumbled on an SAP table that you can run via SE16 and it will give you a list of all the screens and fieldnames + field text for a particular transaction. I didn't note it down, now I need it and I can seem to be able to find it. Does any remember what the table name is?
Thanks,
Sam
2005 Jul 21 6:27 AM
2005 Jul 21 6:38 AM
2005 Jul 21 6:38 PM
Hi PJ, thanks for the response. However none of these tables are the one I am looking for. The table that I am looking for takes tcode as a parameter and then return a table list of PROGNAME, DYNPRO, FNAM and Screen field titles. It's looks almost like a BDC list.
Thanks again,
Sam
2005 Jul 21 7:14 PM
I was finally able to resolve this on my own. It's amazing what a good night sleep can do. (this time I documented everything :-). Here's the answer:
<b>Using a Function Module:</b>
==========================
<b>RFC_GET_SCREEN_DEFINITION</b>
INPUT:
(1) ISPROGRAM = 'N' (default) or 'Y'; i.e find by program name or transaction code.
(2) NAME = <tcode> or <program name>
OUTPUT:
Screen_Details (very useful for documenting and defining BDC projects)
<b>Using Tables:</b>
===============
<b>TSTC, D021T</b>:
First find the program name from TSTC by entering the tcode.
Then pass the program name to D021T and get all the field names and screen text.