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

interconnection of programs, objects and functions

Former Member
0 Likes
715

If you do not have written documentation of the ABAP program you are trying to debug and you need to find out like:

1. what other programs that calls a certain function or object?

2. what are the subprograms or include programs connected to a whole project?

Is there any way the SAP system can help you find the interconnection of programs, objects, functions used in the entire project?

<b>thanks for the help.</b> newbie here.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
694

If all the objects are in thge same package, you can use SE80 to display the components of the package.

You can also use SE80 to display all of the includes, screens, transactions, etc. of a single program or function group.

Rob

Message was edited by:

Rob Burbank

5 REPLIES 5
Read only

Former Member
0 Likes
695

If all the objects are in thge same package, you can use SE80 to display the components of the package.

You can also use SE80 to display all of the includes, screens, transactions, etc. of a single program or function group.

Rob

Message was edited by:

Rob Burbank

Read only

0 Likes
694

how about like which subprogram calls a certain function or form? will you be able to trace which one calls that?

Read only

0 Likes
694

You can do a "where used list" to see where functions/forms are used.

This will also show external uses.

Rob

Message was edited by:

Rob Burbank

Read only

former_member194669
Active Contributor
0 Likes
694

Hi,

You can use Where-Used functionality for object used in others.

Additional Info:-->

You need to search for particular key word in all programs used then use program RPR_ABAP_SOURCE_SCAN.

a®

Read only

Former Member
0 Likes
694

thanks for all of the replies.