2006 Aug 16 9:05 PM
Hi
I need to do a Batch Input to the transaction VL31N, because I need to create an inbound delivery. I wonder if is possible to do a batch input to that transaction.
If it´s not possible, does anybody know if there is a Bapi to use for this transaction?
Thank you very much.
Eduardo.
2006 Aug 16 9:09 PM
I'm on 46C, so the number of BAPI's in my system is limited. Try going to transaction BAPI and look under:
Logistics Execution -> Shipping -> Inbound Delivery
2006 Aug 16 9:09 PM
I'm on 46C, so the number of BAPI's in my system is limited. Try going to transaction BAPI and look under:
Logistics Execution -> Shipping -> Inbound Delivery
2006 Aug 16 9:10 PM
2006 Aug 16 9:43 PM
Hi Naren!
Do you know how to complete the interface for this FM? Do you have an example?
Thank you very much!
2006 Aug 16 10:20 PM
Hi,
IDOC mass processing - input
Use the Function Module <b>IDOC_INPUT</b>
Forwarding to inbound processing by the application
Use the Function Module <b>IDOC_START_INBOUND</b>
Regards,
Azaz Ali.
2006 Aug 16 10:39 PM
Hi,
DATA: IS_INB_DELIVERY_HEADER LIKE BBP_INBD_L.
-
IS_INB_DELIVERY_HEADER-DELIV_EXT = 12121
IS_INB_DELIVERY_HEADER-DELIV_DATE = 08/16/2006
DATA: T_DETAIL LIKE LIKE BBP_INBD_D OCCURS 0 WITH HEADER LINE.
-
T_DETAIL-MATERIAL = 'xxx'.
T_DETAIL-DELIV_QTY = '10.000'.
T_DETAIL-UNIT = 'EA'.
T_DETAIL-PO_NUMBER = '45XXXXXX.
T_DETAIL-PO_ITEM = '000010'.
APPEND T_DETAIL.
DATA: T_RETURN LIKE BAPIRETURN OCCURS 0 WITH HEADER LINE.
DATA: V_VBELN TYPE VBELN_VL.
CALL FUNCTION 'BBP_INB_DELIVERY_CREATE'
EXPORTING
is_inb_delivery_header = is_inb_delivery_header
IMPORTING
EF_DELIVERY = V_VBELN
tables
it_inb_delivery_detail = T_DETAIL
return = T_RETURN
.
Thanks
Naren