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: 

how to make fast loop without Read statements.

Former Member
0 Kudos

loop at A.             " A internal table has a  7000 records & Internal table B has almost 90000 Records.

     loop at B.

    endloop B.

endloop.A

This loops is taking too much time in execution  due to bulk data, so how can i make it fast without using Read statements.

Here A loop has almost  7000 Records .

  &   B loop has almost 90000 Records

Moderator message: previously discussed, please search for information and

Message was edited by: Thomas Zloch

1 REPLY 1

Former Member
0 Kudos

Hi

Check sdn you will find many post related to your thread and you cant use loop within loop untill and unless you dont have any other option.

Try using loop by writing where conditions, you can improve performence.