Hi,
In the below code I appended 2 lines to with_item. I want to fetch all the columns of with_item for bsik.
Attached is for ur reference.
LOOP AT it_with_item.
READ TABLE it_bsik WITH KEY bukrs = it_with_item-bukrs belnr = it_with_item-belnr.
IF sy-subrc = 0.
it_with_item-belnr = it_bsik-belnr.
MODIFY it_with_item TRANSPORTING:belnr.
ENDIF.
DELETE it_bsik WHERE bukrs = it_with_item-bukrs AND belnr = it_with_item-belnr.
ENDLOOP.
APPEND LINES OF it_bsik TO it_with_item.
Regards
Kalpana