Page Properties | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||
Resources & Remarks Modification History
|
...
Description | yuuvis® | Flowable |
---|---|---|
The description that was entered during creating the follow-up. | Column Description | process variable whatAbout |
The time the follow-up (process) was created. | Column Start time | startTime |
The due date was entered while creating the follow-up. | Column Follow-up date | process variable expiryDateTime |
Inbox
Beginning with version 2021 Autumn the inbox lists besides the follow-up tasks all other BPM tasks as well. The view My follow-ups
lists on the follow-up processes with the following specific parameters that are affected:
Description | yuuvis® | Flowable |
---|---|---|
The type of task that can be Follow-up or Task in case of other process models. | Column Type | If the processDefinitionName is Follow-up then this value otherwise the static label Task |
The specific Task is either the follow-up description that was entered during creating the follow-up or the name of the process | Column Task | If the processDefinitionName is Follow-up the process variable whatAbout otherwise the task description |
The time the follow-up task was received by the user. | Column Received | CreateTime |
My processes
Beginning with version 2021 Autumn the new view My process
lists all processes including the follow-up ones the user has started. The following yuuvis and Flowable parameters are affected:
Description | yuuvis® | Flowable |
---|---|---|
Process model name as deployed. | Column Type | processDefinitionName |
Process instance name (e.g. a case number) | Column Process | name := is any user-entered string while starting |
The time the follow-up (process) was created | Column Start time | startTime |
The status of the process can be running, suspended, or deleted. The status is given in the user's language. | Column Status | derived from completed and suspended |
Start a process for an object via plugin action
You can extend the object actions with a plugin action. The following code must be imported as a file in the settings of the client. The user needs an administrative role.
Code Block |
---|
{
"disabled": false,
"actions": [
{
"id": "yuv.custom.action.two.step.label",
"label": "yuv.custom.action.two.step.label",
"description": "yuv.custom.action.two.step.description",
"priority": 0,
"icon": "<svg height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M0 0h24v24H0V0z\" fill=\"none\"></path> <path d=\"M4 10h12v2H4zM4 6h12v2H4zM4 14h8v2H4zM14 14v6l5-3z\"></path> </svg>",
"group": "further",
"range": "SINGLE_SELECT",
"isExecutable": "(item) => item.id",
"run": "(selection) => this.http.post('/bpm/processes', {'businessKey': selection[0].id, 'name': selection[0].title || selection[0].id, 'processDefinitionKey': 'twosteptest_proc', 'variables': [ { 'name': 'documentId', 'type': 'string', 'value': selection[0].id},{ 'name': 'whatAbout', 'type': 'string', 'value': selection[0].title}]}, 'api-web').then(() => this.util.notifier.success(this.util.translate('yuv.custom.action.two.step.success')))"
},
"yuv-download-action",
"yuv-delete-action",
"yuv-delete",
"yuv-upload",
"yuv-upload-action",
"yuv-move-action",
"yuv-move",
"yuv-follow-up-action",
"yuv-follow-up",
"yuv-reference-action",
"yuv-open-context-action",
"yuv-open-versions-action",
"yuv-clipboard-action",
"yuv-clipboard-link-action"
],
"translations": {
"en": {
"yuv.custom.action.two.step.label": "Two step process",
"yuv.custom.action.two.step.description": "Starts simple process with two steps",
"yuv.custom.action.two.step.success": "Process has started"
},
"de": {
"yuv.custom.action.two.step.label": "Zweischritteprozess",
"yuv.custom.action.two.step.description": "Startet einen einfachen Prozess mit zwei Schritten",
"yuv.custom.action.two.step.success": "Prozess wurde gestartet"
}
}
} |