Search code examples
abapbapi

FM BAPI_PO_CHANGE how to add item?


I try to add items to existing PO.


And I use BAPI_PO_CHANGE. Maybe somebody have WORKING example how to ADD item to PO? I ALREADY CAN UPDATE EXISTING items in PO. I need to add some NEW. And yes, we talking about AFS system. :((( Thanks in advance, Alexander.


Solution

  • Pass the relevent filed ON in the Xstrucuture for all the required fields.

    E.g.

    PO_ITEM-PO_ITEM = new_item
    
    APPEND..
    
    
    
    PO_ITEMx-PO_ITEM  = new_item
    
    PO_ITEMx-PO_ITEMX = 'X'.
    
    APPEND ...