‎2007 May 08 3:34 PM
‎2007 May 08 7:38 PM
Hi Vijay
You can analyse the run-time of programs using the transaction SE30
‎2007 May 08 3:37 PM
Hi,
You can look at the transactioncode SE30, ST06, ST07
Regards
Sudheer
‎2007 May 08 7:38 PM
Hi Vijay
You can analyse the run-time of programs using the transaction SE30
‎2007 May 08 10:26 PM
See the Example program to get some idea, else use ST05,SE30 Transaction.
REPORT ZPPR0019 no standard page heading
LINE-SIZE 80.
Data : f1 type i,
f2 type i,
f3 type i,
f4 type i,
f5 type i,
f6 type i.
Internal table for Mara
data i_mara like mara occurs 0 with header line.
data : i_mseg like mseg occurs 0 with header line.
start-of-selection.
clear : f1,
f2,
f3,
f4,
f5,
f6.
get run time field f1.
select * from mara into table i_mara up to 100 rows.
get run time field f2.
f3 = f2 - f1 .
write:/ 'Time taken by MARA Table', f3.
get run time field f4.
select * from mseg into table i_mseg up to 100 rows.
get run time field f5.
f6 = f5 - f4.
Milli seconds
write:/ 'Time taken by MSEG Table', f6.
Reward Points if it is helpful
Thanks
Seshu
‎2007 May 09 4:31 AM