Error while creating work order from purchase order

Dear All,
We are having a subcontracting scenario where we are creating a Work order from PO but getting the below error.
Error - "No master data assigned to partners-locations-product combination."
Done all the setting mentioned in the below thread but the error still persist.
Error in Generating Work order from Purchase Order
Any suggestions on which master data we need to check?
Thanks,
mahesh.

Hi Mahesh
In the below transaction
/SCA/MFGCFG - Work Order Configuration
Can you maintain Master data Assigment properly
Valid From
Valid To
Active---Checked
Can you please list what you maintained
Regards
Vinod

Similar Messages

  • 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

  • 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

  • Error while creating Work Order

    Hello Experts,
    I am getting below error while creating work order via add-on named beas but the error seems to coming from SBO.
    Please advise.
    Thanks
    Deepak

    Hi,
    Plz check this thread:
    What does this error mean?

  • Error while doing outbound delivery against Purchase Order

    hello
    i m getting error while doing Outbound delivery for purchase order as follows
    EKPO-SOBKZ=E; EKPO-UMSOK=_; EKPO-KZBWS<>_ EKPO-KZVBR<>E (Note 305582) not supported (check your entry)
    Message no. M7146, i m not getting wht will be the reason,
    Regards
    NISHJ

    Please go through the note - 305582. It is clearly given the direction.
    Symptom
    You try to post a goods movement for a stock transport order from the unrestricted-use stock into the sales order stock or project stock.
    During the goods issue, the system displays error message M7146 with a text along the lines of "EKPO-SOBKZ=E; EKPO-KZVBR<>E; ... not supported".
    Cause and prerequisites
    In the goods issue for the stock transport order, the system may have to create a stock in transit which is deconstructed during the goods receipt. If the withdrawal takes place from the special stock, it is clear which is the receiving stock.
    However, if the withdrawal is carried out from the unrestricted-use stock ("Collective requirements", controlled by the dependent requirements indicator MARC-SBDKZ in the material master of the issuing plant), this results in the design problem that the control tables of the goods movement do not have any key field for the receiving stock. Therefore, the control for the receiving stock is controlled via the consumption indicator in the account assignment category of the purchase order. The consumption indicator therefore requires a specific default setting (you may have assumed you could change the design of these control tables, however this is not possible).
    Using an inappropriate consumption indicator then causes for the goods issue an incorrect or no stock in transit to be created so that the goods receipt fails.
    Solution
    Implement the program change in accordance with the correction instructions.
    Afterwards implement Note 413908 immediately if this is relevant for your release.

  • 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

  • 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

  • Error while doing delievry against Return Purchase order

    HI Experts
    I am getting error "PO NO XXXXXX is incomplete. You cannot save the delivery" while creating delivery against a return order using T code VL10B.
    Please note that I am able to create delivery for one vendor, material & plant combination, but cannot create against another vendor, material and plant combination.
    Please let me know the check points where I can check.
    Thanking you in advance.
    Regards
    Bhavesh Mistry

    Please check the setting in IMG.
    - Logistics Execution->Shipping->Basic Shipping Functions->
      Incompletion Control for Deliveries->Define Incompletion Procedures
    Then, please check in the document according to the incompletion list

  • No update of sales order from purchase order

    Hi,
    When I am trying to change the delivery date of a purchase order line item, I get the error
    "No update of sales order xxxxx from purchase order (error V1 348)" How can I resolve this?
    Sincerely,
    Ketan

    Hi,
    Check whether this PO is created w.r.t. PR and PR is created automatically during Sales order creation.
    If it is so then need no to change the delivery date in PO, it will always get updated as per the Schedule Line date of sales order.
    You can go for GR w.r.t. PO directly.

  • Error while creating work repository

    Hi all,
    I am facing problem while creating work repository in ODI.
    I have successfuly created master repository and also test connection comes out to be succesull for work repository.
    But while i click on OK it gives CREATION error stating
    No data found : \snps_login_security.xml(Access is Denied)
    Thanks and Regards,
    Priyanka

    Hi ,
    u r having Oracle DB......?
    You have the databases and ODI installed in the same machine.....?
    Have u chkd ur databse/schema rigts .....
    can u plz chk on this front .....as well as the user/pw ur using for ur connections.....
    Thanks
    Ananda

  • 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

  • Error while saving a vairant in purchase order- ME21n

    Hai friends,
    While creating/saving a variant in create purchase order transaction(me21n) it is showing the error as " Not all radio buttons from radio button group FUNC were hidden". Can any one help me to fix this problem.
    Thanks
    Hari

    Hi,
    Could you please implement the following sap-notes and restest 
    this issue.                                                                               
    923131  If you start a report w/ variant, radio buttons not hidden  
    962712    DB291 for saving a variant: Radio button group func       
    994798   Error DB 291 when saving variants  
    Thanks
    Best regards
    Erika

  • Add restriction while create item by "Old Purchase Orders and Templates"

    We are consider to add restriction while create shopping cart item by "Old Purchase Orders and Templates".  After implement such restriction, create item by copying old shopping cart item is not allow for particular matereial group number.
    Is there any BADI can be used in our case?  If there is no, could modify HTML template the only solution?
    Regards,
    Donald

    Hi,
    If the restriction is for certain group of people,then you  have 2 options:
    1.Make the link invisible for those group of people by implementing the BADI BBP_SC_MODIFY_UI.In the BADI,first check the user attributes like particular role and based on that make the link invisible.
    2. Assign certain role to the  group of users who should not see the link "Old Purchase order and templates".You can hide this link in the MENU by removing this from the lits of trasctions in that particular role.In PFCG,go in that role and then under MENU tab,remove the entry for "OLD PURCHASE ORDER AND TEMPLATES".
    BR,
    Disha.
    Do reward points for useful answers.

  • Error while doing miro of network purchase order ( no funds center entered/

    Hi,
    we are facing one problem while doing miro of network  service purchase order. System is giving message 'No funds center entered/derived in item 00030'.
    We have activated funds management in Jul'10. The said network service PO belong to previous year. Also we have changed
    commitment item of GL account related to concerned service order in Jul'10 & posted GRN one in apr'10 & one aug'10.
    System is not allowing to cancel the service entry sheet.
    Can anybody help on this.
    regards
    abhishek

    we had activated the trace facility for FMDEIRIVE & found that all FC/Commitment item derived correctly. But while posting the document it is throwing an error.
    Regards
    Abhishek

  • Error while creating ERP Quotation from CRM Opportunity in CRM WebUI

    Dear all,
    We have implemented Best Practise Scenarios but have a problem in the following: C63-Opportunity Management-Creating ERP quotation from opportunity
    I have maintained all necessary customising mentioned in Best practises documnet and could select a quotation(AG) as follow on transaction from Opportunity, but get an error message " Material 23 is not defined for sales org.1000, distr.chan.10, language ENu201D in the ERP quotation screen even though material 23 is created in ERP for Sales Org 1000 & DC 10. I have downloaded the material from ECC and it is available in CRM also.
    The weird thing , when the error message pops up in the ERP quotation screen if I delete the material and enter the same material, I get no error.
    If I have 3 materials in opportunity then the error message is there for all the 3 materials when I create an ERP Quotation & after deleting all the 3 & reentering I get no error and am able to save ERP order.
    We have CRM 2007 connected to ECC 6.0
    Please help resolve the above error.
    Thanks
    Teyna

    hi,
    have you created org from middleware thorugh r/3. Is your hierarchy and category same as that mentioned in best practice documents?
    Regards
    Pankaj kumar

Maybe you are looking for

  • Why is my ipod touch showing that I dont have the software?

    Okay...well I know the question is kind of vague but here it is...My iPod Touch was working fine until I tried to update the software...now it's showing the screen when you first turn your iPod Touch on when you first get it and turn it on (if that m

  • AT SELECTION SCREEN OUTPUT ON VALUE REQUESt problem

    hi I am fetching the values into second field based on first field by reading them like this <b> AT SELECTION-SCREEN ON VALUE-REQUEST FOR ST_NAME.   CLEAR: FIELD_VALUE, DYNPRO_VALUES.   REFRESH DYNPRO_VALUES.   FIELD_VALUE-FIELDNAME = 'EXCH'.   APPEN

  • OS X Mavericks using SWAP with 16GB of physical RAM? What gives?

    Okay. Can someone help me understand why OS X Mavericks is using SWAP and Memory compression when I have 16GB of Physical Memory installed? I'm also only running Safari, Mail.app, Colloquy IRC and iTunes. That's usually the only programs I have open

  • Audio Input to Record Old Tape Cassettes?

    Hello, (Apologies in advance if this is the wrong forum.) I have a MacBook Pro. I have a lot audio cassettes that I would like to digitize. Does any body have suggestions on how to do that? Software apps that work well? I'm new to Apple/Mac and need

  • Dispute case Creation using tcode fbl5n

    Hi .... Could u please explain me about dispute case creation using fbl5n tcode. in my requirement i need to update some custome fields existed in tcode fileds like bank name etc.. while recording m not getting those custom fields are not recoded so