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

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

anand_sagarsethi
Contributor
0 Likes
702

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
Read only

andreas_mann3
Active Contributor
0 Likes
606

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

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
Read only

andreas_mann3
Active Contributor
0 Likes
607

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

Read only

0 Likes
606

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