‎2014 Mar 13 8:59 AM
hi
I have a standard tcode. i have to read the value give in while executing dynamically..is ter any way for it..?
‎2014 Mar 13 9:05 AM
Hi Jeny,
with help of exits you can read the values given on standard screen.
Regards,
Vineesh
‎2014 Mar 13 11:57 AM
hi jeny,
For any standard screens/Custom screens you can read the values of that screen by just knowing the program name and field name using field symbols.
Declare a field symbol.
FIELD-SYMBOLS: <fs_desc> TYPE ANY.
ASSIGN ('(Programname)field-name') TO <fs_descr>.
at runtime you will get the value of that field
Regards,
Sivaganesh