Hi abapers,
loop at itab.
read table ifinal with key kunnr = itab-kunnr.
if sy-subrc = 0.
move: ifinal-dmbtr to itab-dmbtr.
modify itab index sy-tabix.
endif.
endloop.
Now the problem is that when i am using modify index sy-tabix it creating an additional entry
and when i am using only modify itab its working fine so wat could be the reason that modify index sy-tabix is
not working propertly.
Thanks