‎2007 Jul 17 8:27 AM
Based on the output produced from run time analysis,usually what we analyse and what are the modification we have to do
‎2007 Jul 17 8:29 AM
hi,
Runtime analysis gives u the time taken for the ABAP query and time taken for the Data Base.
‎2007 Jul 17 8:32 AM
Hi sandeep
it is done to check how many database access have been made and hyow much time is taken to access and fetch data from db.
based on this you can make modifications in your code like, avoiding use of loop inside loop, select-endselect, and using" into corresponding fields of" in your select query.
regards
Ravish
<b>Reward if useful</b>
‎2007 Jul 17 8:32 AM
We generally analysis the various performance related issues of the object(SE30).
We find the execution time for abap related, database related and system related. If any of the are taking unexpected time then we try to improve the performance of the object on that regards. There are also tips n tricks (In SE30) to improve the performance, we can follow them.