2014 Jun 11 7:50 PM
Hi All,
I am looking for to get the data of Transaction ST03n data in R/3 4.6C.Please suggest me the required tables or Std Function Modules to get the data.
i want to fetch dialog work process response time.
Regards,
VK
2014 Jun 11 8:50 PM
2014 Jun 11 8:50 PM
2014 Jun 11 9:26 PM
Hi Kannan,
I am looking for the above data which is high lighted in Yellow colored. ""SWNC_COLLECTOR*"" F.M not exist in R/3 system.Instead of that,i have used F.M "SAPWL_WORKLOAD_GET_STATISTIC".This F.M return the data in no.of tables,am not sure which Output table i need to refer to get this data.
Regards,VK
2014 Jun 11 9:47 PM
Hi Venkata,
You can go ahead with the mentioned FM SAPWL_WORKLOAD_GET_STATISTIC.
But am afraid it is obsolete it higher Ecc versions.But for time being you can go ahead in 4.6
It would return time statistics in the table TIME_STATISTIC.
YOu can later find the average response time using the formula:
avg_resp_time = TIME_STATISTIC-RESPTI / TIME_STATISTIC-COUNT.
Hope it will address the issue.
Regards,
Kannan
2014 Jun 11 9:59 PM
We have to look at the table task type parameter.
You can see the data of each task type for each step.then sum of the values under RESPTI field and divide it by the sum of steps(Count).
Sum of RESPTI / Sum of Count for each task type.It matches the data with ST03n transaction.
Look for each field and have to do the same calculation for CPU time,Response time ...
Thanks Kannan for your help...Here is the Answer.
2014 Jun 11 10:07 PM
Hi Venkata,
Glad to hear that you resolved the query.
Regards,
Kannan