Error while creating Delivery Note from Sales Order

Hi,
I am trying to create Delivery Note from Sales Order. But, I am getting one error sayin "An Item with no delivery quantity is not permitted.Item will be deleted". Hence, the delivery note was not created.
Can you please let me know, why this error comes. And how to rectify this error.
Please let me know, what are all checks, I need to do, to know this error.
Thanks,
Sandeep

Hi
There may be following reason :-
Either the relevant Item Category is not relevant for Delivery, Check the Item Category in Sales Order and then check the settings of this Item Category in VOV7.
Also check the relevant Schedule Line in VOV6, it should be relevant for Delivery.
The Other reason may be that your schedule line in Sales Order is Not confirmed for Available Quantity so check the Sales Order> Line Item> Schedule Line.
Regards
Amitesh Anand

Similar Messages

  • Error while creating AR Invoice from Sales order

    Hi All,
    I have created a sales order ,when i try to create AR Invoice through Copy To option i am getting an error
    Business partner of copied down payment document must be the same as business partner of target document
    Please help me to solve this issue
    Thanks in Advance
    Regards
    Arun

    Hi Arun,
    Check if you have Down payment AR Invoice created from this Sales order.
    Thanks,
    Gordon

  • Change in document type while creating billing document from sales order

    While creating billing document from Sales order it is creating with document type RV which is standerd one but i want to change Document type.
    How can i change it?
    Regards
    Raj

    Hi
    If you use another existing document type, check that it has a number range suitable to you.  Else create a new 'z' type and assign an entirely new number range, not used in the other doc types.
    It is useful to make the FI document number the same number.  If I understand from the forums, the FI number range must be external.  Search the forum for this.  It is very useful for the Finance people.
    Kind regards
    Dawn
    Edited by: Dawn Verrell on Sep 9, 2010 4:10 PM

  • Delivery note from sale order

    Hi all,
    While trying to create a delivery note against sale order in VL10G, the message "only 0 ea of  material XXX available".    In stock material quantity is available.  The material has some reservations against it.  Will this be resulting in not creating delivery note. 
    Regards
    sappy

    Hello,
    Is your material stock against order ie restricted to specific order  or is it make to stock ie in Unrestricted.
    Please check the availability check in sales order. It will show if any delivery is created but not done PGI. Either delete that delivery & then you will be able to create the delivery for this order.
    Let me know if the problem still continues.
    Thanks

  • Create Billing Document from Sales Order (Without Delivery)

    Dear Experts,
    Pls note, presently we are creating Billing Document (VF01) from Outbound Delivery Number after Post Good Issue. All sales Document like Billing Document, Output Type, Invoice Type has been configured for this process and we are doing this without any error. Fyki, we have configured lots of Z Order, Billing & Delivery type to do this processes.
    But for one of this order type we need not do any delivery. We want to create Billing Documents from sales order directly (without doing any Outbound Delivery).
    So, would u pls advise the steps how can we configure and assign Order Type, Billing Type or any other type  to meet above requirement.
    Thanks in advance.
    Best Regards.
    Ripon

    Hi
    There are two most important configuration:-
    1) In VOV8 for your Order Type maintain the Order Related Billing Document
    2) Maintain the Copy control setting in VTFA betwwen your Order Type and billing Type.
    Also note that if your line item is not require to be delivered then for your Item category maintain (in VOV7) not relevant for delivery and not relevant for scedule line.
    Regards
    Amitesh Anand
    Edited by: Amitesh Anand on May 24, 2010 5:09 PM

  • Outbound delivery document from Sales order

    Hi ,
    While creating the outbound delivery document from Sales order, all the line items of the Sales order are populated in the Delivery document. The line items where stock is not available, the line is still populated in the delivery document with zero quantity.
    Pls suggest the way in config, so that at the time creation of the delivery document system to populate only the lines with the available stock.
    Thnx

    Hello Soumya
    I could not able to find any std transaction or config via you could restrict it. However you also no till 'Picking' not completed user is not able to make postings... so i couldnt see any issue in this.
    Still you need to restrict this, you to configure User Exit via you can restrich the lin items to come in delivery for no stock item.
    Amol

  • Error while creating delivery for STPO

    Dear ALL,
    I am facing the following error while creating delivery based on the purchase order.
    """"Essential transfer parameters are missing in record""""
    Pls help me how can I proceed further.
    RGds
    Babu

    Hi
    What is the document type for the purchase order ? It seems that we may take wrong PO number in delivery creation

  • Heap space error while creating XML document from Resultset

    I am getting Heap space error while creating XML document from Resultset.
    It was working fine from small result set object but when the size of resultset was more than 25,000, heap space error
    I am already using -Xms32m -Xmx1024m
    Is there a way to directly write to xml file from resultset instead of creating the whole document first and then writing it to file? Code examples please?
    here is my code:
    stmt = conn.prepareStatement(sql);
    result = stmt.executeQuery();
    result.setFetchSize(999);
    Document doc = JDBCUtil.toDocument(result, Application.BANK_ID, interfaceType, Application.VERSION);
    JDBCUtil.write(doc, fileName);
    public static Document toDocument(ResultSet rs, String bankId, String interfaceFileType, String version)
        throws ParserConfigurationException, SQLException {
            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
            DocumentBuilder builder = factory.newDocumentBuilder();
            Document doc = builder.newDocument();
            Element results = doc.createElement("sims");
            results.setAttribute("bank", bankId);
            results.setAttribute("record_type", "HEADER");
            results.setAttribute("file_type", interfaceFileType);
            results.setAttribute("version", version);
            doc.appendChild(results);
            ResultSetMetaData rsmd = rs.getMetaData();
            int colCount = rsmd.getColumnCount();
            String columnName="";
            Object value;
            while (rs.next()) {
                Element row = doc.createElement("rec");
                results.appendChild(row);
                for (int i = 1; i <= colCount; i++) {
                    columnName = rsmd.getColumnLabel(i);
                    value = rs.getObject(i);
                    Element node = doc.createElement(columnName);
                    if(value != null)
                        node.appendChild(doc.createTextNode(value.toString()));
                    else
                        node.appendChild(doc.createTextNode(""));
                    row.appendChild(node);
            return doc;
    public static void write(Document document, String filename) {
            //long start = System.currentTimeMillis();
            // lets write to a file
            OutputFormat format = new OutputFormat(document); // Serialize DOM
            format.setIndent(2);
            format.setLineSeparator(System.getProperty("line.separator"));
            format.setLineWidth(80);
            try {
                FileWriter writer = new FileWriter(filename);
                BufferedWriter buf = new BufferedWriter(writer);
                XMLSerializer FileSerial = new XMLSerializer(writer, format);
                FileSerial.asDOMSerializer(); // As a DOM Serializer
                FileSerial.serialize(document);
                writer.close();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            //long end = System.currentTimeMillis();
            //System.err.println("W3C File write time :" + (end - start) + "  " + filename);
        }

    you can increase your heap size..... try setting this as your environment variable.....
    variable: JAVA_OPTS
    value: -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m

  • Budget error while creating delivery from sales order

    hi Gurus,
    System is throwing error PB603 "Item 004 WBS element ABC-XXX budget exceeded" while creating delivery from sales order.
    I am picking material from unrestricted plant stock (not in project stock).
    I am also confused as sales order has 3 line items & error shows Item 004 !

    Hi Kuldeep,
    Check this note,
    Note 159387 - Message BP603: incorrect line item is displayed
    Its valid only till 4.6. Might give you some idea but.
    Regards,
    Gokul

  • Shipping point error while creating delivery for subcontracting order

    Hi,
    I am trying to send Materials Provided to a Subcontractor via an SD Delivery using std SAP functionality using IDES preconfigured system.
    In transaction ME2O, while creating delivery, i am facing following error:
    Essential transfer parameters are missing in record:  000002
    The dignosis gives following details.
    Diagnosis
    Information necessary for this delivery is missing.
    Please help to sort out the problem.
    Regards
    SAmeer

    Hi Sameer
    please check OSS notes 102104 for detail help about this error.
    regards
    Srinivas

  • Error while creating delivery docuemnt

    Hello Friends,
    I have scenario of scrap sale, i have created metal sheets as a scrap material & created a sales order
    now while creating delivery with VL01N i am getting following error:
    Copying is not poss.because an entry is missing in Table TVCPL: ZOR ZLF &
    Copying is not poss.because an entry is missing in Table TVCPL: ZLF ZOR TAW
    Please guide me how can i proceed in this aspect.
    Thanking you in anticipation.
    Best Regards!
    Sadanand

    Dear Sadanand
    While creating your new order type in VOV8 itself (in your case ZOR copied fron OR) there will be a dialogue box from the system is this entry relevent for copy controls
    Have you given no there?
    Similarly While creating your new delivery type in OVLK  itself (in your case ZLF copied fron LF) there will be a dialogue box from the system is this entry relevent for copy controls
    It looks like you have said a no there
    Please delete your ZOR from VOV8 and log out of SAP and relog after 1 minute copy all relevent settings correctly
    While creating order type itself if you mention that this is relevent for copy controls  there is no need to go to VTLA at all automatic updation in VTLA will happen for your new order types
    This will help you
    Regards
    Raja

  • Licence issue in the delivery not in sales order

    Dear SD Experts,
    I am facing one differnt issue please check this if you have faced any time.
    In sales order licence is redtermined perfectly with having any problems for Four line items
    In the delivery also created 4 lines but if we check in the license log 2 new line items added and not triggerd ... in this case how we can sort out this issue, please tell me.
    This screen shot from delivery document level from Export licence log
    I assume while creating delivery document with packing for one material batches segrigated
    And in delivery XYZ Material batches like below given  .....Batch 123,456
    so due to batch problem i am getting this issue.
    I assume this.but batches are not expired here ....why this legal issue is raising here

    Dear Santosh Kumar
    Please Find below error in we02 for IDOC
    Item 90002 Cant copied due to legal control
    Item 90001 Cant copied due to legal control
    Message no VL400
    Please any one could you help me
    I have checked one link in this they have mentioned if export licence data problem is there not able to create delivery but in my case delivery done but IDOC issue is there.
    Allready in copy control 101 Routine maintained.
    Please check this screen shot

  • Texts to send to delivery team from sales order

    Hi Gurus,
    We have a requirement here to send delivery or packing instructions from sales order. we want to send those instructions in advance to delivery team as soon as we save the sales order. it should trigger as an e-mail message to a delivery team stating that material X needs packing material Y, and Material Y need to be ordered so that they can get ample of time to arrange the Material Y before material X is available to be despatched.
    Please give me some suggestions to configure this in SAP.
    Thanks in advance.
    Regards,
    Nathan.

    Hi jones
    Its a simple solution, First of all create text in your sales order say ZDEL type. While saving your sales order enter the requirement need to send to del. team.
    2) define one new output type (through output determination) and assign that to your sales order type.
    3) Create a Z table which will maintain sales Area, plant for delivery team along with e-mail id. Or make fields as per yiur requiremnt.
    Give the requirement to your ABAP team such that when we save the sales order that output should trigger with text present in sales order againt text id ZDEL to the email id prsent in Z table.
    try and revert
    NOTE: I hope you know output determination and text determination

  • Update Termination Error while creating Delivery

    Hello Experts,
    I am trying to create delivery with reference to Standard Order when I click on SAVE I am getting message that delivery is being created. But when I am trying to open the same delivery in change mode I am getting Update termination Error saying delivery not created.
    So what I tried doing is while creating delivery I have given Picked quantity and done with PGI then i am able to save the Delivery successfully and table LIKP is also updated. But this is not always that I can do. In my production system, without doing PGI I should able to save Delivery.
    Please could anybody help me on this ..is there any SAP notes?
    PS: My system is upgraded from ECC 6.0  Ehp2 to ECC 6.0 Ehp7.
    Many Thanks in advance.
    Priyanka J.

    Hello Kiran, Hello Klaus,
    Below are the details;
    Function Module   
    RV_DELIVERIES_SAVE
    Status            
    Update was terminated
    Report            
    LV50UF0L
    Row               
    50
    Error details   Class:
    00    
    Number:
    671
    Internal session terminated with a runtime error POSTING_ILLEGAL_STATE
    MENT (see ST22)

  • Error while creating "RETURNS" as ERP Sales transaction type

    Description: We are getting error while creating ERP SLO type "Returns-ZRE". Message prompts as "Creation of ERP Transaction failed". We do not get the message for other order types for example "Standard order".
    Please suggest. Please note that this is an ERP sales order in CRM UI not a CR< sales order.
    Thanks
    Shree

    Is this only for a particular order type?
    As stated above this can be to do with user authorisations or the trusted RFC set up. Some things to check are:
    - ST22 dumps in ECC
    - ST01 authorisation trace for the user in ECC
    - Trusted RFC connection set up

Maybe you are looking for

  • Grid lines on excel sheet

    HP Officejet j4550 All-In-One does not print all of the grid lines on my excel document. I have downloaded driver and updates with no results. I am on Windows 7 32 bit. What's next???

  • I uninstalled MacScan, but it still asks me to renew. How can I fully uninstall programs?

    It appears MacScan is still hanging around, and does seem to slow my Safari response times, and I want to completely delete it.  Dropping it in trash didn't seem to completely remove it.

  • How can I change the email address used to authorize my computer?

    I borrowed ebooks from a public library using a different email address which I should have used to authorized my computer hosting the adobe digital edition. Is there a way to modify the email address used to authorize my computer as I get an error m

  • Upgrading from 4.6C to Enterprise 4.70

    Looking for high level documentation / presentation with regard to functionality / pitfalls when upgrading from 4.6C to Enterprise 4.7 which can be used to demonstrate to my client.

  • Videos won't play. Do I need the Plugin?

    PC_1: IE, Win_7: able to play videos On: Komando.com, Yahoo.com, Hulu.com. unable to play videos on: ConsumersReport.com, Amazom.com, MSN.com, and get message to download "Adobe Flash Player". Downloaded the latest Adobe Flash Player, 2 x's, and  bel