Synchronization
Updates received from your supply chain partners are synchronized back to SAP. To handle the data, you can implement the BAdI /AEB/MA_EXP_CONS_01.
The data structure provided in the BAdI is representing a shipment with packages and events.
Example of handling events:
_im_consignment = im_consignment.
LOOP AT _im_consignment-events INTO _event.
"Ignore planned events
IF _event-actualdate IS INITIAL.
CONTINUE.
ENDIF.
* Your logic to handle the event data.
ENDLOOP.
The data is synchronized back to SAP in these tables:
SAP table name | Description |
---|---|
/AEB/MA_E_CONS | Consignment (header data) |
/AEB/MA_E_HU | Handling unit (packages on highest level) |
/AEB/MA_E_TE | Tracking events. Parent_ID is linked either to the ID of a consignment or to the ID of an handling unit. |
Updated 2 days ago