Hi Ramya.
Try,
Data: it_temp like line of itab.
loop at itab into wa.
read table it_temp transporting no fields with key delivery no = wa-deliveryno.
if sy-subrc <> 0.
append wa to it_temp.
endif.
endloop.
Hope it helpful,
Regards,
Venkat.
Hi Ramya.
Try,
Data: it_temp like line of itab.
loop at itab into wa.
read table it_temp transporting no fields with key delivery no = wa-deliveryno.
if sy-subrc <> 0.
append wa to it_temp.
endif.
endloop.
Hope it helpful,
Regards,
Venkat.