Explanation of the usage of dynamic catalogs provided by the Web-API Gateway as editable pick-up lists in metadata forms.
Table of Contents
Introduction
In some metadata fields, you may want to provide a selection list of possible values from which the users have to choose. Those lists are configured via so-called catalogs. In their schema definition, they can be configured to be editable or not editable directly in your client for users with the proper authorization. A change in the schema definition is not required in order to modify the available values for the so-called dynamic catalogs.
Dynamic catalogs are introduced into the Web-API gateway with version 2021 Summer.
Notes:
- We use the term catalog from a technical perspective and the term list from the user's perspective.
- The catalog values (corresponding to list elements) cannot be localized.
- The list elements can't be manipulated by client form scripting.
Defining Dynamic Catalogs
A property can be classified in the schema definition to be displayed as a dynamic catalog in your client by setting the value dynamic:catalog[<parameters>]
for the attribute classification
. Two comma-separated string parameters are accepted:
- The first parameter is the technical name that will be the displayed expression in the your client per default. It can be localized in order to replace the displayed expression. We recommend naming conventions described below that makes it easy to distinguish between tenant-specific and global catalogs.
- As second parameter,
readonly
can be added. Thus, the catalog values can not be modified via the dms-controller endpoints of the Web-API gateway. Since the client uses the dms-controller endpoints, the corresponding pick-list elements in the client will also be not editable. Changes can be applied only via the system-controller endpoints in case of global catalogs and via the admin-controller endpoints in case of tenant-specific catalogs.
The catalog values are saved in a JSON file in the config server beside the corresponding schema configuration.
Tenant-Specific Dynamic Catalogs
If only one specific tenant will use a dynamic catalog, it is recommended to configure this catalog as a tenant-specific property. Its technical name should follow the naming convention ten<tenantname>:<catalogname>
. A user with the role YUUVIS_TENANT_ADMIN is required.
The catalog values are saved in the config server beside the tenant schema configuration.
In the following code block, an example schema definition of the example string property contract
is displayed. The property is classified by line 6 to be a dynamic catalog that is displayed as a pick list with the technical name tenMytenant:contracts
in your client. Initially, the list of values offered to users will be empty. Since there is no readonly
parameter within the value of the classification attribute, the pick-list will be editable in the client.
<propertyStringDefinition> <id>contract</id> <propertyType>string</propertyType> <cardinality>single</cardinality> <required>false</required> <classification>dynamic:catalog[tenMytenant:contracts]</classification> </propertyStringDefinition>
If the example schema is uploaded as a tenant schema via the endpoint POST /api/admin/schema by a user of the example tenant mytenant
, the property contract
will be available only in the specific tenant mytenant
. After restarting your client, the users will get an empty pick list for the field called tenMytenant:contracts
.
If a catalog should be stable after setting it up, the parameter readonly
can be set into the classification
attribute, e.g.:
<classification>dynamic:catalog[tenMytenant:contracts,readonly]</classification>
Global Dynamic Catalogs
If the dynamic catalog should be available to all tenants, it has to be configured as global property. This means that the property definition classified as dynamic catalog has to belong either to the system schema or to an app schema. Its values are stored in the config server besides the global schema or the corresponding app schema.
For catalogs in an app schema we recommend the naming convention app<appname>:<catalogname>
. For catalogs in an app schema we recommend to use no extra prefix but only the catalog name <catalogname>
.
Also global dynamic catalogs can be defined to be editable for users with the role YUUVIS_MANAGE_SETTINGS. If the modified catalog values are saved, a tenant-specific copy of the global JSON configuration is saved besides the tenant schema together with the values of tenant-specific catalogs. Whenever a global catalog is retrieved via the Web-API gateway, the tenant-specific copy will be returned for that tenant. If no tenant-specific copy exists, the global configuration is returned. This might happen if the global catalog is not editable or no changes were applied to the global catalog within the active tenant.
Not-Editable Global Catalogs
Users with the role YUUVIS_SYSTEM_INTEGRATOR can set up global catalogs with initial standard elements and set the catalogs readonly
.
In this case you should use only standard values that are suitable for all tenants.
The following code block shows an example property definition cut from an example app schema. If the example schema is uploaded as an app schema via the endpoint POST /api/system/apps/{app}/schema for the example app myapplication
, the property contract
will be available only for the specific app myapplication
, but to all tenants using this app. After restarting your client, the users will get an empty pick list for the field called appMyapplication:contracts
.
<propertyStringDefinition> <id>contract</id> <propertyType>string</propertyType> <cardinality>single</cardinality> <required>false</required> <classification>dynamic:catalog[appMyapplication:contracts,readonly]</classification> </propertyStringDefinition>
The following code block shows an example property definition cut from an example system schema. If the example schema is uploaded as system schema via the endpoint POST /api/system/schema, the property contract
will be available in all tenants and for all applications. After restarting your client, the users will get an empty pick list for the field called contracts
.
<propertyStringDefinition> <id>contract</id> <propertyType>string</propertyType> <cardinality>single</cardinality> <required>false</required> <classification>dynamic:catalog[contracts,readonly]</classification> </propertyStringDefinition>
Editable Global Catalogs
If the catalog parameter readonly
is not set, users with the role YUUVIS_MANAGE_SETTINGS can change the list elements in your client. With the first update of such a catalog, a new catalog with the same technical name (without additional tenant-specific prefix) is saved for that tenant.
Note: Changes of the global catalog saved by a user with the role YUUVIS_SYSTEM_INTEGRATOR do not affect the copy.
Editing Catalog Values
The following actions are supported for editable catalogs / pick-lists:
- Create a new list element.
- Remove a list element. A warning is given if this element is used by an object.
- Disable a list element. Such elements are offered for search but not during creating or editing an object.
Editing via Client
Users with the role YUUVIS_MANAGE_SETTINGS can maintain pick lists that are based on a property classified as dynamic catalog without the readonly
parameter.
The edit dialog can be opened by clicking the pencil symbol at the field. The screenshot below shows the edit dialog for the example pick list contracts where the four values Employment contract, Rental agreement, User contract and Purchase contract were already added.
Editing via Web-API Gateway
admin-controller
Users with the role YUUVIS_TENANT_ADMIN are offered the maintenance actions also in read-only catalogs via the Web-API Gateway GET and POST endpoints https://<domain>/api-web/admin/catalogs/tenMytenant:contracts
of the admin-controller.
The following example shows a tenant-specific list of four elements stored for the tenant Mytenant
:
{ "tenant": "Mytenant", "entries": [ { "name": "Employment contract", "disabled": false }, { "name": "Rental agreement", "disabled": false }, { "name": "User contract", "disabled": false }, { "name": "Purchase contract", "disabled": false } ] }
system-controller
In case of global catalogs, the Web-API Gateway system-controller endpoints GET and POST are used. The role YUUVIS_SYSTEM_INTEGRATOR is required.
- For the catalog
contracts
in the system schema:https://<domain>/api-web/system/catalogs/contracts
- For the catalog
contracts
in the app schemamyapplication: https://<domain>/api-web/system/catalogs/appMyapllication:contracts?appschemaname=appMyapplication
Global catalogs without an appschemaname
are saved in the config service beside the system schema configuration. Otherwise, the catalogs are saved besides the app schema configurations.
dms-controller
The client uses the Web-API Gateway dms-controller endpoints that require the role YUUVIS_MANAGE_SETTINGS in case of POST and PATCH requests:
- The values for the catalog are read with the GET endpoint
https://<domain>/api-web/dms/catalogs/tenMytenant:contracts
. - If the catalog does not exist, it is created with the POST endpoint
https://<domain>/api-web/dms/catalogs/tenMytenant:contracts
. - If the catalog already exists, changes of its values are saved with the PATCH endpoint
https://<domain>/api-web/dms/catalogs/tenMytenant:contracts
.
Swagger-UI
There is a Swagger-UI that supports you in using the mentioned endpoints: https://<domain>/api-web/swagger-ui.html
. The screenshot below displays a part of the Web-API Gateway Swagger-UI showing the first endpoints of the admin-controller.
Summary
In order to display a pick lists of pre-defined elements in metadata forms of your client, the corresponding property definitions have to be classified as dynamic catalogs. They can be global or tenant-specific. The dynamic catalogs can be configured to be editable or not editable for client users.