‎2007 May 22 4:08 PM
Hi,
We are using EDI scenario to get the delivery confirmation from Warehouse system. Once delivery created with certain quantity, based on the inbound confirmation we need to do Pick, Pack and PGI. In this case is there any standard bapi to fulfil this criteria ? Please let me know.
Thanks
Jaya
‎2007 May 22 4:39 PM
Hi Jaya,
You can use FM WS_DELIVERY_UPDATE same as BAPI.
This FM is Remote-Enabled Module.
Regards,
Ferry Lianto
‎2007 May 22 4:10 PM
‎2007 May 22 4:13 PM
Hi Naren,
Thanks for your solution, but as per the name its looks like it will useful for outbound delivery, but we need for inbound.
Thanks
Jaya
‎2007 May 22 4:12 PM
Hi,
Please try this FM WS_DELIVERY_UPDATE for pick, pack and PGI.
Regards,
Ferry Lianto
‎2007 May 22 4:17 PM
Hi Ferry,
Thanks for your information, is it BAPI i think its just Remote function module. Is it not ?
‎2007 May 22 4:18 PM
‎2007 May 22 4:12 PM
‎2007 May 22 4:15 PM
Hi Seshu,
Thanks for your information, LE_MOB_DELIVERY_UPDATE, is it BAPI ?
Thanks
Jaya
‎2007 May 22 4:16 PM
it is not bapi : LE_MOB_DELIVERY_UPDATE
as per 4.6C system we did not have inbound delivery bapi,so we use this function module to update inbound as well as outbound delivery..
‎2007 May 22 4:19 PM
Hi Seshu,
Thanks for your information, we are using 4.7. User insisting to use BAPI only, can you please let me know.
Thanks
jaya
‎2007 May 22 4:27 PM
I found only one BAPI for Delivery in 4.7 -
BAPI_SALESORDER_CONFIRMDELVRY
WS_DELIVERY_UPDATE use this fm to update delivery and post goods issue ,and this is remote enabled.
Reward Points if it is helpful
Thanks
Seshu
‎2007 May 22 4:17 PM
Hi,
Try using the FM WS_DELIVERY_UPDATE...Also for inbound delivery do we require Picking??
Ok..Check this sample code for doing PGI..
PARAMETERS: p_vbeln LIKE likp-vbeln.
DATA: vbkok_wa TYPE vbkok.
vbkok_wa-vbeln_vl = p_vbeln.
vbkok_wa-wabuc = 'X'.
DATA: v_error.
CALL FUNCTION 'WS_DELIVERY_UPDATE'
EXPORTING
vbkok_wa = vbkok_wa
delivery = p_vbeln
IMPORTING
ef_error_in_goods_issue_0 = v_error.
COMMIT WORK.
Thanks,
Naren
‎2007 May 22 4:39 PM
Hi Jaya,
You can use FM WS_DELIVERY_UPDATE same as BAPI.
This FM is Remote-Enabled Module.
Regards,
Ferry Lianto