Application Development 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: 

exection time

Former Member
0 Kudos

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

Former Member
0 Kudos

Please check this

Former Member
0 Kudos

Hi......

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

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

Thanks

Saurabh

Former Member
0 Kudos

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.