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

exection time

Former Member
0 Likes
529

can anyone tell me that a program is taking lots of time for execution ,so what should we do that the execution time will be less.

3 REPLIES 3
Read only

Former Member
0 Likes
508

Please check this

Read only

Former Member
0 Likes
508

Hi......

Reduce no of select statements... and use inner-joins.....

reduce select* and endselect. use select pernr into table itab from pernr.

Thanks

Saurabh

Read only

Former Member
0 Likes
508

try the following and will to improve performance.

1. dont use select-endselect, insted use select .....into table itab.

2. try to restrict the records using where clause.

3. Avoid nested selects's, and nested loop's.

Run ST05 & se30 and check which part is taking much time for further analysis.