‎2008 Jul 23 8:35 AM
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
‎2008 Jul 23 8:37 AM
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
‎2008 Jul 23 8:38 AM
the perfact and optimize coding should not have any red line.
Amit.
‎2008 Jul 23 8:39 AM
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
‎2008 Jul 23 8:41 AM
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.
‎2008 Jul 23 8:51 AM
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.
‎2008 Jul 23 9:00 AM
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
‎2008 Jul 23 9:10 AM
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