Complex XML - Import Server

Hi,
I have an XML structure as follows:
<Root>
<PartnerNum>123</PartnerNum>
<FName>D</FName>
<Lname>B</LName>
<Address>
<Add1>Address line 111</Add1>
<Add2>Address Line 222</Add2>
<PostCode>Po 1</PostCode>
</Address>
<Address>
<Add1>Address line 333</Add1>
<Add2>Address line 444</Add2>
<PostCode>Po 2</PostCode>
</Address>
</Root>
When I use import manager I can succesfully importby forming Joins (_ID field) between different XML structures... However when I use Import Server exception comes that I cannot use complex structures.
How do I import these kind of structures using Import server?
Regards,
Dev.

Simona,
I am using similar approach - using joins to club multiple segments into one and then using this main one as the source table.
Michael,
Here is the schema as requested:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid XML Studio 6.1.16.0 - FREE Community Edition (http://www.liquid-technologies.com) -->
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
     <xs:element name="BusinessPartner">
          <xs:complexType>
               <xs:sequence>
                    <xs:element minOccurs="0" maxOccurs="unbounded" name="Partner">
                         <xs:complexType>
                              <xs:sequence>
                                   <xs:element minOccurs="0" name="FirstName" type="xs:string" />
                                   <xs:element minOccurs="0" name="LastName" type="xs:string" />
                                   <xs:element minOccurs="0" name="PartnerNumber" type="xs:string" />
                                   <xs:element minOccurs="0" maxOccurs="unbounded" name="Address">
                                        <xs:complexType>
                                             <xs:sequence>
                                                  <xs:element minOccurs="0" name="AddressLine1" type="xs:string" />
                                                  <xs:element minOccurs="0" name="AddressLine2" type="xs:string" />
                                                  <xs:element minOccurs="0" name="AddressLine3" type="xs:string" />
                                                  <xs:element minOccurs="0" name="AddressLine4" type="xs:string" />
                                                  <xs:element minOccurs="0" name="PostCode" type="xs:string" />
                                                  <xs:element minOccurs="0" name="DPS" type="xs:string" />
                                             </xs:sequence>
                                        </xs:complexType>
                                   </xs:element>
                                   <xs:element minOccurs="0" maxOccurs="unbounded" name="ContactDetails">
                                        <xs:complexType>
                                             <xs:sequence>
                                                  <xs:element minOccurs="0" name="ContactType" type="xs:string" />
                                                  <xs:element minOccurs="0" name="ContactInfo" type="xs:string" />
                                                  <xs:element minOccurs="0" name="ContactValidFrom" type="xs:string" />
                                                  <xs:element minOccurs="0" name="ContactValidTo" type="xs:string" />
                                             </xs:sequence>
                                        </xs:complexType>
                                   </xs:element>
                                   <xs:element minOccurs="0" maxOccurs="unbounded" name="EmailAddresses">
                                        <xs:complexType>
                                             <xs:sequence>
                                                  <xs:element minOccurs="0" name="EmailType" type="xs:string" />
                                                  <xs:element minOccurs="0" name="EmailAddress" type="xs:string" />
                                                  <xs:element minOccurs="0" name="EmailValidFrom" type="xs:string" />
                                                  <xs:element minOccurs="0" name="EmailValidTo" type="xs:string" />
                                             </xs:sequence>
                                        </xs:complexType>
                                   </xs:element>
                              </xs:sequence>
                         </xs:complexType>
                    </xs:element>
               </xs:sequence>
          </xs:complexType>
     </xs:element>
</xs:schema>

Similar Messages

  • Complex XML import

    Hello,
    I am faced with the task of importing a rather complex (about 50-60 tables, tree depth about 5-6, data in both attrs and nodes) XML tree into a relational schema (non-nested tables).
    I have understood that the XSU/XMLSAVE is not that fond of attributes and stores sub-types as objects(?) so it's not an "out-of-the-box-solution". Is it worth trying to write XSL for it or should I just read the DOM-tree and iterate over it manually and store it? Are there any other alternatives?
    Thanks in advance,
    -Nik

    Nicklas, do you need to insert into an existing relational schema?
    If not, you could use XML Db's option to create an object-relational schema based on the XML-schema definition of your XML.
    Load your xml-document into the XML-type table and the data gets loaded in the underlying object-relational schema. You can define vies on this object-relational schema for simple access.
    Btw., if yes, then you could do the same en use simple SQL to move you data to the final tables.

  • "Source file does not conform to XML Schema!" error at Import Server

    Dear SDN,
    When I run Import Server the import job stopped with the error "Source file does not conform to XML Schema!" in Log file. I used MDM SP05 Patch01 and HF1.
    Both of 2 Import Server have same problems. Of course it works in Import Manager.
    What do I have to check?
    Regards,
    Eric

    Hi Eric
    Just confirm this...
    One needs to load XML schema file in MDM and can be done by specifying this file in Port .
    Refer this link.
    http://help.sap.com/saphelp_mdm550/helpdata/en/fa/69b20ae0ae4b158a3f6d025b3d3847/content.htm
    Just make sure that corresponding XSD file is specified in the port
    Regards

  • Import/Export Large Complex XMl files(700MB) to MySQL tables

    Am creating an application that will be mporting large and complex XML file in the range of 500-1000MB size. An xml ile wil have 5-6 levels of xml tags where the first tag will be the client account configuration e.g name, location, address, the second will be orders made, the third will be order items, fourth will be item defination...etc. The following is a sample structure of the file.
    <mycompany_sales> <customer name="me">   <location country="Kenya">     <town>nairobi</toen>     <order id="20000" date="2008-09-08">         <item id="4000">             <stock>2000</stock>           <buying>300.0</buying>       </item>       ........       <total>5000</total>   </order>   .............. </location> </customer> ........... </mycompany_sales>
    Because of the size, if i process this file using DOM it will result to out of memory error. I have tried parsing with SAX but it takes about 18 hours to process which is not ideal. If i import this data to Microsoft Access it takes about 10 minutes to import including it's relationship. i.e. creates the six tables and the foregin key relations.
    I tried using XML-DBMS package but since it relies on DOM, it cant process. Does anyone know of a package that would help me import this data to any JDBC databse and also recreate the same structure of xml from the jdbc db. It would also be ideal if it can create sample map file during import and export.
    Thanks in advance,
    Simon K.

    kagara wrote:
    I tried using XML-DBMS package but since it relies on DOM, it cant process. Does anyone know of a package that would help me import this data to any JDBC databse and also recreate the same structure of xml from the jdbc db. It would also be ideal if it can create sample map file during import and export.So you are parsing the XML, extracting the schema, using jdbc to create it, then parsing the data and using jdbc to populate it.
    I suggest that you just create SQL directly. Or perhaps a import file if MySQL has it.
    Less impact on the database, easier to test, easier to verify, and much faster to actually apply the data.

  • Error messages during XML import of Project Pro 2010 files

    Hi folks,
    I'm trying to diagnose a couple of sick Project Pro 2010 files loaded from Project Server by saving them locally as XML files and then reimporting (not connected to the server during import).  The anomalous behavior exhibited by both files
    is that one takes 15 minutes to load from the server, while another takes over 20 minutes. These are not typical load times for this server.  In both cases, Project consumes about 25% of the CPU during the load process. There's little network I/O
    while this goes on, and when externally linked schedules are loaded to the cache, they load very quickly.  Other than the long load times, the schedules appear to be behave normally, except for some very odd print preview behaviors in one of the schedules
    that I asked about in a different thread (among other things, the default print preview start date is 17 years after the default finish date, and the finish date is about 11 years before the schedule actually starts).
    The questions I'm asking here are about errors I see when I try to import the files exported as XML, and whether they might provide any clues as to what's causing the load time issues.
    When attempting to import one of the files saved as XML, a pop-up appears that says, "The actual finish date is before some of the previously entered timephased actual work values. If  you continue with this operation, Project will truncate
    some of the previously entered timephased actual work values. To continue, click OK..."
    When attempting to import the other file saved as XML, I get a series of pop-ups identifying a series of tasks that say, "The timephased edit will cause 'Develop Requirements Review Meeting Mi...' to start before 'Conduct Requirements Review"
    finishes.  As a result the task link cannot be honored.  You can: () Continue. Keep the timephased edit and ignore the link.  () Cancel. Ignore the timephased edit.  (OK/Cancel/Help)".
    Interestingly, both files contain external Project Server predecessor / successor links.  In the case of the first file, the XML import just appears to strip those out.  In the case of the second file, I get a long series of pop-ups (with
    some buggy text inserts) in pairs.  The first message in the pair is typically "An import error occurred.  The element <PredecessorLink> in the <Task> element with <UID>=611 has invalid data.  Verify that the file
    name and path are correct, and then try again. (OK)", where the indicated UID varies. The second pop-up in the pair appears to have a buggy text constructor and looks like this, with "[stet]" indicating the apparent buggy text inserts,
    "An import error occurred.  The element [stet] Verify that the file name and path are correct, and then try again. [stet] in the 309 element with <UID>=7 has invalid data. [stet] ^4 (OK)"
    In the second pop-up of the pair, the "xyz element" varies, but the "<UID>=7" reference and "^4"  are consistent. In the XML, UID 7 appears to refer to a calendar, a task which includes a number
    of entries similar to:
    <TimephasedData>
    <Type>24</Type>
    <UID>7</UID>
    <Start>2014-10-03T08:00:00</Start>
    <Finish>2014-10-04T08:00:00</Finish>
    <Unit>2</Unit>
    <Value>PT8H0M0S</Value>
    </TimephasedData>
    ... and to an assignment:
    <Assignment>
    <UID>7</UID>
    <TaskUID>10</TaskUID>
    <ResourceUID>-65535</ResourceUID>
    <PercentWorkComplete>100</PercentWorkComplete>
    which includes blocks like:
    <TimephasedData>
    <Type>2</Type>
    <UID>7</UID>
    <Start>2014-10-17T08:00:00</Start>
    <Finish>2014-10-17T17:00:00</Finish>
    <Unit>2</Unit>
    <Value>PT8H0M0S</Value>
    </TimephasedData>
    Eventually, the second file also does load with no external file links indicated.
    Again, I'm just looking for anything that might be a clue to the long Project Server load times.
    Thanks in advance,
    LP

    Slow performance can come from a number of different things. Without knowing more detailed information about your setup or workflow, it's difficult to accurately troubleshoot.
    -What kind of Mac are you using?
    -What is your source format?
    -Where is your source footage located?

  • XML import only creates one record at a time

    Hi All,
    I have an XML import map that automatically imports data into main product table. It's working fine when the XML file has only one main record. When it has more than one record, the import manager and import server can only import the last record in the file and skip the rest.
    I already checked the record matching tab. It correctly shows that all records will be created and 0 will be skipped. Even the log file indicates all records are created after I execute the map. Yet, when I try to look for them in the data manager, I can only find the last one. If I execute the map with the exact same file again, it will create one more record again and skip the rest.
    Someone else posted the same question a while back: Import map issue one record at a time. But it was never answered. Does anyone else have this issue? Is this a MDM bug?
    Thanks,
    Kenny

    Hi Kenny,
    Please refer to the note below:
    Note 1575981
    Regards,
    Neethu Joy

  • Binding ADF UI to a complex XML Type – Development Productivity, State Mgmt

    Binding ADF UI to a complex Web Service – Development Productivity, Managing State, Etc.
    For those scenarios when ADF UI has to be bound to a complex XML type, it seems that the direction taken by the ADF development team was to generate data-controls that map to complex XML types.
    The major problem with this approach is the fact that application server does not manage state. For example, If application has to submit a purchase order to a web service then application server has to manage the shopping card state until its ready to be submitted.
    In some previous forum threads it had been suggested that using generated data-controls is a “quick and dirty” solution for accessing web services and that a proper solution is to use generated Java Proxy Interface.
    That implies many manually constructed entity objects, associations and overridden doDML methods, which is far less productive compared to entity objects generated from a database schema.
    Suggestion and a Question for the ADF development team
    From the logical model standpoint, there is no difference in between the XML schema and DB schema. Therefore, it is possible to generate entity objects and associations for XML Types of XML schema the same way it’s done for tables of Database schema. The only difference is serialization of CRUD operations on entity objects.
    One way to handle this is:
    -     Generate Application Module for a complex XML type. This application module should have methods for marshaling to/from corresponding XML type.
    -     Generate entity object for each subtype within the complex XML type. In case of nested subtypes, generate association to a parent type.
    -     Generate data control with actions that are bound to web service operations and code that serializes request message from corresponding AM and de-serializes response message to corresponding AM.
    This way, ADF would offer the same productivity for the SOA development as one its currently offering for the ORM development.
    Until the time when something like this is available, what would be the best approach for binding ADF UI to web services?
    Feedback is greatly appreciated.
    Boro Petrovic
    Edited by: wds12518 on Jan 25, 2010 11:49 AM

    We have similar issues as our big portion of the UI is based on WS. We found that there is no easy way to map entity object structure to complex XML type (one EO can based on one flat type or domain can't be bound to UI directly). Oracle PMs, is there any better solution or future plans to address this issue?

  • [CS2][AS] Make XML import map is calling a refresh on styles?

    If this can be of use to someone else... it's probably not CS2,AS specific.. but this is what i use.
    It's the second time i have a bug like this, where changing the order of my calls is fixing the problem. With this one, i was getting random missing font error (times(1)) while batching documents(wich make the batch script batch crash as there is a modal dialog open). Not always on the same document, it was really fustrating as i was not able to get my finger on the problem!
    I actually knew the source of the problem as i had added a fix (maybe not the best solution, but it was working well) that actually was removing the style from all the text frame (i noticed that using map style to tag was not always working well(when text frame had overriden?), so that's why i added code to reset the style before doing a map. But i was not understanding why it was happening so randomly...
    I tought at first it was happening during save (as it reopen the document) but after a few experimentation it looked like it was occuring during the import map redefinition (See code below: make XML import map with properties {markup tag:tStyle, mapped style:tStyle}).
    Looks like the make XML import is calling some sort of document refresh wich then pop the font missing dialog (even with never interact as script preferences!)! (missing font is actually a bug i had also in other circumstances.. exemple when you have a extra return at the end of a tagged text (outside the tag)). A bit unexpected, i really tought that creating a xml import map was just creating data structure in document model to be used later on by the auto style call...
    The problematic script:
    tell application "Adobe InDesign CS2"
    set myDocument to document 1
    tell myDocument
    --Reset styles.
    set applied character style of every text of every text frame of every spread to character style 1
    set applied paragraph style of every text of every text frame of every spread to paragraph style 1
    --Create a tag to style mapping.
    set tList to name of every XML tag
    set tNumItems to count of tList
    repeat with i from 1 to tNumItems
    set tStyle to item i of tList
    make XML import map with properties {markup tag:tStyle, mapped style:tStyle}
    end repeat
    --Map the XML tags to the defined styles.
    auto style
    end tell
    end tell
    And the working solution (just moved the reset of style after the import map creation loop):
    tell application "Adobe InDesign CS2"
    set myDocument to document 1
    tell myDocument
    --Create a tag to style mapping.
    set tList to name of every XML tag
    set tNumItems to count of tList
    repeat with i from 1 to tNumItems
    set tStyle to item i of tList
    make XML import map with properties {markup tag:tStyle, mapped style:tStyle}
    end repeat
    --Reset styles.
    set applied character style of every text of every text frame of every spread to character style 1
    set applied paragraph style of every text of every text frame of every spread to paragraph style 1
    --Map the XML tags to the defined styles.
    auto style
    end tell
    end tell

    it doesnt print any server control message. in my "page_404.jsp" I am printing current date and time (to check if the server visited that page) everytime when i refresh "index.jsp" the server goes to "page_404.jsp" and prints the current date and time.
    so basically the only message which the console shows is the current date/time which i am printing in the "page_404.jsp"
    Thanks.

  • Import Server issues with SP4 maps

    While using the Import Server, I have a newly created map using Import Mgr 5.5 SP4. (I used a schema created by XI v.7 SP9). When it runs, it throw and exception with the following error message:
    <b>"Encountered a pre-SP4 map. The map needs to be upgraded to SP4.
    Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map"</b>
    It appears to not like new entries on the Partners table and balks at auto-mapping values for the compound field for the qualified lookup table at the Customer main level. The input record is outlined below. I have set the CONFIGURATIONS to "Replace/Replace/None" and "Automap values in batch" and in the map they are set to "Create/Update (ALL MAPPED)/Update (ALL MAPPED)".
    Thanks in advance. Don
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:CustomerCreateResponseTest xmlns:ns1="urn:bp:xi:up:re:cust_mdm:cmdm:pr5:100">
    - <CUSTOMER>
      - <item>
         <CUSTOMERNO>0099999989</CUSTOMERNO>
         <MDMCUSTOMER>4539</MDMCUSTOMER>
         <CREATE_DATE>16/01/2007,09:39:30</CREATE_DATE>
       - <RETURN>
          <TYPE>E</TYPE>
          <MESSAGE>F2381 MESSAGE</MESSAGE>
         </RETURN>
       - <PT_CONTPART_RETURN>                    qualified lookup table
        - <item>
            <MDM_CONTACT>0000000002</MDM_CONTACT>           non-qualifier
            <CONTACT>0002111119</CONTACT>                qualifier
          </item>
         </PT_CONTPART_RETURN>
       - <PARTNERS>                              qualified lookup table
        - <item>
           <CUSTOMERNO>0099999989</CUSTOMERNO>           non-qualifer
           <PARTNER_FUNCTION>RE</PARTNER_FUNCTION>          non-qualifer 
           <PARTNER_NUMBER>0090098989</PARTNER_NUMBER>      non-qualifer
           <DEFAULT_PARTNER>X</DEFAULT_PARTNER>           qualifier
          </item>
         </PARTNERS>
        </item>
       </CUSTOMER>
      </ns1:CustomerCreateResponseTest>

    For all watching this thread:
    We were running MDM 5.5 SP4. We applied Patch 2 (not patch 3) to our 32-bit system and we no longer get this error. We now get an error that the "Source File does not conform to the XML Schema", an entirely new issue. I will open a new question regarding that.
    Thank you. Don

  • Import server - Structural exception

    Hi All,
    I configured all the necessary setting required for Import server.I manually placed the file in Ready folder.The file gets processed but goes and sit in exception folder under structural folder.
    I tried the same file using Import manager and and dot loaded in DM without any error.I checked all the fields and structure but unable to find the solution.
    I am getting the following error showing some timestamp.There are no fields in may main table using timestamp .our design has only literal date and time in tuple.Is this something to do with this?
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <File>
      <ExceptionSubFolder>E:\usr\sap\MD1\MDS00\exe\Distributions\HYDHTC100401D_MSQL\Sachin\Inbound\MDM\MRH2_MAP_AUTO\Exception\StructuralX\</ExceptionSubFolder>
      <Name>20110721084955_S_MRH2_Customer_Master_Data.xls</Name>
      <ExceptionType>StructuralX</ExceptionType>
      <TimeStamp>20110721084955_S</TimeStamp>
      </File>
    Can any one help me in this ?
    Thanks and Regards
    Nitin

    Hi,
    Thanks for the help.
    I clicked on  the below link.But please clarify which one to download from below.Which one from below contains xsd.exe
    What is xsd.exe used for.Is it some kind of tool to create xml files.Please need some information.Because if it is a tool i am using Altova XML spy for the same
    Download .NET Framework 2.0 SDK x86 version (354 MB)
    Download .NET Framework 2.0 SP2 (52 MB )
    Thanks and Regards
    Nitin
    Edited by: nitin shanbhag on Jul 25, 2011 5:23 AM

  • Import server: Undefined elements exception

    Hi,
    I do have a problem with the import server. I get ,'save-update map' structural exceptions in the import server. It complains about undefined elements, and if saved the update it works for one single XML file but other still fail with similar (other element though) error. Mapping the files in the import manager just works. We are using version 5.5.41.70 here of all components. I noticed a thread which explains about sp5 patch 01, hotfix 1, which fixes this, but we're having that one already.
    I did validate the xml already against the xsd used, the xml is valid.
    Error from logfile is:
    "Some portions of this import map are out of date.<LF/>Solution: Please, Launch the Import Manager GUI, preferably using the original source file that the map was generated for, otherwise the same source file and Save Update [File-&gt;Save Update] the map.<LF/> Parent hierarchy: &lt;E1MARAM&gt;.<LF/> Undefined element: &lt;EKWSL&gt;.  ".
    Thanks,
    Wim

    Hi Wim,
    it looks like that your Import Map does not have all IDoc fields mapped to the corresponding repository fields. If you map the fields in Import Manager and choose the Save->Update option, IM adds the new mapping to the old existing one. But of course it is still possible that there are other unmapped IDoc elements which need to be mapped once manually before the Import Server can process the file automatically. The best way to solve this is creating a "Dummy" IDoc file that contains a value for each and every field. Then use this "Dummy" IDoc in Import Manager, load the Map and check the mappings. You can add/delete mappings according to your expected real data. Save->Update once again and you should not into the issue any longer.
    Best regards
    Michael

  • Import Server Error - Value Transformation

    Hi,
    I have two questions on import server and import map. 
    1. My source xml does not have company code segment (customer repository), when I opened my xml thru import manager using my import map, I dont see any source fields belong to company code segment, which I think is right. But the same xml when it runs thru import server it throws "Value Transformation" error on fields that belong to company code segment which is not present in the source xml.  Any help on this issue is appreciated.
    2. In import maps, any new field mapping is saved using "Save update" option, but when I unmap any field, "save update" option does not save it, but "save as" option does save it, but the downside it just saves the current mapping. Any help on this is also appreciated.
    Thanks
    Job.
    Edited by: Job Daniel on Jul 21, 2008 8:44 PM

    Hi Sekhar,
    Go to Services.msc in the system where your MDM servers are installed and restart the MDM Import server service.
    Then try connecting again.
    Your error message basiaclly points out that you are using Automatic import but as your MDIS server is not up and running the importing cannot be performed.
    So make sure your MDIS is functioning properly and you have made the necessary settings in your MDIS.ini file and port property in console for correct importing.
    You can check the mdis settings needed in the below path:
    http://help.sap.com/saphelp_mdm550/helpdata/en/43/12036df94c3e92e10000000a1553f6/frameset.htm
    (Automatic importing MDIS - Import manager ref guide>MDM import server(MDIS)>MDIS Consfiguration)
    The port in MDM Console must have processing type as Automatic and the correct map attached.
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • XML Data Server Problem

    I am trying to setup an XML data server and can't get passed the error: java.sql.SQLException: Could not generate the DTD because the file could not be created. Verify that you have write permission in the directory.
    I have placed my xml file in the odi\demo directory where the sample files are and it doesn't seem to help. Here is the url I'm using: jdbc:snps:xml?f=../demo/xml/sample-incident-report1.xml
    This url does not give the errors and connects w/o a problem: jdbc:snps:xml?f=../demo/xml/salesorg.xml
    Same directory, one gives the error and one does not.
    Thanks for any help.

    It seems that anything a little complex causes this error. I've tested with relatively flat xml documents and don't encounter the problem.

  • SAP MDM Import Server

    Hi,
    I need to work in SAP MDM Import Server.
    I have already worked in SAP MDM Import Manager.
    I need to know a more about SAP MDM Import Server.
    Is it an application?
    Regards
    Kaushik Banerjee

    Hi Kaushik,
    I need to work in SAP MDM Import Server.
    I have already worked in SAP MDM Import Manager.
    I need to know a more about SAP MDM Import Server.
    Is it an application?
    The Import Server is a separate MDM application that uses import maps created within the MDM Import Manager to automatically load source data files into a repository.
    The MDM Import Server (MDIS) automates the task of importing source data into MDM repositories. It is designed to reduce the processing complexity, resource requirements.
    To know more about MDM Import server, which is also called the MDIS, please follow the link below:
    http://help.sap.com/saphelp_mdm550/helpdata/en/43/12036df94c3e92e10000000a1553f6/frameset.htm
    Go to MDM IMport Server (MDIS).
    You will find the complete infomration about it.
    You can find the complete process of Automated Import ansd Syndication in the link mentioned below:
    Master Data Management Import Server and Master Data Management Syndication Server - Webinar Powerpoint
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8973bcaf-0801-0010-b7a7-f6af6b1df00e
    Hope it helps.
    Thanks and Regards
    Nitin Jain

  • Import Server problem

    Hello,
    in the last days we experience some strange phenomena with the Import Server. For example, I created an XML import mapping for the standard repository "Material", created a port in the console and used the mapping there. Manual execution of the mapping worked fine. I dumped the file in the correspondent Ready-folder and the Import Server swallowed the file and progressed it.
    So far so good.
    I did this again, no problem. I tried a different file and got error messages, because the file format didn't match. But the Import Server still swallowed the file. Then I tried a larger file like the first one (the first one was just a 10-records-test), but no reaction. The Import Server did not swallow the file.
    I read this thread: , stopped and started the MDM Server and the Import Server several times and then dumped files again - same result, even with the file with which it worked before.
    I created a new mapping on Repository "Vendor" like the one on "Material", for the same file, no reaction. The Import Server seems to be sleeping.
    Anyone faced a similar situation before? Any suggestions what I could do to resolve the problem?
    Best regards,
    Jörg
    Message was edited by: Jörg Thiesmann

    Some additional information on my problem:
    The second file read the following error once for each record I wanted to read:
    So there IS only one root element. The test file with which it worked before has exactly the same start/end.
    This was the last logfile.
    Message was edited by: Jörg Thiesmann

Maybe you are looking for

  • HR ABAP infotype 0008

    Hi All, Please see my below requirement. i got  2 periods in infotype 0008(in the datailed view) 1.03/31/2009-12/31/9999  and amount is 1500(Present period) 2.01/01/2007-03/30/2009  and amount  1000.(Previous Period) I want to get the amount from the

  • Create 3rd partition after installing Windows 7 on Macbook Pro (Lion preinstalled)?

    Hi, currently I'm having 2 partition: Macintosh HD - Lion (~680GB) and Bootcamp - Windows 7 (~60GB). Now I want to take ~600GB from the 1st partition to create a FAT32 data storage. My question is: is it possible to do so without reinstalling any OS?

  • Screen flickers then goes black

    Hello. Having a problem with the display on our 15" 1.25 G-4. After using it awhile, the screen starts looking like a strobe light then goes to all black. Closing the lid, letting it sleep for a bit waking later will then get it working. I've reset t

  • My browser don't work properly

    I have 9300 curve. When ever I browse any site my browser show a message "closeing this because of low memory". I have done 2 thing 1st restarted it and 2nd taken out battery on running case but my problem is not solve. Help me what can I do to resol

  • After PDF to jpg image conversion, image generated upside down

    Hi, Now i have replaced the latest .jar file for Jpedal, jai_codec, jai_core and have made modifications in the code to fit the latest version of the .jar files. But the image is getting generated Exact Upside Down. How can i resolve this issue? Rega