2005 Dec 19 12:20 PM
Hello,
in order to get som statistic Informations about the number of calls of some reports, i use the FM SAPWL_WORKLOAD_GET_STATISTIC.
CALL FUNCTION 'SAPWL_WORKLOAD_GET_STATISTIC'
EXPORTING
periodtype = 'M'
hostid = 'TOTAL' " for all
startdate = g_datum
TABLES
memory_statistic = I_MEMORY
EXCEPTIONS
unknown_periodtype = 1
no_data_found = 2
no_server_given = 3
OTHERS = 4.
The results i get in I_MEMORY, are not complete.
Some of my reports are not in the table and i know, that these reports will be used every day.
Can anybody tell me, why the results in the table are incomplete or if i have to change a parameter?
Thanks in advance,
André
Hello,
in order to get som statistic Informations about the number of calls of some reports, i use the FM SAPWL_WORKLOAD_GET_STATISTIC.
CALL FUNCTION 'SAPWL_WORKLOAD_GET_STATISTIC'
EXPORTING
periodtype = 'M'
hostid = 'TOTAL' " for all
startdate = g_datum
TABLES
memory_statistic = I_MEMORY
EXCEPTIONS
unknown_periodtype = 1
no_data_found = 2
no_server_given = 3
OTHERS = 4.
The results i get in I_MEMORY, are not complete.
Some of my reports are not in the table and i know, that these reports will be used every day.
Can anybody tell me, why the results in the table are incomplete or if i have to change a parameter?
Thanks in advance,
André
2005 Dec 20 3:29 AM
Check with your Basis team. There are system settings/configuration/background jobs that run to collect statistics, it may be that memory-specific settings are not being accumulated in that process.