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

Reading values from standard screen dynamically

Former Member
0 Likes
2,460

hi

I have a standard tcode. i have to read the value give in while executing dynamically..is ter any way for it..?

2 REPLIES 2
Read only

Former Member
0 Likes
1,512

Hi Jeny,

with help of exits you can read the values given on standard screen.

Regards,

Vineesh

Read only

sivaganesh_krishnan
Contributor
0 Likes
1,512

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