Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Bapi for VL31N

Former Member
0 Likes
1,105

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
738

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

5 REPLIES 5
Read only

Former Member
0 Likes
739

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

Read only

Former Member
0 Likes
738

Hi,

Check this FM BBP_INB_DELIVERY_CREATE.

Thanks,

Naren

Read only

0 Likes
738

Hi Naren!

Do you know how to complete the interface for this FM? Do you have an example?

Thank you very much!

Read only

Former Member
0 Likes
738

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.

Read only

Former Member
0 Likes
738

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