Can you please help; I am trying to update the backend using BADI BBP_CREATE_BE_PO_NEW
Method FILL_PO_INTERFACE1
Here is the code:
loop at is_sc_document-item ASSIGNING <lfs_item>.
loop at cs_po1_document-it_poitem ASSIGNING <lfs_poitem> where item_GUID = <lfs_item>-guid.
<lfs_poitem>-zzbus_entity = <lfs_item>-zzbus_entity.
<lfs_poitem>-zzbuilding_no = <lfs_item>-zzbuilding_no.
MODIFY cs_po1_document-it_poitem FROM <lfs_poitem>.
endloop.
endloop.
I have checked this link
https://www.sdn.sap.com/irj/scn/wiki?path=/display/srm/bbp_create_be_po_new-CreatePOin+backend but still I am not winning. Is there other way to send these fields?
Thank you in advance
Nonoza