Application Development 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: 

FM to replace VL10B

Former Member
0 Kudos

I'm trying to use a FM instead of a batch input to create deliveries, but I don't know how to use FM W_FRM_DELIVERY_CREATE_GENERAL, which I understand is the suggested choice to replace transaction VL10B.

I've had a look at the posts in the forum, but I still can't put the FM to work.

The purchase orders are being created with BAPI_PO_CREATE1.

Can anyone help?

Thanks in advance,

S.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

try this Bapi

CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'

TABLES

REQUEST = t_dlv

CREATEDITEMS = t_dattrb

RETURN = t_return1.

Regards.

Eshwar.

2 REPLIES 2

Former Member
0 Kudos

Hi,

try this Bapi

CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'

TABLES

REQUEST = t_dlv

CREATEDITEMS = t_dattrb

RETURN = t_return1.

Regards.

Eshwar.

0 Kudos

When I try to use that BAPI I get an error concerning packing. Could you tell me which fields have I to populate?

Thank you very much.