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: 

How to trace a transaction

babuilyas
Participant
0 Kudos
6,941

someone tell me how can i trace a transaction..

like i'm trying to see fd02 and fk02 processes that are performed behind these transactions.

I want to check which tables + their fields are altered during these transactions...

4 REPLIES 4

Former Member
0 Kudos
4,008

Go to SE93 give the transaction name and get the Standard program name.

Program RSINCL00 gives tables used in a program.

Execute RSINCL00 program and Enter program name, execute, select database operations check boxes and execute, gives list of tables.

Regards,

Santosh

Former Member
0 Kudos
4,008

You can also switch on the ST05 SQl trace.

execute the transaction required.

switch off st05 trace.

analyse the recorded trace.

it will give you all the tables with the required select query reffered in the transaction.

Former Member
0 Kudos
4,008

Hi,

For this purpose you can use sql trace (Tcode ST05).Activate the trace first.Then open the required tcode,after completing the process,go to tcode ST05 and deactivate the trace and display it.You can see all tables and structures used by that transaction.

Hope this will Help

Regards

Shibin

babuilyas
Participant
0 Kudos
4,008

I've done it... thank you all..

I'm tracing but.. it leads me to very complex tree of processes... I've to do something else for my objective...!!!