2022.1

Table Of Contents
Example: nested tables (one table into another)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<datamodel schemaVersion="1.0.0.3" name="Nested Table Example"
version="1"
xmlns="http://www.objectiflune.com/connectschemas/DataModelConfig"
xsi:schemaLocation="http://www.objectiflune.com/connectschemas/Data
ModelConfig
http://www.objectiflune.com/connectschemas/DataModelConfig/1_0_0_
3.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<field type="string" name="RecordField" required="true"/>
<table name="details">
<field type="string" name="DetailsTableField" required="true"/>
<table name="nestedtable">
<field type="string" name="NestedTableField" required="true"/>
</table>
</table>
</datamodel>
Example: default values
Default values can be added to any field with the defaultValue attribute:
<field type="string" name="RecordField" required="true"
defaultValue="My Default Value">
DataMapper User Interface
The main ingredients in the DataMapper's user interface are the following:
l "Menus" on page328
l "Toolbar" on page405
l "Settings pane" on page347
l "Steps pane" on page363
l "The Data Viewer" on page344
l "Step properties pane" on page365
l "Messages pane" on page346
l "Data Model pane" on page332
l Parameters pane (see "Properties and runtime parameters" on page253)
Page 322