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

T.Code se30

Former Member
0 Likes
1,150

Hi Experts,

Plz tell the sinificance of graph (Runtime Evaluation Overview) of T.Code se30.

After pressing the analyze button , shows graph having components

1.ABAP

2.Database

3.System

Showing red & green line.

Tell The significance of these lines(indicators).

Aastha

7 REPLIES 7
Read only

Former Member
0 Likes
1,066

Hi,

Please refer the link below:

http://www.sapdb.info/wp-content/uploads/2008/06/performance-tuning-best-practices.pdf

OR

http://www.saptechies.com/se30-runtime-analysis-tool/

Thanks,

Sriram Ponna.

Edited by: Sriram Ponna on Jul 23, 2008 1:09 PM

Read only

Former Member
0 Likes
1,066

the perfact and optimize coding should not have any red line.

Amit.

Read only

Former Member
0 Likes
1,066

Hi,

The Graph shows the time utilized by your code w.r.t ABAP,Database & System.

Kindly go through this document for more detail

http://help.sap.com/saphelp_nw70/helpdata/en/00/e0a73e5b7a424de10000000a114084/content.htm

Thanks

Sudharshan

Read only

Former Member
0 Likes
1,066

Hi Gupta,

The Transaction SE30 is for the Runtime Analysis. This will let us know the performance of an object we have developed.

As you mentioned it contains three sections

ABAP - It gives you the performance of the ABAP code we have written

Database - It will give you the performance of fetching the data from the database

System - It gives you the System performance on which you are working.

Regards,

Swapna.

Read only

vinod_vemuru2
Active Contributor
0 Likes
1,066

Hi,

These 3 are the indicators of performance.

The best optimized code should have as least time as possible for data base, Max for ABAP and moderate for system time.

Ideal indication:

70-80%-ABAP time(Business logics like LOOPS, Logical data processings etc)

10-20%- Data base time(Includes SELECTS, INSERTS/UPDATES etc)

5-10% System time(For system operations)

So do ur coding so that Business logic should take max time, Data base and system should take less time(Otherwise it may affect other users also).

Thanks,

Vinod.

Read only

Former Member
0 Likes
1,066

Actually, the optimized program should have minimal TOTAL time!!!!!

The above mentioned percentage distribution can be guideline,

but it will always be true, that the percentages sum up to 100%.

> the perfact and optimize coding should not have any red line.

No, as system should really be below 10%, and the contribution larger than 50% gets the red color, and ABAP should larger than DB. It will always be ABAP which should be red!!!

The significance of the lines is actually quite low, and the picture will not be displayed in the new version of the SE30 anymore.

Siegfried

Read only

Former Member
0 Likes
1,066

Hi,

The perfact and optimize coding should not have any red line.

These 3 are the indicators of performance.

The best optimized code should have as least time as possible for data base, Max for ABAP and moderate for system time.

ABAP - It gives you the performance of the ABAP code we have written.

70-80%-ABAP time(Business logics like LOOPS, Logical data processings etc)

Database - It will give you the performance of fetching the data from the database.

10-20%- Data base time(Includes SELECTS, INSERTS/UPDATES etc)

System - It gives you the System performance on which you are working.

5-10% System time(For system operations)

So do ur coding so that ABAP logic should take max time, Data base and system should take less time(Otherwise it may affect other users also).

Thanks,

Ankur