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

any FM for tracking the execution path?

Former Member
0 Likes
647

Hi all,

i want to know whether there is any function module for tracking execution path.

My requirement is i am calling a std prgm using call transaction from pgm 'A' and this std pgm is calling other driver pgm now i need to validate pgm 'A' in driver pgm.

i can use import export statements but this has a lot of impact on the performance.

so, i am in search of a Function Module which whoud give me the execution path with pgm names i.e. in this case pgm A->std pgm ->driver program

Hi all,

i want to know whether there is any function module for tracking execution path.

My requirement is i am calling a std prgm using call transaction from pgm 'A' and this std pgm is calling other driver pgm now i need to validate pgm 'A' in driver pgm.

i can use import export statements but this has a lot of impact on the performance.

so, i am in search of a Function Module which whoud give me the execution path with pgm names i.e. in this case pgm A->std pgm ->driver program

4 REPLIES 4
Read only

Former Member
0 Likes
617

Hi experts.

can anybody help me out

Read only

Former Member
0 Likes
617

Hi,

Check for the system varaibale SY-CPROG in your driver program.

~Nanda

Read only

ThomasZloch
Active Contributor
0 Likes
617

Have a look at function module SYSTEM_CALLSTACK (not released).

Thomas

Read only

0 Likes
617

Hi Thomas,

thank you very much for ur timely reply.

this function module SYSTEM_CALLSTACK is very useful but ,

my problem still exists

stack is giving the events details till std pgm i need events in pgm 'A' also.

are there any outher similar FM's ? which could meet my requirement.