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

ABAP call stack

Former Member
0 Likes
7,928

hi guys,

if we are executing any standard/custom application, is there any place where i can see the complete call stack that system is executing . lets say i execute a ABAP webdynpro application, i want to see what are the classes, methods that system has executed from the start to the end.

thanks

4 REPLIES 4
Read only

Former Member
0 Likes
1,971

Hi Sudhakar,

You can see the call stack in the new debugger, in desktop2(standard setting).

Regards,

Ravi

Read only

0 Likes
1,971

Sudhakar,

Use the following function module to get the call stack programattically.

Bruce

*

  • Example of using the system callstack function

*

data: i_callstack type sys_callst,

w_callstack type SYS_CALLS.

*

call function 'SYSTEM_CALLSTACK'

importing

et_callstack = i_callstack.

Read only

Former Member
0 Likes
1,971

Hi Sudhakar,

You can see a TRACE with Tx ST05. First start the TRACE , then ejecute your proces then stop the TRACE.

Hopefully this proves helpful. Thanks

Read only

0 Likes
1,971

Hello Togehter,

a non aggregated trace with transaction SAT (SE30 in older releases) should give an impressive picture what stuff gets executed to dispay a single Web Dynpro view.

Depending on your use case it may be possible to enable SAT/SE30 tracing within the transaction itself or via the SICF transaction. That basically depends whether the Component is executed with your account or via an anymous user specified in the SICF.

Maybe you can more information on this topic in the forum WebDynpro for ABAP.

Hope this helps

Klaus