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: 

List infotypes dynamicaly

Former Member
0 Kudos
78

Hi all,

I need to disable PNP authority check, so I also need to perform authority check by hand.

The question is: Is it possible to get the IT list declared for the report (with INFOTYPES statement)?

Another question: is it possible to get the subtype list from a infotype in a report?

Regards,

Angel Cepa

1 ACCEPTED SOLUTION

suresh_datti
Active Contributor
0 Kudos
53

>> Is it possible to get the IT list declared for the report (with INFOTYPES statement)?

I doubt.. when you use the INFOTYPES statement the system internaly makes the itabs available during the runtime..

you can probably try to read the source code of the program & parse the INFOTYPES statement to get a list of the declared infotypes.. but that would be cumbersome...what exactly is your reqt?

You can get a list of Subtypes by doing a SELECT on the Table T591A.

~Suresh

1 REPLY 1

suresh_datti
Active Contributor
0 Kudos
54

>> Is it possible to get the IT list declared for the report (with INFOTYPES statement)?

I doubt.. when you use the INFOTYPES statement the system internaly makes the itabs available during the runtime..

you can probably try to read the source code of the program & parse the INFOTYPES statement to get a list of the declared infotypes.. but that would be cumbersome...what exactly is your reqt?

You can get a list of Subtypes by doing a SELECT on the Table T591A.

~Suresh