Open source of SAP knowledge. Not official SAP website.

Archive
Articles
GUI transactions
Twitter
GitHub
Podcast

27 September 2018

ABAP runtime trace. How to create it? How to understand results?

by Vasiliy Kharitonov

You could find some problems that are impossible to understand just using the debugger or standard reports. For some of these problems ABAP runtime trace comes quite useful. These problems could be:

Instruments to perform ABAP trace

There is a lot of standard SAP GUI instruments for runtime tracing (and a lot more for other kinds of tracing). These are the 2 I usually use:

  1. Transaction SAT – ABAP Trace transaction. More modern transaction, pretty easy to use, a lot of functions including creation of trace, seeing results in hits of each program including Gross time and Net time.
  2. Transaction ST12 – Single transaction analys. The same, but much more powerfull transaction in some cases. It is older and not supported anymore by SAP. But for some actions, like reviewing time taken for programs to execute in the hierarchy of ABAP stack, it is a must. Another important point is that it has an import function and you can transfer the data “from” SAT transaction “to” ST12 transaction, which makes it even more powerfull.

I use the SAT transaction and suggest you to do the same. If you undestand, that you need something more, you always can export to the ST12 transaction. Export is performed in 2 steps: first export the data from SAT to the a, then import the date to ST12 from the file.

How to create ABAP Trace in SAT transaction

If you are not sure what to use, it is better to start from SAT transaction.

  1. Go to SAT transaction. SAT transaction
  2. Decide what you want to trace.

To be continued…

Verified systems