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: 

runtime

Former Member
0 Kudos

hi guys..

i wanna calculate runtime ...i mean how much time the report takes to finish the query...

plz advise...

regards

4 REPLIES 4

Former Member
0 Kudos

go to st05 and run the trace,

Regards

Kannaiah

Former Member
0 Kudos

i have to show it as output... need to show it programatically..

thanks

former_member387317
Active Contributor
0 Kudos

Hi Sudheer,

Use ST05 and SM30 for Runtime analysis..

<b><REMOVED BY MODERATOR></b>

Thanks & Regards

ilesh 24x7

Message was edited by:

Alvaro Tejada Galindo

former_member387317
Active Contributor
0 Kudos

Try this way..

DATA: T1 TYPE I,

T2 TYPE I,

diff TYPE I.

GET RUN TIME FIELD T1.

Ur code here...

GET RUN TIME FIELD T2.

diff = T2 - T1.

WRITE: 'runtime' , diff.

<b><REMOVED BY MODERATOR></b>

Thanks & Regards

ilesh 24x7

Message was edited by:

Alvaro Tejada Galindo