I have two internal tables it_0008 and it_0035 and I have many records in first itab as well as second table
how to read the multiple records in second itab .
present code is
LOOP AT it_0008 INTO wa_0008.
endloop.
now I have to loop second itab (it_0035) based on condition pernr of first itab must match with pernr with second itab and also there are multiple records present in it_0035 with same perner number
condition should match wa_008-pernt = it_0035 pernr
if we use loop inside loop there will be performance issue
how to solve this.