2006 Dec 05 7:08 PM
Hi. Does anybody know a bapi to create outbound deliveries (instead VL10B) transaction? I also would like to have an example of the bapi if exists. Thanks.
Hi. Does anybody know a bapi to create outbound deliveries (instead VL10B) transaction? I also would like to have an example of the bapi if exists. Thanks.
2006 Dec 05 7:14 PM
2006 Dec 05 7:16 PM
Hi,
Check this example...BAPI_DELIVERYPROCESSING_EXEC....This example is for creating a outbound delivery for a sales order..
Use the document_type to 'B' for purchase orders..
CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'
TABLES
request = t_request
createditems = t_created
return = t_return
.
READ TABLE t_return WITH KEY type = 'E'.
IF sy-subrc = 0.
MESSAGE e208(00) WITH 'Delivery creation error'.
ENDIF.
COMMIT WORK.
Thanks,
Naren
2006 Dec 05 7:17 PM
Hi,
Seems we do not have the BAPI for this one, there is a optin, you can do by using VL04, there give the order no and the item date and execute this then the delivery will be created
Regards
Sudheer
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |