Application Development and Automation 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: 
Read only

processing speed of program

Former Member
0 Likes
717

how do i analyse my program strategy or processing speed.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
655

Hi Vijay

You can analyse the run-time of programs using the transaction SE30

4 REPLIES 4
Read only

Former Member
0 Likes
655

Hi,

You can look at the transactioncode SE30, ST06, ST07

Regards

Sudheer

Read only

Former Member
0 Likes
656

Hi Vijay

You can analyse the run-time of programs using the transaction SE30

Read only

Former Member
0 Likes
655

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

Read only

0 Likes
655

thank u seshureddy for ur helpful answer