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 dynpro structure

Former Member
0 Likes
703

Hi all,

I am writing a set of custom transactions and I need to create also a sort of customizing transaction (for making field visible/not visible required ecc). What I would like to know is this: is it possible given a report name the NAME of the dynpro elements? For example, I create a report with a dynpro and in the dynpro there is a text T1 and an input field E1.

How is possible to have the list of name of the dynpro element in the dynpro report T1, E1? not their values...

Thank you

Gabriele

3 REPLIES 3
Read only

former_member209703
Active Contributor
0 Likes
591

You can use this standard FM IAC_GET_DYNPRO_INFO

Ciaoo

Read only

ThomasZloch
Active Contributor
0 Likes
591

Function module RPY_DYNPRO_READ gives you all available information for a dynpro in external format, RPY_DYNPRO_READ_NATIVE in internal format.

Thomas

Read only

Former Member
0 Likes
591

Thank you to both. Each function written works!