Hi Jai,
You can try the logic something like below:
Loop at ITAB.
if sy-tabix <> 1.
itab-total = lv_balance.
modify itab transporting total.
endif.
lv_balance = itab-total - itab-qtytobeprocessed
Endloop.
Thanks,
Naveen
Hi Jai,
You can try the logic something like below:
Loop at ITAB.
if sy-tabix <> 1.
itab-total = lv_balance.
modify itab transporting total.
endif.
lv_balance = itab-total - itab-qtytobeprocessed
Endloop.
Thanks,
Naveen