Error: Schema to be handled does not contain a defintion of type

When I import a xsd file to create a data type in the integration repository, I am getting the error "schema to be handled does not contain a defintion of type <name_of_the_Data_Type>.
Any ideas
Thanks a lot in advance.
--Kumar

I am briging some vendor information from R3 system to XI thru IDOC. The IDOC Type is "CREMAS.CREMAS01".
I am able to import this into Integration Repository in XI. XI is translating this into XML.
Now insted of creating data types manually, I would like to export this XML into XSD and import into the data type.
When importing this XSD into data type I am getting this error message.

Similar Messages

  • Schema to be handled does not contain a definition of type Order

    Hi,
    I am getting the error 'Schema to be handled does not contain a definition of type Order'
    when i tried to import an XSD to create a data type in Integration repository. I checked my XML with the XML SPY and it is vallid.
    Am i missing something? How can i import an XSD to create a datatype.
    Regards,
    Sharadha

    Hi,
    Make sure the datatype name and the main element name in the external xsd is same.
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="..." targetNamespace="....">
    <xsd:complexType name="Activate">
    Also check this link same problem
    Schema to be handled does not contain a definition of type Activate
    Error: Schema to be handled does not contain a defintion of type
    Re: Calling Idoc structure in creating Data Type
    Re: How to import  XSD?
    Please reward points if it helps
    Thanks
    Virkanth

  • Schema to be handled does not contain a definition of type Activate

    I am trying to create a new datatype called Activate based on an xsd file and this is the message I get ... 
    "Schema to be handled does not contain a definition of type Activate"
    Anyone have any ideas why I can't use any of my external definitions in my mapping??

    Hi Andrew,
    There are errors in your XSD :
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    <xs:element name="envelope">
    <xs:complexType>
    <xs:sequence>
    <xs:element ref="header"/>
    <b><xs:element ref="body"/></b>
    </xs:sequence>
    <xs:attribute name="version" use="required" type="xs:NMTOKEN"/>
    </xs:complexType>
    </xs:element>
    <xs:element name="header">
    <xs:complexType>
    <xs:sequence>
    <xs:element ref="manifest"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <b><xs:element name="manifest"></b>
    <xs:complexType>
    <xs:sequence>
    <b><xs:element ref="authentication"/></b>
    <b><xs:element ref="taxonomy"/></b>
    </xs:sequence>
    </xs:complexType>
    (1)There is no reference named <b>'body', 'authentication' and 'taxonomy'</b>
    (2)It should be closed (either by <b><xs:element name="manifest"/></b> or <b></element></b> )
    Hope this will help you.
    Regards
    Suraj

  • Schema to be handled does not contain a definition of type SODetailResponse

    I am creating a new data type named SODetailResponse
    and I get an error trying to import xml schema. I used XMLSpy and Business Connector with the schema and had no problems.
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    <xs:element name="SODetailResponse">
         <xs:complexType>
              <xs:sequence>
                      <xs:element name="Items" maxOccurs="unbounded">
                              <xs:complexType>
                       <xs:sequence>
                        <xs:element name="SalesOrder" type="xs:string"/>
                        <xs:element name="SalesOrderLine" type="xs:string"/>
                        <xs:element name="CustomerName" type="xs:string"/>
                        <xs:element name="MaterialNumber" type="xs:string"/>
                        <xs:element name="Description" type="xs:string"/>
                        <xs:element name="RequestedDate" type="xs:string"/>
                        <xs:element name="OrderedQty" type="xs:string"/>
                        <xs:element name="UOM" type="xs:string"/>
                        <xs:element name="BackOrderQty" type="xs:string"/>
                        <xs:element name="NetPrice" type="xs:string"/>
                        <xs:element name="Currency" type="xs:string"/>
                        <xs:element name="PriceUOM" type="xs:string"/>
                        <xs:element name="BinLocation" type="xs:string"/>
                        <xs:element name="ReasonForRej" type="xs:string"/>
                        <xs:element name="ItemCat" type="xs:string"/>
                        <xs:element name="CustomerNumber" type="xs:string"/>
                        <xs:element name="ConfirmQty" type="xs:string"/>
                        <xs:element name="HighLevelItem" type="xs:string"/>
                        <xs:element name="SchedBillFlag" type="xs:string"/>
                        <xs:element name="ConsBilling" type="xs:string"/>
                        </xs:sequence>
                        </xs:complexType>
                            </xs:element>
              </xs:sequence>
         </xs:complexType>
    </xs:element>
    </xs:schema>

    Hi,
    I am sorry i forgot to tell you the corrections i made to ur xsd. follow the bold font
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://natoil.com/xi/XI/JohnTest">
    <b>
    Replace the following two lines with third line
    <xs:element name="SODetailResponse">
    <xs:complexType></b>
    <b><xs:complexType name="SODetailResponse"></b>
    <xs:sequence>
    <xs:element name="Items" maxOccurs="unbounded">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="SalesOrder" type="xs:string"/>
    <xs:element name="SalesOrderLine" type="xs:string"/>
    <xs:element name="CustomerName" type="xs:string"/>
    <xs:element name="MaterialNumber" type="xs:string"/>
    <xs:element name="Description" type="xs:string"/>
    <xs:element name="RequestedDate" type="xs:string"/>
    <xs:element name="OrderedQty" type="xs:string"/>
    <xs:element name="UOM" type="xs:string"/>
    <xs:element name="BackOrderQty" type="xs:string"/>
    <xs:element name="NetPrice" type="xs:string"/>
    <xs:element name="Currency" type="xs:string"/>
    <xs:element name="PriceUOM" type="xs:string"/>
    <xs:element name="BinLocation" type="xs:string"/>
    <xs:element name="ReasonForRej" type="xs:string"/>
    <xs:element name="ItemCat" type="xs:string"/>
    <xs:element name="CustomerNumber" type="xs:string"/>
    <xs:element name="ConfirmQty" type="xs:string"/>
    <xs:element name="HighLevelItem" type="xs:string"/>
    <xs:element name="SchedBillFlag" type="xs:string"/>
    <xs:element name="ConsBilling" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    <b>Remove this line </xs:element></b>
    </xs:schema>
    <b>Following is the xsd with all the above changes use this</b>
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://natoil.com/xi/XI/JohnTest">
    <xs:complexType name="SODetailResponse">
    <xs:sequence>
    <xs:element name="Items" maxOccurs="unbounded">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="SalesOrder" type="xs:string"/>
    <xs:element name="SalesOrderLine" type="xs:string"/>
    <xs:element name="CustomerName" type="xs:string"/>
    <xs:element name="MaterialNumber" type="xs:string"/>
    <xs:element name="Description" type="xs:string"/>
    <xs:element name="RequestedDate" type="xs:string"/>
    <xs:element name="OrderedQty" type="xs:string"/>
    <xs:element name="UOM" type="xs:string"/>
    <xs:element name="BackOrderQty" type="xs:string"/>
    <xs:element name="NetPrice" type="xs:string"/>
    <xs:element name="Currency" type="xs:string"/>
    <xs:element name="PriceUOM" type="xs:string"/>
    <xs:element name="BinLocation" type="xs:string"/>
    <xs:element name="ReasonForRej" type="xs:string"/>
    <xs:element name="ItemCat" type="xs:string"/>
    <xs:element name="CustomerNumber" type="xs:string"/>
    <xs:element name="ConfirmQty" type="xs:string"/>
    <xs:element name="HighLevelItem" type="xs:string"/>
    <xs:element name="SchedBillFlag" type="xs:string"/>
    <xs:element name="ConsBilling" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    Naveen

  • Error 1074395241: The template descriptor does not contain data required for rotation-invariant matching.

    Hello all,
    I am using the IMAQ Match Pattern 4 to detect the rotation angle of a template image. However, it shows the error: "Error 1074395241: The template descriptor does not contain data required for rotation-invariant matching." What is the problem exactly? How to solve this? The details are explained below.
    My project is a little bit complicated. Part of the block diagram containing the IMAQ Match Pattern 4 is shown below:
    The source image is a series of frames of images read from an AVI video (I used a for loop to process the images frame by frame). The template image is a selected region of the first frame. So it means, the user selected the object of ineterst in the first frame of the video, and in each of the following frames, we need to find the matched object of interest & determine its rotation angle. When I run the block diagram shown above, it does not have any error. However, it shows the rotation angle as zero no matter what it "really" is. Therefore, I changed the block diagram by adding the parameters, shown below:
    But in this case, when I run it, it shows the error that I have indicated in the subject line.
    If you need more details about my project to identify the problem, please let me know.
    Thanks in advance.
    Solved!
    Go to Solution.

    -Please go through pattern matching example which comes along with labview fiirst
    Go to labview Help>>Find Examples and you can search for example.
    -You have create template with angle range and what type of pattern matching you want use.
    -For this you have to use IMAQ Learn Pattern before using IMAQ Match Pattern 4
    Refer :http://zone.ni.com/reference/en-XX/help/370281U-01/imaqvision/imaq_match_pattern_4/
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

  • How to fix xcodebuild error: The directory /Users/SmilingTornado/ does not contain an Xcode Project

    I am trying to fix my bash but the error: "xcodebuild error: The directory /Users/SmilingTornado/ does not contain an Xcode Project" means that I cant continue to recompile my bash so I have not started the process of patching yet

    OS X bash Update 1.0 – OS X Mavericks

  • Exception calling "Activate" with "0" argument(s): "Topology does not contain any components of type Microsoft.Office.Server.Search.Administration.Topology.AdminComponen

    Hi,
    I have a Sharepoint 2013 farm I am trying to provision search for (not the same as my other thread). However, I get the below error:
    Exception calling "Activate" with "0" argument(s): "Topology does not contain any components of type Microsoft.Office.Server.Search.Administration.Topology.AdminComponent"
    In my script, I have the following:
    New-SPEnterpriseSearchAdminComponent -SearchTopology $clone  -SearchServiceInstance $SearchServiceInstanceServer3 -ErrorAction SilentlyContinue
    So I am not sure why the error happens, when I am trying to set this component. However, it's not the first component to be set (index partition on non-local servers first). I can make it first, but why does this error happen?
    UPDATE: I have noticed that the usage and health proxy on my farm is/was stopped, but I am not able to access the server(s) to look at this right now. Could this cause this issue?

    Do you already have Admin component running for the Search Service Application?
    Usage and Health Service will not cause this issue.
    Please also refer to below discussion to see if it helps:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/02f0b072-aa3a-4b7f-9662-2caf373d1e57/setspenterprisesearchtopology-identity-newtopology?forum=sharepointgeneral
    Warm Regards,
    Bhavik K Jain
    Sr. Software Engineer - SharePoint Administration
    Please vote if my reply helps and ensure that you mark a question as Answered once you receive a satisfactory response.

  • Get an Error window, The source folder does not contain any supported camera raw files

    I am using CS2 and it would not open up my latest RAW files, I was getting a warning Could not complete your request because it is not the right kinds of document. So, I checked the Camera Raw Plug-in and it says Version 3.7. I see that my camera an Olympus E-20 is supported. But it is not opening the Raw files, the day before I took jpeg and they have opened. I will not trash my Adobe Photoshop CS2 because it was a royal pain to install and I don't know where the CD is.
    I installed the latest DNG Converter and when I try to open up the folder which has all the RAW images that didn't open in Adobe, I still get an Error window that says, "The source folder does not contain any supported camera raw files." Why? It says it supports my Olympus E-20. I actually have the E-20n, I don't think that is the problem. My RAW icons usually show up as small image thumbnails and this time they are gray icons only with the incorrect date under the icon. Is there another product I can use without spending money? These images I took in RAW were special and I don't want to lose them. Please help!
    Esther

    Hello, I was using only CS2 with my Olympus E-20n for 5 years, no problem. It just started acting up in RAW this year. I downloaded Picasa that same day and now it seems to be opening up all of my RAW files that didn't open the other day. So, I think Picasa installed a new plug-in adaption to CS2 because now all my RAW icons have a new logo on them, the same one that's in Picasa. Strange, but it works now and I am not complaining anymore. I love CS2 and the many ways I can adjust RAW files, so I am using it, Picasa is a sideline now that I can take a look at many thumbnails and it organized all my photo files by the year and folders. Amazing free software. I have probably 60,000 images in my computer and an external hard drive and Picasa picked them all up and made a library, cool.

  • Error msg after scan "ADF does not contain any pages"

    HP office jet 6600 has worked well for months, but recently 3 out of 5 times that I tried to scan from the ADF, whether one page or many, the scanner runs through its cycle and then gives me the following error: “The scanner automatic document feeder (ADF) does not contain any pages. Insert the pages to be scanned into the ADF and try again.”
    Sometimes I just run it again and it works. I'm using HP scan that came with the 6600 download full driver package; running Windows 7 64-bit. I use the scanner significantly and it has operated perfectly for over a year and I haven't changed anything that I know of.Appreciate any help that somebody can give me… I have cleaned rulers and "flicked the little white thing", and some of the other things that were mentioned for similar problems.

    Hello  I would be happy to help you with the automatic document feeder (ADF)  issue you are having with the Officejet 6600. Even though it's a different issue this document has several steps you can try; Vertical Bands, Lines, or Streaks in Copies, Faxes, or Scans. I've copied the applicable steps here for you. Clean the scanner glass and scanner lid If the scanner glass or the white underside of the lid has fingerprints, smudges, lint, dust, or other debris, this can slow performance and affect copy and scan quality. To resolve this issue, clean the product.Before you begin, gather the following materials:Several clean, soft, lint-free clothsMild glass cleaner
     CAUTION:Use only glass cleaner to clean the scanner glass. Do not use cleaners that contain abrasives, acetone, benzene, or carbon tetrachloride. These substances can damage the product. Avoid isopropyl alcohol (rubbing alcohol) because it can leave streaks on the glass.Press the Power button () to turn off the product.Disconnect the power cord from the rear of the product.Lift the scanner lid.
    Figure : Lift the scanner lid
    Spray a clean, soft, lint-free cloth with mild glass cleaner.
     CAUTION:To protect the scanner, do not spray the glass cleaner directly on the glass.Clean the scanner glass, and the glass strip next to the scanner glass, with the lint-free cloth.
    Figure : Clean the scanner glass and the glass strip
    Clean the white underside of the scanner lid.
    Figure : The underside of the scanner lid
    Dry the scanner glass and the glass strip thoroughly with a clean, dry cloth or chamois to prevent spotting, and then dry the white underside of the scanner lid.
     NOTE:Do not use paper-based wipes or tissues that can leave fiber residue.Close the scanner lid.Reconnect the power cord to the rear of the product.If the product does not turn on by itself, press the Power button () to turn it on.Try to copy, fax, or scan again.If these steps resolved the issue, you do not need to continue troubleshooting.If the issue persists, continue to the next solution.
    Clean the automatic document feeder (ADF)
    Follow these steps to clean the automatic document feeder (ADF), and then make blank copies to check if the issue is resolved.Step one: Clean the ADF rollers and separator padFollow these steps to clean the automatic document feeder (ADF).Gather the following materials:A clean, lint-free cloth, or any cloth that will not come apart or leave fibersDistilled, filtered, or bottled water (tap water might damage the product)Remove any originals from the document feeder tray.
    Figure : Remove any originalsPress the Power button () to turn off the product.Disconnect the power cord from the rear of the product.Lift the cover of the ADF until it stops.
    Figure : Lift the ADF cover
    Locate the pick rollers and the separator pad.
    Figure : Locations of the pick rollers and the separator pad
    The ADF coverThe pick rollersThe separator padLightly dampen a clean lint-free cloth with distilled or bottled water, and then squeeze any excess liquid from the cloth.Use the damp cloth to wipe any residue off of the separator pad.
    Figure : The separator pad
    Use the damp cloth to wipe any residue off of the pick rollers.
    Figure :
    Dry the rollers and the separator pad with a clean, dry, lint-free cloth.Do not close the ADF cover. Continue to the next step to clean the glass strip in the automatic document feeder.
    Clean the glass strip in the automatic document feeder
    Follow these steps to clean the glass strip underneath the mechanism in the automatic document feeder (ADF).
     NOTE:The images in this step might not be of your product, but the steps are the same.If you have not done so already, disconnect the power cord from the rear of the product.Remove any originals from the document feeder tray.
    Figure : Remove any originals
    Open the ADF cover, and then lift the ADF mechanism.
    Figure : Lift the ADF mechanism
    Lightly dampen a clean, soft, lint-free cloth with a mild glass cleaner.Gently clean the glass strip inside the ADF, and then thoroughly dry it to prevent spotting.
    Figure : Clean the glass strip
    Lower the ADF mechanism back into place, and then close the ADF cover.Step three: Make a blank copy using the scannerFollow these steps to make a blank copy using the scanner.Lift the scanner lid.Figure : Lift the scanner lidRemove any originals from the scanner glass.Close the scanner lid.Load unused, plain white paper into the input tray.From the home screen on the product control panel, touch Copy ().Touch Start Black to start the copy.If the copy is clean, continue to the next step to make a copy using the ADF.If the copy has vertical bands, lines, or streaks, there might be dust inside the product, poor internal connections, or the product might be damaged.  Please let me know if these steps resolved your issue, or if there is anything else I can do to help.  I look forward to hearing from you!   Thanks, 

  • Error in deploying, EAR file does not contain SAP_MANIFEST.MF

    I just upgraded to SAP Netweaver Developer Studio 7.1 from 7.0, and the process of creating and deploying an EJB archive seems to be quite different. Here are the steps I am following:
    (1) I create and build an EJB Project called foo.
    (2) Export the EJB Project foo as an EJB JAR (not sure if this is necessary)
    (3) Create an Enterprise Applications project called fooEAR, with target runtime set to SAP server. When I am prompted for J2EE Modules to add, I select foo (created in step (1)).
    (4) Export the EAR project fooEAR as an EAR file. When I am prompted for which EAR application I choose fooEAR.
    (5) Try to deploy the EAR created in (4) using Deploy View -> External Deployable Archives -> Add, then choose the fooEAR.ear as the target. But I get an error message:
    Wrong SDA/SCA archive
    Error while loading archive ...
    Archive has no entry META-INF/SAP_MANIFEST.MF
    I looked inside fooEAR.ear, and there is no SAP_MANIFEST.MF file. How can I create an EAR that has such a file ?

    Hi Ivaylo,
    to answer your first question, the EAR that I am trying
    to deploy gets created as part of the publish step. When
    I look in the application.xml file of this EAR I see a
    version attribute with value of 1.4 in the application
    tag, can we assume that this implies J2EE 1.4 compliancy?
    One thing about this generated EAR is that it does not
    include any java code (VM or otherwise). When I generate
    the EAR by hand (by exporting the EJB project as an EAR
    file there is a JAR for the actual java code put in
    there, but when generating the EAR via publish there is
    only some xml and manifest stuff put in the EAR, with the
    result that it's only 2KB or so in size. I have specified
    a J2EE module dependency from the Enterprise Application
    project to the EJB project, but is there something else I
    need to do to ensure that the java code (jar) gets
    included in the EAR of the Enterprise Application when
    attempting to deploy via publish?
    Thanks for the other suggest, "Import J2EE Archive".
    However, I am having difficulty locating this button.
    When I look at the "Deploy View" window I see on the left
    the Workspace and External Deployable Archives trees,
    and on the right there are "Setting for Updating
    SCAs/SDAs" radio buttons, as well as "Error Strategy"
    radio buttons, but no "Import J2EE Archive" button.
    Thanks for the info about SDM by the way, I was wondering
    why I was not able to launch it (there is still a remote
    gui shortcut, which should probably go away).

  • Error VF198 " The billing item does not contain a quantity"

    Dear colleagues,
    When I try to bill a sales order with a billing plan, I get this error message in the log at the time of invoice creation.
    The billing plan itself consists of a line with date, value and other rules for downpayment and another one for the closing invoice.
    The materials have prices and confirmed schedule line quantities in the sales order. Dates and values get copied from the billing plan and everything seems to be in order.
    I get this message once in a while, not every time, but the investigations so far have been to no avail.
    Thank you very much in advance for your suggestions!
    Regards,
    Miro

    Hi
    I request you to kindly check with your technical team,why it is happening sometimes.So check wheather the copy controls,billing plan has been set correctly or not.
    Regards
    Srinath

  • Infopack Error ( does not contain alpha conforming value 10)

    When I try to run my infopack which pulla data from BW into APO, the data load fails with the error below:
    "InfoObject /BIC/XXXX does not contain alpa-conforming value 10"  when I click on the details icon, I get the following description.
    Can somebody please throw some light on this as I am new to DP/BW. Appreciate your help if someone can help me with fixing this problem.
                                                                                    Diagnosis                                                                               
    The system checked whether the loaded InfoObject value conforms to the   
         conversion exit.The check failed.                                                                               
    For example:                                                                               
    The value '1' was loaded into an InfoObject with alpha exit, even though 
         the value '0000000001' was expected.                                                                               
    System response                                                                               
    The load process has failed or the erroneous records are displayed in    
         the monitor. This does not depend on how error handling is set up.                                                                               
    Procedure                                                                               
    Find out why the data does not conform to the conversion exit, and, if  
         possible, correct the cause. Possible causes are errors in Business     
         Content or an error in a customer exit in the source system.                                                                               
    If you cannot correct the problem, you have the option of removing the  
         conversion exit on the InfoObject. However, since the system has already
         been converted, duplicates appear in the system again.                  
    Thanks
    Varun

    Hello Varun,
    BW expects your Key Figures to be stored in "alpha conforming format". This is can be roughly described as having 0s in front. For example, if your key figure value is 10, then the alpha conforming value of that is 000000000000000010 (assuming the number of chars in your KF is 18).
    To correct the error do the following:
    In your transfer rule in BW for InfoObject /BIC/XXXX, implement an ABAP routine that calls function module CONVERSION_EXIT_ALPHA_INPUT. Here an example of the ABAP code you should put in your transfer rule for /BIC/XXXX:
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input         = TRAN_STRUCTURE-/bic/xxxx
    IMPORTING
       OUTPUT        = RESULT.
    Hope this helps. Please post again if you have questions.

  • Error remote table does not contain a primary key

    I make replication between oracle and Microsoft sql using getway for sql but when I insert to table in oracle I get this error in apply process
    information :
    ASD.SUBHI.COM is database link from oracle to microsoft sql
    "DBO"."REGIONS" name of the table
    CREATE TABLE regions (a INTEGER primary key) command to create table
    error
    ORA-26711: remote table does not contain a primary key constraint ORA-26712: remote object is "DBO"."REGIONS"@"ASD.SUBHI.COM"
    Note: I go to sql server and verify that primary key is creates
    is this the best place to like this question ?
    if you need more details please tell me I need the answer

    I make replication between oracle and Microsoft sql using getway for sql but when I insert to table in oracle I get this error in apply process
    information :
    ASD.SUBHI.COM is database link from oracle to microsoft sql
    "DBO"."REGIONS" name of the table
    CREATE TABLE regions (a INTEGER primary key) command to create table
    error
    ORA-26711: remote table does not contain a primary key constraint ORA-26712: remote object is "DBO"."REGIONS"@"ASD.SUBHI.COM"
    Note: I go to sql server and verify that primary key is creates
    is this the best place to like this question ?
    if you need more details please tell me I need the answer

  • Error: The folder does not contain a valid Flex Builder Project.

    HI All,
    My first Post here. I am new to Flex Hardly 10 days old. I
    want to open the flexstore project in flex builder 3 and could not
    able to do so.
    What I did: file->import->.... got the error msg as
    "The folder does not contain a valid Flex Builder Project".
    also tried file->import->general->..... same error
    msg.
    I need your Help guys
    I downloaded the sample project from
    http://examples.adobe.com/flex2/inproduct/sdk/flexstore/srcview/index.html
    Thanks in Advance
    SAS
    Text

    "shakeb66" <[email protected]> wrote in
    message
    news:gknbn8$av9$[email protected]..
    > HI All,
    > My first Post here. I am new to Flex Hardly 10 days old.
    I want to open
    > the
    > flexstore project in flex builder 3 and could not able
    to do so.
    > What I did: file->import->.... got the error msg
    as "The folder does not
    > contain a valid Flex Builder Project".
    > also tried file->import->general->..... same
    error msg.
    > I need your Help guys
    > I downloaded the sample project from
    >
    >
    http://examples.adobe.com/flex2/inproduct/sdk/flexstore/srcview/index.html
    Try creating a new Flex project and dragging the files from
    the zip into the
    src folder. You may find that you need to rearrange things a
    bit, depending
    on how they set up the project, but this should get you
    started.
    HTH;
    Amy

  • MIGO error 'Purchase Order does not contain a confirmation control key'

    Hi,
    while posting GR to a PO i am getting an error ' Purchase order XXXXXXXXX does not contain a confirmation control key'
    it is true that i have not defined any confirmation control key in PO, Aknowled rerd checkbox is also not ticked
    Still why this message coming, what setting would be bringing this message
    Please clarity

    Hi,
    Until the installation of Note 589422 (with SP SAPKH46C43) you could  due to a program error - create a delivery even though the purchase order did not contain any confirmation control key.                                                                               
    This is now prevented through error message M7394. The transfer of this check (Confirmation control key existing in the purchase order, see Note 589422) was necessary as otherwise you could post a purchase order as desired. (Refer to also Note 616944 -> SAPKH46C44)
    589422 Several inbound deliveries can be created with MIGO :                                                                               
    "Implement the program correction.                                       
    With Transaction SE91 create message M7394 with the message text:        
    Purchase order & & does not contain a confirmation control key".         
    After you implemented this correction, when you want to create an        
    inbound delivery with Transaction MB01 or MIGO or with                   
    BAPI_GOODSMVT_CREATE and if the purchase order does not contain a        
    confirmation control key the system displays error message M7394         
    "Purchase order & & does not contain a confirmation control key".                                                                               
    Hope this can explain the error you met.
    Regards,
    Mauro

Maybe you are looking for

  • Move settings from one computer to another

    I am migrating to a new computer and want to take some of the custom settings I have made with me. I have already moved the compressor settings. That was easy - I just copied the 'Settings' folder from the library on the old computer to the new one.

  • Hashed table in Table view

    Hi friends   Can i use a hashed table in table view of htmlb. I tried it and i get the error <b>500 SAP Internal Server Error Error message: Type conflict in the ASSIGN statement in the program CL_HTMLB_TABLEVIEW============CP . ( type of termination

  • AirPlay Mirroring Issue

    Hi, Can anyone assist in advising how I can get my airplay mirroring icon to appear again in the top menu bar of the macbook pro?  I've updated software on both apple tv and macbook pro. Both devices are connected to the same network. I know it works

  • Problem about getAccessibleContextAt and get info of invisible contents

    Nowadays I am studying on how to use java access bridge API,Actually I have worked out some codes to successfully getting information of visible contents of java application. I can use GetAccessibleContextFromHWND and getAccessibleChildContext to tra

  • Livecache on different clients

    Hi, I am using APO for two different clients. It is working fine for the original one, but I am having different issues (see below) when I CIF the transtactional data. What should I consider for Livecache being shared on different clients? Issues - M