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

Capture runtime for report through SE30

Former Member
0 Likes
1,057

Hi,

I want capture run time ( execution time ) for one report. i tried in execute in foreground using SE30 its giving timeout error.

i tried to run in background using SE30, it did not give proper results..

Please help how to capture run time if i run this report in background.

Thanks

Sireesha

Hi,

I want capture run time ( execution time ) for one report. i tried in execute in foreground using SE30 its giving timeout error.

i tried to run in background using SE30, it did not give proper results..

Please help how to capture run time if i run this report in background.

Thanks

Sireesha

6 REPLIES 6
Read only

Former Member
0 Likes
1,014

If you just need the execution type of the entire report in background, SM37(Duration) will give you that. What exactly are you trying to find?

Read only

0 Likes
1,014

Hi,

Thanks for your reply,, i have done changes to improve performance in the program.

Code moved to QA and I want to take after changes run time analysis screen shots through SE30.

Please help.

Read only

0 Likes
1,014

Rather than SE30, try ST05.

Rob

Read only

Former Member
0 Likes
1,014

If the code is still in development:

ABAP statements:

get run time field gv_start ( type i).

....

get run time field gv_end (type i).

run_time = gv_end - gv_start.... in microseconds (1/1000000 of a second).

run_time_seconds = run_time / 1000000.

run_time_minutes = run_time_seconds / 60.

Read only

0 Likes
1,014

Can i Expect more Coding from u?...........

Read only

Former Member
0 Likes
1,014

Hi,

Pleasecheck out the below

Check the latest version of SE30 - New ABAP runtime tool - SAT (ECC 6 onwards)

http://scn.sap.com/docs/DOC-10248

For a detailed info of SE30 read the below

http://wiki.sdn.sap.com/wiki/display/ERPHCM/Trace+for+ABAP+Analysis

Regards,

Karthik