Everything within this section is only visible while editing. Use Page Properties ID "STUB", "REFACTURE", "PROGRESS", "rDEV", "rDOC", "rLANG" and "DONE". Everything contained within the table is displayed in the (INTERNAL) Reports page.
Resources & Remarks Modification History Add a new line to this table and fill it whenever you edit the page.
|
Explanation of the usage of dynamic catalogs provided by the Web-API Gateway as editable pick-up lists in metadata forms. |
|
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. By setting or not setting the property readonly
in their schema definition, they can be configured to be 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 so-called dynamic catalogs.
Dynamic catalogs are introduced with version 2021 Summer at the latest. Beginning with 2021 Summer Alpha2, the Web-API Gateway offers the endpoints for maintaining such catalogs.
Notes:
If only one specific tenant will use a dynamic catalog, it is recommended to configure this catalog with a classification-tag for the field that should contain one of its values. In the following code block, an example schema definition of the example string property contract
is displayed. The property is available only within the tenant
Mytenant
. The property is classified by line 6 to be a a dynamic catalog that is displayed with the technical name contracts
in your client. Initially, the list of values offered to users will be empty.
<propertyStringDefinition> <id>contract</id> <propertyType>string</propertyType> <cardinality>single</cardinality> <required>false</required> <classification>dynamic:catalog[tenMytenant:contracts]</classification> </propertyStringDefinition> |
Upload the tenant schema via the endpoint POST /api/admin/schema as a user of the tenant Mytenant
. After uploading, the users will get an empty pick-list for that field. A user with the role YUUVIS_MANAG_SETTINGS can maintain this list. The following actions are supported:
An administrator with the role YUUVIS_TENANT_ADMIN can maintain the dynamic catalog contracts
using the Web-API Gateway GET and POST endpoints https://<domain>/api-web/admin/catalogs/tenMytenant:contracts
of the admin-controller.
The catalog data is saved in the config server beside the tenant-schema configuration.
The format of the catalogs is JSON. The following example shows a 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 } ] } |
The user with edit rights can open this dialog after click onto the pencil at the field:
Picture: screenshot of the client dialog for editing the pick list contracts
The client uses the Web-API Gateway dms-controller endpoints:
There is a Swagger -UI that supports you in using the mentioned endpoints: https://<domain>/api-web/swagger-ui.html
Picture: Screenshot with a part of the Web-API Gateway Swagger-UI showing the first endpoints of the admin-controller with
Set a catalog to read-only
If a catalog should be stable after setting it up, the parameter readonly can be set into the classification-tag, e.g.:
<classification>dynamic:catalog[tenMytenant:contracts,readonly]</classification>
In this case, your tenants should use object types that are configured in a system or app-schema and should use only standard values an administrator with the role YUUVIS_SYSTEM_INTEGRATOR can set up global catalogs with initial standard elements and set the catalogs readonly.
Recommendation: In an app-schema, use the prefix of the application for your catalog name as given here:
<propertyStringDefinition> <id>contract</id> <propertyType>string</propertyType> <cardinality>single</cardinality> <required>false</required> <classification>dynamic:catalog[appMyapplication:contracts]</classification> </propertyStringDefinition> |
Recommendation: In the system-schema, use no perfix for your catalog name as given here:
<propertyStringDefinition> <id>contract</id> <propertyType>string</propertyType> <cardinality>single</cardinality> <required>false</required> <classification>dynamic:catalog[contracts]</classification> </propertyStringDefinition> |
In this case the Web-API Gateway system-controller endpoints GET and POST are used.
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.
The Web-API Gateway GET endpoint that the client calls checks first whether a tenant-specific copy of the global catalog does exist. If not the global catalog is read.
Editable global catalogs
If the catalog parameter readonly is not set users with the role YUUVIS_MANAGE_SETTINGS can change the list elements. With the first update of such a catalog, a new catalog with the same technical name is saved for that tenant.
Note: From now on changes made in the global catalog are not affecting the copy. Only new tenants will get the new list elements of the global catalog.