Hi Leva,
I heard that deleting itab entry in loop complex . so i created another itab and assigned to itab1. can u check my code will it works or i can only use only one itab ..with moving to other
l_transactions1 = l_transactions
Loop at l_transactions1 to <fs>
DATA: var_tabix TYPE sy-tabix.
reading table zitab with key mandt = sy-mandt
transtypecode = l_transactions1 transtypecode
if sy-subrc ne 0
delete table l_transactions index sy-tabix ( will this work here )
else.
loop at <fs-tran--retailllineitem >assigning <fs-retaillineitem>,
<fs-retaillineitem> = 1100
endif.
endloop.
endloop.
Thanks