Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

With Nebula DataBridge it is possible to import XML files into SuperOffice CRM Online.
Want If you want to know what other types of files are supported, please visit our System Requirements page.

How to

In the Configure Profile page in your profile, you can upload your XML file. In the Configure Source page, you can set what text encoding is used in your file. A preview is also shown at the bottom of the screen.

...

Rule 3: The name of the root node doesn’t matter, neither does the name of the record nodes but a node on the same level with a different name from the first record node will be ignored.

 <contacts>
      <contact>
            <name>John Doe</name>
            <phone>0123456789 <<phone>0123456789 </phone>
            <email>johndoe@mail.com</email>
      </contact>
      <company> <company> <!-- name is different from the first node, won’t be imported -->
            <name>Example Inc.</name>
      </company>
</contacts>


Rule 4: The properties of each record are retrieved from the nodes directly included in each record node, with the name of the node as the name of the property and the content of the node as its value. The content of the node must be directly text, inner nodes will be ignored.

<contacts>
      <contact id="123"> <!-- attributes are ignored -->
            <name>John Doe</name>
            <address>
                                    <!-- node has no direct text content, address property will be empty -->
                  <street>123 Example Street</street>
                  <city>Cityville</city>
            </address>
      </contact>
</contacts>


Rule 5: All the properties that need to be imported must appear in the first record node, even if they have no value for this record. Any additional property in subsequent record nodes would be ignored. 

...