STO delivery with zero quantity

Hi Gurus,
               We are facing a problem in STO scenario. We are in ECC 6.0. We have settings for WM (Warehouse Management) are in place.  STO is created. When trying to create a delivery the system is creating the delivery document but it is not picking the quantity. Is anyone ever faced this problem? Please let me know if you can suggest any solution to this problem.Suitable points will be rewarded to the helpful answers.
Thanks and Regards
Kapil

Hi,
    We are using following transactions -
Create Outbound delivery T-code VLI0B
Create Transfer Order T-code VL06O
Confirm Transfer Order T-code LT23
Create Goods receipt at site w.r.t. STO or delivery
Please note we doing intercompany tranfer using STO. Now the problem which we are facing is- We are able to create replinishment delivery using VL10B  and the delivery and the material document is being created but the delivery quanity is zero. Purchase Order history of the PO gets updated with the material document number but with the delivery quanity as zero. Please let me know if you know the solution for this problem. It is very very urgent. Any help will be appreaciated and helpful answers will be rewarded.
Regards
Kapil

Similar Messages

  • Unable to create delivery with zero quantity

    Hello,
    I am trying to create a Delivery using DIAPI. When I set the quantity as zero for a line item. The Delivery Note gets created with quantity 1.
    I am able to create a delivery with no quantity from SBO client.
    SAPbobsCOM.Documents vDLN = (SAPbobsCOM.Documents)c.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
                vDLN.CardCode = "C20000";
                vDLN.Lines.SetCurrentLine(0);
                vDLN.Lines.ItemCode = "A00001";
                vDLN.Lines.Quantity = 0;
                if (0 != returnval)
                    c.GetLastError(out errNo, out errMsg);
                    Console.WriteLine(errMsg);
                    return;
    Thanks and Regards,
    Sheetal

    It is DIAPI bug Note - 1001970
    DI - Wrong Quantity updated when creating delivery document
    The note 1001970 has not been released yet but should be soon.
    This issue is candidate to be fixed in Business One version 2006
    Regards,
    Sheetal

  • Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too

    Intercompany Deliveries were created with zero quantity, causing an idoc failure and the remaining delivery too
    a. User trying to create delivery but stock not available.
    b. When stock is not there it should show an error message in SAP screen but its not -  like stock not available etc
    c. Fedex gets delivery notice for the delivery; if its more than zero it will create delivery otherwise less than zero it won’t accept.
    d. But issue its creating even its less than zero
    Is there anyone who can help me out...

    When one is created with zero quantities it starts blocking our deliveries from getting through to fedex because deliveries will in doubt have been blocked at fedex. As we process our orders in morning and if there is an STO blocking orders, it will be in afternoon .
    Any suggestions !!!

  • Create item delivery with zero or total quantity (even if available stock)

    Hello!!
    My requirement is create a item delivery with zero or total quantity, but not only the stock available at this moment. The item only will have 2 possibilities: 0 quantity or total quantity of the sales order.
    Example of the current process:
    Material M-10: Stock available: 2
    M-10: Item in sales order: 6
    M-10: Item in delivery: 2  --> should be 0!!!
    Material M-20: Stock available: 10
    M-20: Item in sales order: 5
    M-20: Item in delivery: 5
    In M-10, quantity in item delivery should be 0. (my category item delivery allows quantity 0).
    Do you know if there is some customizing for this requirement? All quantity from sales order or 0 in delivery item.
    Thanks in advance,
    Jen

    Hi,
    for complete delivery:
    Entering the Indicator
    There are two places where you can enter this indicator:
    Customer master record
    This indicator belongs to the shipping data for a customer within a sales area. You enter an X in the Complete Delivery field on the shipping screen of the customer master record. The indicator is copied into the order header.
    Order header
    You can also enter the indicator X in the Delivery field on the business data screen of the order header.
    If you try to partially deliver an order to which you have assigned a complete delivery indicator, the system will inform you that the customer requires complete delivery of the order. All items must be delivered at the same time. The items cannot have different delivery deadlines.
    If the system cannot include all the items with the total order quantity in the delivery, you receive a message that the customer requires full delivery.
    If you enter the complete delivery indicator X, you must set the partial delivery indicator to C (no partial deliveries allowed).

  • Purchase order with zero quantity

    Hi all,
    When a replenishment delivery is ceated in product view, APO automatically creates purchase order with zero quantity and the replenishment delivery's receipt element. APO does not transfer the purchase order to R/3. Do you have an idea about the problem?
    Thanks,
    Burak

    Plese try to send change pointer through /SAPAPO/C5 - Process Change Pointers .
    Also check your publication setting in Spro.( Maintain Distribution defination )
    Manish

  • Materials with Zero Quantity in Stock

    Hi Experts,
    I am preparing a Customized Stock Summary Report.
    I have two queries.
    1. How do i find Materials with Zero quantity in Stock????
    Is searching for MATNR based on MENGE value 'SPACE' correct way to go about it?
    2. How do i find number of same materials in the same plant ?????
    Points will be awarded for the helpful answers.
    Cheers
    Gaurav Raghav

    Hi Vineet,
    Thanks for the quick solution.
    I got point 1.
    Just confirm whether i understood it correctly.
    If a search for MATNR based on Field LBAST i.e Valuated unrestricted-use stock in table MARD, i will get all materials with Quantity Zero.
    Have i understood correctly????
    I guess i was not clear with my second point.
    let me try once more.
    My selection criteria is based on Plant.
    Therefore i guess same materials under PS & JS are redundant.
    So i want to display SKU excluding all Deleted Materials.
    How do i go about it???
    I have already coded to select deleted materials.
    Cheers
    Gaurav Raghav

  • Item with zero quantity.

    Hi ,
    I need a SQL query which returns all the items with zero quantity.
    In mtl_system_items_b am not finding any quantity column.
    I have written a query.will you please let me know whether it works or not.
    select b.segment1,0
    from
    inv.mtl_system_items_b b
    minus
    SELECT b.segment1,m.TOTAL_QOH
    FROM APPS.MTL_ONHAND_ITEMS_V m,
    inv.mtl_system_items_b b
    where b.inventory_item_id=m.inventory_item_id
    and nvl(m.TOTAL_QOH,0) >0
    Thank you.
    Regards,
    Neeraja.I

    Hi,
    try with this query,
    select
    msi.INVENTORY_ITEM_ID
    , msi.DESCRIPTION
    from
    MTL_SYSTEM_ITEMS_B mis
    , MTL_ONHAND_QUANTITIES moq
    where mis.INVENTORY_ITEM_ID =moq.INVENTORY_ITEM_ID
    and moq.TRANSACTION_QUANTITY <>0
    --Basava.S                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Excisable items with zero Quantity

    Hi,
    Posting Invoice for Non-Excisable item with zero Quantity is allowed, How to get the same with the Excisable Item ?
    Thanks And Regards
    Vivek

    Hi Jimmy,
    Thanks for ur response,
    I m working on SAP B1 PL34 and also checked in PL05, Is there any way to achieve that facility in Invoice Document?
    And if u find any notes for it then plz give me the link.
    Thanks and Regards,
    Vivek

  • How to change p.o with zero quantity

    hi gurus
    as per requirment i need to save p.o with zero quantity.but i can/t system wants me to enter quantity in quantity field.
    i do;'t want this field to left blank in me21n but in me22n.
    i wil use this p.o for spec messges.and to cancel the p.o quanitity should decrese to zero
    thanks for you help

    Thanks Easwer for your help. 
    The info for getting status from function is very clear and I followed you instruction and completed the coding in BAdI and tested it successfully .... Thank you very much.  I need to learn where I can see the system status of the template,  i.e.  I1034 (Order Template) or Order or Quotation .....?  if I need to filter out Quotation, I can easily do it in the BAdI.   Could you please provide me more details?
    Thanks again, Jin
    Thanks again, Jin

  • Sale order with Zero quantity

    Hi,
    I should not see the sale order with Zero quantity in APO product view . I tried by de-selecting the Display customer requirement w.0 qty from user setting in product view but it din work.
    Is there any other option to switch off sale order with zero quantity in product view ?
    Regards
    BVN

    Hi Valavan,
    Please check in customisation under PPDS whether set order view/periodic product view is
    maintained
    Regards
    R. Senthil Mareeswaran.

  • Goods receipt with Zero Quantity from Purchase Order

    Dear Expert,
    Is this a policy or something in SAP system?
    Why I can MIGO with Zero Qty from Purchase order that still open quantity?
    Best regards,
    Dedy

    Dear all,
    Thanks a lot for all replies.
    Dear Thiru,
    First thing, all system message i have set error, M7 061 Document does not contain any items
    M7 264 Qty and / or "delivery completed" ind. or final issue ind. are missing.
    Scenario :
    PO not yet tick delivery completed (open quantity), when we doing MIGO w/ zero qty and set delivery completed indicator to --> 2 Set, a document GR is posted w/ zero quantity.
    Also when PO already tick delivery completed, but when MIGO and set delivery completed indicator to --> 3 Do not set, a document GR is posted w/ zero quantity.
    Is this a way that SAP provide to tick delivery completed after PO final release w/ status not changeable so we do not need to cancel release or something like a bug/backdoor?
    Best regards,
    Dedy

  • Create delivery with 0 quantity

    Hi Experts,
    What is configuration setting required if delivery needs tobe created with 0 quantity.
    Regards
    Gali

    Hi,
    Maintain the confirmed quantity and delivery quantity as " 0" in the sales order for schedule lines.
    Also Goto 0VLP(Zero VLP).Select your item category.Details.
    Maintain blank for the field Check quantity 0.
    Regards,
    Krishna.

  • Creation of delivery with zero stock

    Hello,
    I have two SAP system, on both system the OSS note below was implemented:
    712516 Delivery item created in spite of VL367 with quantity 0
    On the 1st system, when I create a delivery foritem category LZN that has no stocks the system is allowing me, even if
    I have set value u201CBu201D in the field u201CCheck quantity 0u201D in customizing/configuration of delivery item category LZN (transaction
    0VLP).
    While on the 2nd SAP system, it is not allowing me to create the delivery with the same setup of the 1st system.
    I tried to compare both systems, but I cannot find the difference on why the 2nd SAP system it is not allowing me to create the delivery.
    Is it really possible to still create a delivery for an item category with value u201CBu201D in the field u201CCheck quantity 0u201D in customizing/configuration of a delivery item category(transaction 0VLP)?If yes, could you explain to us how is this possible in SAP?
    My objective here is to proceed delivery even with value u201CBu201D in the field u201CCheck quantity 0u201D in customizing/configuration of a delivery item category(transaction 0VLP) was activated.
    Thanks & Regards

    "On the 1st system, when I create a delivery foritem category LZN that has no stocks the system is allowing me, even if
    I have set value u201CBu201D in the field u201CCheck quantity 0u201D in customizing/configuration of delivery item category LZN (transaction
    0VLP). "
    This sounds like inconsistent incorrect behaviour to me. Do you have any user exit / BADI coding influening this? If so, does the issue occur when you skip the custom code?

  • Not able to do GR for STO delivery with packing.

    Hi All,
    Hi All,
    I am not able to do GR for STO delivery.
    I am getting the following error:
    Data for creating a delivery is incomplete (Vendor)
    Message no. M7279
    Business scenario:
    STO between two plants of same company code with packing material.
    Sales Org(Supp)-4444
    Sales Org(Rec)- 3333
    Plant(Supp)-2003
    Plant(Rec)-2002
    ME21N->VL10B->PGI->VF01(Proforma)->MIGO w.r.t outbound delivery(error)
    Note: PGI with packing material-separate line item generated for packing material-movement type for main material-641 and for packing material-601)
    with regards
    Azeez.Mohd

    Hi,
    When the stock is going to be moved between two plants or two storage locations that are under single company code called as stock transfer order business process. Receiving plant raises the purchase order with supplying plant; supplying plant delivers the goods to the receiving plant by raising sales order.
    Config Steps
    Create Vendor: Transaction code: XK01
    Assign Plant to Vendor
    Go to change mode of Vendor [XK02]
    Specify Vendor number that we created in the previous step
    Define shipping data for plants
    Create material by maintaining u201CPurchasingu201D view: Transaction code: MM01
    Extend the material from XXXX to YYYY plants
    As we are extending material from plant XXXX into YYYY plant, system copies all the data into the new plant.So that we have to change the delivering plant in delivering plant field as YYYY in Sales: Sales organization data 1 view.
    Create Purchase order: Transaction code: ME21N
    Activities due for Shipping (Purchase order fast display): Transaction code: VL10B
    Display stock in transit: Transaction code: MB5T
    Goods receipt: Transaction code: MIGO
    Stock movement types: INTRAand INTER
     INTRA
    Stand order type (Document type) = UB
    Delivery type = NL
    Determination of document type:
    Supplying plant + Receiving plant = UB
    Supplying plant + UB = NL
    Movement types:
                      Issuing plant Receiving plant
    Single step    647                        101
    Two step        641                        101
     INTER
    Standard order type (Document type) = NB
    Delivery type = NLCC
    Determination of document type:
    Supplying plant + Receiving plant = NB
    Supplying plant + NB = NLCC
    Movement types:
                            Issuing plant Receiving plant
    Single step              645               101
    Two step                 643                101
    PBXX is the Gross price condition type for Stock Transfer Order
    Vendor = Supplying plant
    Customer = Receiving plant
    NOTE: In single step method updations takes place in both plats simultaneously.
    In two-step method updations should takes place manually.

  • Oder created with zero quantity

    Hello,
    Order was created with several line items in which one line item has zero quantity the system still allowed to save the order.
    Can you help me to investigate why this has happened.
    Thanks
    Vinay Sapare

    Hi Vinay Sapare 29, 
    You have to assign the *incompletion log* to the sales document hear
    Go To *SPRO-IMG-Sales& Distribution-Basic functions-Log of Incomplete Items-define incompletion procedures*
    -- Assign the Incompletion procedures to the Sales document header & save it
    --Go to T.Code VOV8 & select your sales document type & check mark the incomplete message.
    --Raise the sale order in VA01 & check  the output if any incomplete data is maintained the system throws an error message & it will not allow to save the document.
    Let me know if your problem is solved
    Regards
    Pradeep

Maybe you are looking for