Skip to Content
0
Former Member
May 15, 2008 at 12:17 PM

Avoiding Nested Loops ?

1044 Views

Hi,

Pls suggest a way to avoid the nested loops of this kind.

itab1 and itab2 are internal tables with header line.

 loop at itab1.
  loop at itab2 where fld1 = itab1-fld1.
<a few statements here>
  endloop.
 endloop.

Useful help would be rewarded. 😊