Page Properties | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||
Resources & Remarks Modification History
|
...
Column in yuuvis® client | Corresponding Counterpart in BPM Engine | Description |
---|---|---|
Description (not available anymore as of version 2021) | Process variable whatAbout | The description that was entered while creating the follow-up. |
as of 2021 Winter: Subject | Web-API Gateway parameter subject , represented as Flowable string variable subject | Set while creating the process. |
Created on | Process parameter startTime | The time the follow-up (process) was created. |
Follow-up date | Process variable expiryDateTime | The due date that was entered while creating the follow-up. |
Status | Derived from process parameters endTime and suspended | Possible values for Status are running , completed and suspended . |
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "description": "This form is used during process start and both task of process userGroupAssignment", "name": "taskform", "situation": "EDIT", "elements": [ { "name": "core", "type": "o2mGroup", "elements": [ { "name": "user", "labelkey": "userGroupAssignment:user", "type": "string", "cardinality": "single", "required": true, "readonly": false, "classifications": ["id:organization"] }, { "name": "comment", "labelkey": "userGroupAssignment:comment", "type": "string", "required": true, "readonly": false, "rows": 3 } ], "layout": { "align": "column" } }, { "name": "data", "label": "data", "type": "o2mGroupStack", "elements": [] } ] } |
Beginning with As of version 2021 Winter Alpha 4 , the cardinality
with multi
for value multi
is supported as an alternative for the value single
of the property cardinality
in order to configure a multi-value field is supported in this way:
- If the
cardinality
of a field issingle
, its type is mapped to the type of the Flowable variable with the samename
. - If the
cardinality
of a field ismulti
, the Flowable variable type is set toJSON
and its values are listed in
...
- the specified JSON structure.