Application Development 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: 

reading dynpro structure

Former Member
0 Kudos
165

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

former_member209703
Active Contributor
0 Kudos
53

You can use this standard FM IAC_GET_DYNPRO_INFO

Ciaoo

ThomasZloch
Active Contributor
0 Kudos
53

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

Thomas

Former Member
0 Kudos
53

Thank you to both. Each function written works!