‎2011 Mar 17 11:57 AM
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
‎2011 Mar 17 12:23 PM
Hi Sudhakar,
You can see the call stack in the new debugger, in desktop2(standard setting).
Regards,
Ravi
‎2011 Mar 17 7:45 PM
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.
‎2011 Mar 17 7:59 PM
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
‎2011 Mar 17 8:21 PM
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