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

Table for determining the used programs / FM inside a Report / any program

former_member210296
Participant
0 Likes
1,220

Hi Experts !

I am trying to develop a utility program which will determine the used FMs/any called or used program / structure in a report or program.

This will list out the objects used in the current program with there transport requests.

This would be the reverse of Weher Used List of  SAP.

Could anyone help me with the tables or FM which can be used to check/ determine the used object names in the current program.

Thanks !

Hi Experts !

I am trying to develop a utility program which will determine the used FMs/any called or used program / structure in a report or program.

This will list out the objects used in the current program with there transport requests.

This would be the reverse of Weher Used List of  SAP.

Could anyone help me with the tables or FM which can be used to check/ determine the used object names in the current program.

Thanks !

5 REPLIES 5
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,070

Start with SE80 and package SEUB.

Regards,

Raymond

Read only

Former Member
0 Likes
1,070

Tables used :

CROSSREF   -   for where used list.

E071 & E071K   - for transport requests of objects .

FM used

'SYSTEM_CALLSTACK' to get the process flow.

Before  executing the transaction put

SET RUNTIME ANALYZER ON.

SUBMIT REPORT 'XYZ'.

SET RUNTIME ANALYZER OFF.

Check the program behind transaction SAT and the program SAPRSAT1  for evaluatiion of SAT.

Read only

ThangaPrakash
Active Contributor
0 Likes
1,070

Hello Anusha,

You can do it with the below function modules.

RS_EU_CROSSREF                

RSZ_X_WHERE_USED_LIST_GET

RS_WHERE_USED_LIST_NEW_CHECK

CDESK_DISPLAY_WHEREUSED_LIST

AKB_WHERE_USED_LIST

Regards,

Thanga

Read only

ThangaPrakash
Active Contributor
0 Likes
1,070

refer to the documentation of the above function modules on how to use them, if documentation is not available search in SCN or post it here, we will help you.

Regards,

Thanga

Read only

0 Likes
1,070

If you are asking about something opposite to Where Used List we have Environment Analysis.

Please analysis it.