‎2010 Nov 04 7:48 AM
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
‎2010 Nov 04 8:43 AM
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
‎2010 Nov 04 8:43 AM
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
‎2010 Nov 09 10:59 AM
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.