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

Screen field reading

Former Member
0 Likes
417

Hi All,

I am working on a TCode EC50E(IS-U). The second screen of this TCode have a Tabstrip with 5 tabs . One tab is calling two subscreens.Now i want to read a field value in the second subscreen. How can i read this. Please explain with an example.

Thanks in Advance,

Subhani.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
396

You can do it in two ways.

1. By using the Parameter Id , if you have the parameter id then you can read it from get parameter id.

2. if you does not have then use the following FM to read the values.

call function 'DYNP_VALUES_READ'

exporting

dyname = dname

dynumb = dynnr

tables

dynpfields = fields

exceptions

Thanks,

2 REPLIES 2
Read only

Former Member
0 Likes
397

You can do it in two ways.

1. By using the Parameter Id , if you have the parameter id then you can read it from get parameter id.

2. if you does not have then use the following FM to read the values.

call function 'DYNP_VALUES_READ'

exporting

dyname = dname

dynumb = dynnr

tables

dynpfields = fields

exceptions

Thanks,

Read only

Former Member
0 Likes
396

using field symbols i have read the value of the required fields in the screen.