Single delivery from multiple Sales Orders

Can you let me know how to create a Single DN if there are different parts to be shipped if the below satisfies,
same ship-to-party
same ship date
thx,

Hi Pri,
To have single delivery from multiple Sales Orders you have 2 waysto do it.
The prerequisites are,
A. All sales orders should have same ship to Party
B. Delivery due dates should be same.
C. Incoterms should also be same.
D. Shipping Point should be same.
Once this is ensured, you can either
1. Go to Tr. Code VL10A and execute the delivery document creation for the list of sales orders
Or,
2. Go to VL01N. Give 1st order no. enter into the overview screen
Here, go to main menu, Outbound Delivery ---> Collective Processing- Del. Creation
This will also take u to the same VL10A screen.
Hope, this is helpful. Award points if found helpful.
Regards,
Niketan

Similar Messages

  • Wrong VL-367 error while creating delivery from multiple sales orders

    Hi,
    We have a Z program* that runs BAPI_OUTB_DELIVERY_CREATE_SLS with multiple sales order items to create one delivery.
    The program runs as a job. The problem is sometimes Bupi turns "VL367 - an item with no delivery quantity..." error for some of the items. But actually we have no availability problem, after a minute in the next job the delivery is being created for those items.
    We couldnt find the the state that causes this wrong error. Have any ideas, is there any problem with the bapi ?

    Hi,
    You should check if you got other Sales Order that might be have items with quantities confirmed. Quantities confirmed in a sales order will be appear as unrestricted stock, although is reserved, and therefore for example:
    Sales Order A: item 10, quantity 10
    Unrestricted stock: 10
    Sales Order B: item 10 (Same material as Sales Order A), quantity 2
    Creating outbound delivery for Sales Order B will generate the message, because that stock is being taken for the Sales Order A already.
    Hope it helps.

  • Auto-create delivery for multiple sales orders

    I would like to ask how to create auto-create 'single' delivery
    for multiple sales order during release sales order in R11i.
    It is found in my example during release sales order, multiple
    sales orders fulfill release sales order criteria, a single pick
    slip is generated but it is found that each sales order have
    individual delivery with it. It will casue multiple pack slips
    for a singles pick slip. Is it normal feature for auto-create
    delivery, or any setup to solve it?
    Thanks in advance.

    Am not able to do Single Delivery for Muktiple sales orders
    Have you searched the forum for this question as to why you were not able to generate ??  It could be due to multiple reasons.  Please search the forum and update here what steps you have taken after taking the inputs from here, if the problem is still not resolved.
    thanks
    G. Lakshmipathi

  • One delivery for Multiple sales orders

    Dear friends,
    Am not able to do Single Delivery for Muktiple sales orders. Can you guide me what r the configuration settings i have to do on this?
    Regards,
    Madhav

    Am not able to do Single Delivery for Muktiple sales orders
    Have you searched the forum for this question as to why you were not able to generate ??  It could be due to multiple reasons.  Please search the forum and update here what steps you have taken after taking the inputs from here, if the problem is still not resolved.
    thanks
    G. Lakshmipathi

  • Single Del. for multiple sales order:

    Dear all,
    i wanna do a single del. for multiple sales order ,So plz provide me the exact flow to do it.
    Also provide what conditions are required to do the same.
    Waiting for ur reply,
    Thanks & Regards,
    Olet malla..

    Hi,
    It is very much possible in SAP.
    Goto the T code VL10A and enter your Shipping point and Execute.
    This will give you the list of Sales orders which are ready for delivery.
    Select the sales orders for which you want to create single delivery and click on "Back Ground".
    This will create the delivery. PGI you can do it VL02N.
    Requirement for combining Sales order are: Ship to party should be same, Route should be same, Delivery date should be same, Shipping point should be same, plant should be same.
    Regards,
    Mullairaja

  • How to restrict more than one delivery from one sales order.

    Hi Guys,
    We have a requirement that is, system should not allow more than one delivery from one sales order no even if when there is some line item still to be delivered.
    We want only one delivery for one sales order and rest of line items should be treated as rejected.
    Kindly help
    Thanks in advance,
    Balu

    Hi MP,
    Its also not working as we have the requirement is that once sales order is saved and one delivery is created then again if we are adding some more item inthe same sales order then system should not allow to create delivery document as one delivery already created.
    Thanks,
    Balu.
    Edited by: Balu Sajja on Aug 30, 2010 1:29 PM

  • How to create one delivery for multiple sales order

    Hi!! Friends,
    Can some one explain the steps to be followed in creating one delivery for multiple sales order in SAP SD.
    Regards
    AKASH
    Message was edited by:
            AKASH TAMBI

    Hi.,
                  You can combine different orders in to one delivery ,But for the customer Order combination should be checked in  the sales area data of the shipping tab,we can combine orders but the ship to party,Route,Inco terms,Shipping date,shipping point should be same,you can do in T.code VL04 & VL10
    REWARD if helpfull
    Thanks & Regards
    Narayana

  • How to create delivery from a sales order?

    Hi friends,
    Can you tell me how to crete a delivery from a sales order?
    First, I would like to know which transaction we use to create and how?
    Appreciate your input.
    Thanks,
    Krishen
    P.S. Points assured for helpful answers and thanks in advance for your time.

    VL01 is the transaction for the creation of Delivery
    VL01   SAPMV50A       Create Delivery
    VL01N  SAPMV50A       Create Outbound Dlv. with Order Ref
    VL01NO SAPMV50A       Create Outbound Dlv. w/o Order Ref.
    Message was edited by: Gopi Narendra

  • DI: Create Purchase Order from Multiple Sales Order - Lines

    Hi all,
    I am trying to group multiple lines from multiple Sales orders concerning One given Vendor/Supplier so as to generate One Purchase order for this Vendor/Supplier
    oSalesOrder = (Documents)B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oOrders);
    oPurchaseOrder = (Documents)B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oPurchaseOrders);
    oPurchaseOrder.CardCode = 'Vendor1'
    oSalesOrder.getByKey("13");
    oSalesOrder.Lines.SetCurrentLine("4");
    oPurchaseOrder.Lines.BaseEntry = oSalesOrder.DocEntry;
    oPurchaseOrder.Lines.BaseLine = oSalesOrder.Lines.LineNum;
    oPurchaseOrder.Lines.BaseType = (int)BoObjectTypes.oOrders;
    oPurchaseOrder.Lines.Add();
    oSalesOrder.getByKey("14");
    oSalesOrder.Lines.SetCurrentLine("2");
    oPurchaseOrder.Lines.BaseEntry = oSalesOrder.DocEntry;
    oPurchaseOrder.Lines.BaseLine = oSalesOrder.Lines.LineNum;
    oPurchaseOrder.Lines.BaseType = (int)BoObjectTypes.oOrders;
    if (oPurchaseOrder.Add()!=0)
        MessageBox(B1Connections.diCompany.GetLastErrorDescription());     
    I get the following Error: <i>Base Document Card and Target Document Card do not match</i>.
    What more Should I do to avoid This?
    Regards,
    Emmanuel.

    Hi Emmanuel,
    As far as I know you cannot create a purchase order based on a sales order using the DI API. I know in SBO you can do this, but I don't think using the SDK. The reason why it's giving you the message "Base Document Card and Target Document Card do not match" is because one is a vendor and one is a customer.
    Hope it helps,
    Adele

  • Regarding single deliveries for Multiple sales order

    Currently i m doing multiple sales order into one delivery & one invoice but we r facing that after doing the delivery in VL10A for the same custoemr still one delivery was not in the same delivery also i have confirmed the following criteria also
    1. Delivery due date for the materials( schedule line tab)
    2. Ship to party must be same in all Sales Orders
    3. Shipping point must be same for all of them.
    4. Incoterms should also be same.
    5. Shipping Point should be same.
    6. Confirmed quantity date at schedule line level
    7. Delivery Priority
    Pls help

    Hi,
      is there any routines used in Copy controls from order - delivery .- re-check once.
    as your post, everything seems fine. I didnt see any reason for not creating single delivery.
    is it happening only with this customer or respective ship to's? if yes, something gone wrong in CMR - i.e. complete delivery / order combination etcc., ( just an assumption)
    Regards,
    ReazuddinMD

  • How to create a single delivery for two sales orders?

    Hi Experts,
    I need to create one delivery for two sales orders. But it fails.
    The route, shipping point, ship to party are same for both orders but INCOTERMS are different.
    Delivery date, Good issue date, loading date,material availability date, transportation planning date for 1st order is 12/07/11 and for second order is 14/07/11.
    I have created delivery on 14/07/2011 but the delivery is created for 1st order only, the second order is missing in the delivery.
    It not happened because of incoterms.? different dates
    Kindly help regarding this.
    Thanks
    Raghu

    Prerequisite for Grouped delivery
    1. Header data should be same like Inco terms,Payment terms
    Go to VL10A
    Enter the sales order Numbers and execute
    Select the sales order Nos  for the group delivery and select "Background"  Tab in Tool Menu Bar
    If delivery is created coloured line items will get generated
    Check the log for delivery docuements
    Check and confirm
    Senthils

  • Error while creating a delivery from a sales order

    Hi Folks,
    when i try to create delivery of a sales order, i am getting following error:
    " Item 000030: delivery split due to conflicting header data (FKARV: ZF2C <-> F8) "
    please help me in correcting this error.
    thanks in advance.

    Hi,
    The field FKARV is for Proposed billing type for a delivery-related billing doc.
    Now here in your case billing document if ZF2C and another is F8 so it is splitting, check this
    Kapil

  • Not getting single delivery for two sales orders

    Hi Sapians,
    I am getting one delivery for two sales orders in VL10A.  But in another case, out of two sales orders, for one order I went to partner functions and changed the address line of ship to party while creating sales order.(Since for that particular order the ship to address is different). then as usual I proceeded to VL10A. But this time system gives two seperate delivery document numbers instead of one which is given earlier. Can any of the experts help me in this regard.
    Thanks for your response in advance.
    Raksha Agarval

    Hi Raja,
    Just now I came out with exact problem. While creating sales order, in the header data partner function tab, if we select the ship to party line item and go for details tab and change the address first line item (that is street number), the same change is also if we do in second sales order also, then if we go for delivery in VL10A, then system gives two delivery documents instead of one.( though, all the requirements are met, like same plant, shipping point, shipping conditions, incoterms.. etc).
    Even after meeting the requirements, as per SAP standards also why system giving two delivery documents? is the problem.
    Please come with possible reasons
    Thanks in advance,,
    Raksha.

  • Delivery Split from multiple sales order with signle ship to party

    Dear All,
    I have multiple sales oreder with different Sold to party and single Ship to Party.
    I want to combine all sales order into a single delivery but here deliver split due to different sold to party which I have checked through report ZLE_ANALYZE_DELIVERY_SPLIT.
    Can any body suggest me, whether i can write any copy control routine so that it will stop in splitting delivery.
    Please suggest if any other way of possibility.
    Regards
    Prashant

    All partners which stand in the partner schema of the delivery and which are copied from the preceding document are part of split criteria. The only mandatory partner of the outbound delivery however is the ship-to party.
    You can delete the sold-to party from the partner schema for deliveries with order reference and it is then no included in splitting criteria.
    Furthermore you can control split criteria in copy control routines -> field ZUKRL is used for this purpose. You can check standard routine FV50C001 for that.
    Your Z* code means that you have applied custom logic to define split criteria. But most probably it is called by copy control routines and the mechanism should be the same.
    For more details you can also check OSS notes:
    SAP Note 546668 - FAQ: Delivery split when creating deliveries
    SAP Note 166397 - Delivery split according to customer field ZUKRL
    Regards,
    Dominik Modrzejewski

  • Single invoice against multiple sales order for a single customer PO

    Hi all,
    Customer provide a single order via EDI per Depot.  When the order is received into SAP these are split into multiple order based on the Production or distrubtion location of the products. The customer will receive a number of deliveries to the depot from the various locations.  Each delivery has his own SAP sales order and delivery note.  This creates mutliple invoice against a single Purchase order sent by the customer.
    We have a requirement from two customers that they only wish to receive a single invoice per depot per day.   This means we need to change the way we currently invoice the customers(no multiple invoices needed).We need to be able to combine multiple deliveries with the same PO to a single invoice.  This would mean that the invoice can't be generated until all the deliveries relating to the single PO have been POD flagged or 7 days  have passed from PO date and invoicing is due.
    how to achieve the above,whether through user exit in billing or data transfer routine in copy control(delivery to billing) or through config and how ??
    regards
    sachin

    Hi Sachin,
    You will have to create a new data transfer requirement on the copy control between the delivery and the invoice. In the new data transfer requirement, you will need a programmer to code when there should be an invoice split.
    Regards,
    Finbarr

Maybe you are looking for