cancel
Showing results for 
Search instead for 
Did you mean: 

Creating outbound delivery for sales order item without confirmed quantity

Former Member
0 Kudos

Hi,

We want to deliver a sales order in only one time even if only partial quantities are available. So after SM on the outbound delivery all items of the sales order should be completed...even if on some items delivered quantities are equal to zero

In sales order item we set "partial delivery item" to = B "create only one delivery also with zero"

In our SAP we use ATP check

For items where quantities are confirmed in the sales order, it works well ; In the outbound delivery all items with confirmed quantity are copied even if ATP check for delivery find 0 avalaible quantity and when the good issue is confirmed, items in the sales order are closed (also for items where 0 quantited are delivered)

The problem is for item where the availability check in sales orders confirmed zero quantity ---> when creating the outbound delivery, SAP doesn't copied in the outbound delivery items where 0 quantity are confirmed in the sales order

Does somebody knows a way to copy all items in the outbound delivery even in 0 zero quantity are confirmed on some items in the sales order .?

Thanks for help

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Could you try with Routines in the Copy Control from Order to Delivery

Former Member
0 Kudos

Finally with found this solution

1-) SAP Customizing Implementation Guide/Logistics Execution/Shipping/Copying Control/Define Copying Requirements SIMG_XXMENUOLSDMODB2

---> DATA Transfert/Deliveries

we copied Routine number 101 in 901 (RV50C901) and add :a test

IF ....our specific conditions....

LOOP at XVBEP into ZZVBEP

where olfmng = 0

and vbeln = cvbap-vbeln

and posnr = cvbap-posnr.

ZZVBEP-OLFMNG = 1.

modify xvbep from zzvbep transporting olfmng.

endloop.

ENDIF.

2)- in VTLA we assigned the new routine for Data Transfer at item level

3)- Then during creation of delivery ... SAP use " INCLUDE SAPFV50C_LIPS_FUELLEN_AUS_VBEP " and check

IF XVBEP-OLFMNG GT 0_ OR

( XVBEP-BMENG GT 0 AND

CVBAP-KZTLF = CHARD AND CVBAK-ABDIS IS INITIAL ).

......

-


> with our change in RV50C901 the test u201COLFMNG GT 0u201D is OK, the process continue and a delivery item is created even if 0 quantity are confirmed in the item sales order

Thanks for help

Former Member
0 Kudos

Dear Sylvie LAUNAY :

Our user also have this requirement to create zero quantity from sales order zero quantity. I do modify the data transfer routine according to your solution,but it does not work,the zero confirmation quantity in sales order never go to delviery order.Would you please tell me more details,thanks.

SD supporter

Jack Huang

Former Member
0 Kudos

Hi,

May be you can check if the program goes in your new routine for data transfer (with a breakpoint) .?

I have check and I think we have made nothing more and It works well ..

Sylvie

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Perhaps what you could do is to assign to your item an alternate schedule line with availability check disabled.

Then for your material with no confirmed quantity, you can change the schedule line with the one above in order to "bypass" the availability check.

Hope it will help,

Louis