Skip to main content

Data in / Data out

This page serves as a summary of all different methods to :

  • import or use external data (data in)
  • export or expose internal data (data out)

Data in

Importing data

Custom import

In a non-specific manner, it is possible to retrieve a file from an object / action / webservice and use Java's mechanisms to read and import the data.

Adapters

An adapter is a tool that "adapts" the data from a file to the business data model. It typically reads a file (CSV, Excel, etc) line by line to integrate the data, or transform it in Simplicité's formalized XML format. Its advantages compared to a custom import is that Adapter provide additional tools and services :

  • helper Adapter classes for various formats : CSV, JSON, XML, etc
  • pre-built mechanism for line-by-line logging
  • import supervision object with logs and stats

There are built-in adapters for standard Simplicité formats, but you'll generally need to build your own adapters for your custom formats. Read the full adapter documentation here

Using data

API calls

Data usage is generally done through consuming external APIs. Simplicité integrates several tools to make thoses calls, from basic to advanced:

Service Objects

A service object (also known as remote object) draws the data from an API instead of the database. They aim at providing the same UI as normal objects, and must be configured in a similar way: an object with a template and attributes.

At the moment there are 4 built-in service objects that don't require any coding:

  • Remote Simplicité Object: based on a Simplicité object in another instance
  • LDAP Object
  • SalesForce Objects
  • OpenDataSoft Objects

As there are limited built-in service objects, developers are often required implement a Custom Service Object to code the object's API calls for basic CRUD operations by extending the ObjectService class

Select Objects (secondary database)

It is possible to declare secondary datasources, and then configure objects that will make requests on those datasources instead of the main one. This will give you full functionnality, except that obviously it will be impossible to make relationships between those objects as the platform will be unable to make JOIN requests between the datasources.

Data out

Exporting data

Publications

Publications offer a standardized way to export data in any format.

Please refer to the [publication tutorial lesson]/lesson/tutorial/development/publication) and the publication examples in the Tips and Tricks category in the forum

Exposing data

There is ample documentation about the different ways of exposing data.

The built-in webservices are :

It is also possible to write your own APIs through dedicated External Objects, as documented in Custom Services and this tip'n'trick