cancel
Showing results for 
Search instead for 
Did you mean: 

How to Change Delivery quantity after creating Transfer order

Former Member
0 Kudos

Hi

I created a transfer order for my delivery with LT03. There is already non-ordered quantity in my delivery.

delivery quantity is 5 but transfer order's quantity is 4.

i want to change my delivery quantity without confirming the transfer order.

Is it possible

is there any customization or function for that work ?

in se37, i tried BAPI_OUTB_DELIVERY_CHANGE. it returned the error "there is an unconfirmed transfer order"

Moved to SD froum from LE forum at the request of OP

Edited by: Csaba Szommer on Apr 18, 2011 1:21 PM

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

there isnt some function that helps my situation.

Thanks

Former Member
0 Kudos

I guess there is no way to obtain the delivery quantity as we want if there is an unconfirmed Transfer Order.

Is there an userexit that can help us?

Former Member
0 Kudos

Thanks Andrzej, it is helpful

i need to determine the delivery quantity as i want and it can be different than the picked quantity

Do you know "the function" that changes the delivery quantity in your solution.

csaba_szommer
Active Contributor
0 Kudos

If you set "Copy WM quantity as delivery quantity into delivery" for your WH/wm-mvt combination in WM/Shipping interface, the delivery quantity will be always adjusted to the picking quantity ("1" in field V_T3333-WMMUE).

The same can be achieved manually as it was told you by Andrzej.

There's no separate function modul to do this.

When system is processing FCODE "KOMU_T" (manual process) the delivery quantity will be changed in include MV50AF0F_FCODE_KOMU in internal structure "lips":


      IF xlips-pikmg > xlips-lfimg OR likpd-kzebu IS INITIAL.
        PERFORM check_and_set_pikmg_lfimg CHANGING lf_subrc.
        CHECK lf_subrc = 0.
      ENDIF.

But this is one thing, there's some preparation before this step and and the change in "lips" will cause the change of "xlips" later on, etc.

So, it is related to several programs (includes) and forms.

Please contact your ABAPer if you are not familiar with technical things.

Edited by: Csaba Szommer on Apr 18, 2011 10:55 PM

Former Member
0 Kudos

no idea ???

andrzej_chmura
Contributor
0 Kudos

Hello,

In VL02N you can use Edit->Copy Picked Quantity As Delivery Quantity.

The system copies the picked material quantity as the delivery quantity in the corresponding item of the outbound delivery and sets the SD picking status and the WM activity status in the outbound delivery to C (fully picked).

Andrzej