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

runtime

Former Member
0 Likes
427

Based on the output produced from run time analysis,usually what we analyse and what are the modification we have to do

3 REPLIES 3
Read only

Former Member
0 Likes
405

hi,

Runtime analysis gives u the time taken for the ABAP query and time taken for the Data Base.

Read only

Former Member
0 Likes
405

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>

Read only

Former Member
0 Likes
405

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.