Data interface
The data interface can be used via the Formulare (Forms) function.
This function is not available in "classic" templates.
As an alternative for "classic" templates, contact data can be accessed via the Address interfaces. For more information about the different template versions, go here.
Purpose and use
Via the data interface, data of different types can be loaded from different data sources as well as entered manually. Via a Schema
the data types can be described and provided as Object
or ObjectCollection
for the document generation.
Objects and ObjectCollections
An Object
describes an object that is defined by a Schema
. In addition to the Schema
, the object has an Id
and a (translatable) Label
. An example for an object is e.g., the recipient of a letter - on the document exactly one recipient is named and this can be described by such an object.
An ObjectCollection
on the other hand is a list of objects. The list of objects is also defined by a Schema
and contains an Id
and a (translatable) Label
. An example of such a list of objects would be invoice items from a CRM. On one invoice, with one recipient, several invoice items appear. The ObjectCollection
allows to store several objects of the same type.
NOTE
If you want to allow one recipient in a template, use Object
s. If you want to allow multiple recipients (e.g. in a protocol), use an ObjectCollection
.
Structure
<FormsConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Elements>
<Object Id="emplData" Label="Employee ddresses">
[...]
</Object>
<ObjectCollection Id="CustData" Label="Customer addresses">
[...]
</ObjectCollection>
</Elements>
</FormsConfiguration>
Schema
The Schema
defines the structure of the data type. This schema can contain different elements that can collect or display information. The same types are supported as in the Forms function (Text
, Date
, YesNo
, Choice
), with the exception that grouping is not supported.
Structure
<FormsConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Elements>
<ObjectCollection Id="CustData" Label="Customer addresses">
<!-- Defines the ObjectCollection's elements to use in JavaScript -->
<Schema>
<Text Id="CompanyName" Label="Company name" />
<Text Id="Street" Label="Street" />
<Text Id="PostalCode" Label="Zip" />
<Text Id="City" Label="City" />
<Text Id="Country" Label="Country" />
</Schema>
</ObjectCollection>
</Elements>
</FormsConfiguration>
Summary
Basically, all Text
and Choice
schema elements for the display of an Object
/ObjectCollection
are used comma-separated in the search result list or in the selection list.
However, if you want to display only certain fields in the list view, you can configure the displayed fields via Summary
:
<FormsConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Elements>
<ObjectCollection Id="CustData" Label="Customer addresses">
<!-- Defines what schema fields are shown in the result list -->
<Summary>
<Text Id="CompanyName" />
<Text Id="City" />
</Summary>
</ObjectCollection>
</Elements>
</FormsConfiguration>
The Field
must refer to a field of the Schema
via the Id
.
DataProviders
To load data from other sources, DataProviders can be defined. For each Object
or ObjectCollection
one or more DataProvider can be defined.
Each DataProvider has the following configuration options:
DisplayName
: Serves as name for theDataProvider
.
SearchParameters
: A search mask must be configured for the appropriateDataProvider
. As syntax the same elements are used as in the Forms function (Text
,Date
,YesNo
,Choice
).
Mapping
: To map the received data to theSchema
, the Mapping syntax is used.Each
DataProvider
can offer further, specific, configuration options.
Attributes
Attribute name | Description |
---|---|
| Serves as the Name for the DataProvider. |
Contents
Element name | Description |
---|---|
| A search mask must be configured for the corresponding DataProvider. The same elements as in the Forms function ( |
| The Mapping-syntax is used to map the received data to the |
 | Each DataProvider might offer additional, specific configuration options. |
List of DataProviders
The following DataProvider
s are available:
Name | Description | Link |
---|---|---|
| Access to .csv files | |
| Access to Excel files | |
| Access to HTTP/HTTPs APIs (REST/Web APIs) | |
| Access to SQL databases |
Example DataProvider
In the following example a CsvDataProvider
is configured globally:
Extensive example
In the following more extensive example an ObjectCollection
with two data interfaces, a CsvDataProvider as well as a HttpDataProvider, is configured for selecting the recipient in a letter template.
XML configuration
Screenshots
Manually created Objects
1) List view: without created Objects
3) List view with created Objects
The fields defined in Summary
are displayed in the list view.
2) Create Objects manually
The data defined in Schema
is entered in this dialog.
Objects searched for via data interface
1) List view: without created Objects
4) List view with created Objects
The fields defined in Summary
are displayed in the list view.
2) Search for Objects in DataProvider
3) Add results from DataProvider
The data defined in Schema
is entered in this dialog.
Â
PrimeSoft AG, Bahnhofstrasse 4, 8360 Eschlikon, Switzerland