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: 

Find out the list of Function modules being called in function module

anand_sagarsethi
Contributor
0 Kudos

Hi

I have got list of Function modules with me, I have to find out the list of all the function modules being called in those function modules.

I have around 200+ function modules so manual checking is not possible, so thought to create a program of it.

Please guide to which i can list out all the function modules called in the list i have.

1 ACCEPTED SOLUTION

andreas_mann3
Active Contributor
0 Kudos

use F1 and ABAP command:

.SCAN ABAP-SOURCE itab1 ...TOKENS INTO itab2 
                         STATEMENTS INTO itab3
                          KEYWORDS   FROM itab4   (-> in itab4  you can add command "call function")

..

hope that helps

Andreas

2 REPLIES 2

andreas_mann3
Active Contributor
0 Kudos

use F1 and ABAP command:

.SCAN ABAP-SOURCE itab1 ...TOKENS INTO itab2 
                         STATEMENTS INTO itab3
                          KEYWORDS   FROM itab4   (-> in itab4  you can add command "call function")

..

hope that helps

Andreas

0 Kudos

Will you explain a bit.. i didnt get what to do....