Application Development 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: 

Is there a way to find out which transactions are called by first transacti

Former Member
0 Kudos

I'm trying to find out if there is a way to find out for ex:

You go to PFCG and put in transaction CO15

What other transactions is CO15 going to need or call.

Thanks

Joe

3 REPLIES 3

Former Member
0 Kudos

Joseph,

One way to do this is via SE16/17 and looking at the usobt or usobt_c table for object s_tcode for a given transaction. However it is not 100% accurate. In many instances you will need to add the transaction and test or run an ST01 trace.

Cheers,

Ben

Former Member
0 Kudos

there is also some info in table TCDCOUPLES (maint via SE97) - this contains info on whether a check is performed on a tx code when it is included in a call-transaction command (and would usually bypass the S_TCODE check).

Former Member
0 Kudos

In your test or QA environment, use ST01 to start a trace for authorization checks. Execute CO15 as you normally would using options on the screen to enter the production order confirmation. Once complete, stop the trace and review the log. the log will include all authority checks that occurred.

Another response was to use the USOBT table. You can call these tables directly using SU24. the check maintain entries are validate when an authority check is executed.