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

How to display all function modules,methods,includes in appliction componet

Former Member
0 Likes
268

Hi Experts,

I am working on reports,i am going to develope a report,the output of the report should be when i pass the application component name,then

the application component should display only all function modules,methods,includes,eventhough my application component

contains dictionary objects,message classes,enhancements.,etc.it has to display only function modules,methods,includes.

could anybody please help me.

Thanks,

Raju

Moderator message : Spec dumping not allowed, read forum rules before posting, thread locked.

Edited by: Vinod Kumar on Jan 18, 2012 10:22 AM

1 REPLY 1
Read only

surajarafath
Contributor
0 Likes
243

You can use the call stack method to find all the fm, include, other programs has been called.

Just follow the code..

DATA: i_callstack TYPE sys_callst,
        w_callstack TYPE sys_calls.
 
  CALL FUNCTION 'SYSTEM_CALLSTACK'
    IMPORTING
      et_callstack = i_callstack.