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

Record selection parameters and processing time for a specific transaction

Former Member
0 Likes
528

Hello,

Is there a way to record every execution of a transaction and record the selection parameters that were used and the processing time of the transaction ?

I would like to avoid writing some code for that...

thank you

1 ACCEPTED SOLUTION
Read only

ThomasZloch
Active Contributor
0 Likes
427

Execution and processing time are recorded in statistical records, see transactions STAD and ST03N.

There is no recording of selection parameters that I am aware of.

Thomas

2 REPLIES 2
Read only

ThomasZloch
Active Contributor
0 Likes
428

Execution and processing time are recorded in statistical records, see transactions STAD and ST03N.

There is no recording of selection parameters that I am aware of.

Thomas

Read only

roberto_vacca2
Active Contributor
0 Likes
427

Hi..

I think you should create your own report as we do..

So you should use these function modules:

SWNC_COLLECTOR_GET_DIRECTORY -> To get Work Load

After you need to filter what you want (Server to monitorize and Type of monitorizing by day, month, year)

SWNC_COLLECTOR_GET_AGGREGATES -> to get all info (you'll probably have to collect steps because they're repeated)

Pay attention If entry_id+40(32) is INITIAL then it's a job in background . Others are report or transaction

Method CL_SWNC_COLLECTOR_INFO=>TRANSLATE_TASKTYPE used to translate task type in description

Table V_USR_NAME used to get user info

You can add all info you need in a final ALV report..

Hope to help, bye.