Application Development 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: 

How to retrive the data from ST03n Transaction in R/3 4.6c

0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Venkata,

Please confirm are you looking at this field.

Try to use the FM 'swnc_collector_get_aggregates'.

Hope it will be helpful.

Regards,

Kannan

5 REPLIES 5

Former Member
0 Kudos

Hi Venkata,

Please confirm are you looking at this field.

Try to use the FM 'swnc_collector_get_aggregates'.

Hope it will be helpful.

Regards,

Kannan

0 Kudos

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

0 Kudos

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

0 Kudos

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.

0 Kudos

Hi Venkata,

Glad to hear that you resolved the query.

Regards,

Kannan