ui-workflow-builder
Design visual workflow processes with step-by-step forms and approvals for SAP entity types, enabling structured data handling and approval chains.
Instructions
Creates visual workflow processes with step-by-step forms and approvals
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityType | Yes | SAP entity type for the workflow | |
steps | Yes | Workflow step definitions | |
workflowName | Yes | Name of the workflow process |
Input Schema (JSON Schema)
{
"properties": {
"entityType": {
"description": "SAP entity type for the workflow",
"type": "string"
},
"steps": {
"description": "Workflow step definitions",
"items": {
"additionalProperties": false,
"properties": {
"config": {
"additionalProperties": true,
"properties": {},
"type": "object"
},
"name": {
"type": "string"
},
"type": {
"enum": [
"form",
"approval",
"notification",
"condition"
],
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
},
"type": "array"
},
"workflowName": {
"description": "Name of the workflow process",
"type": "string"
}
},
"required": [
"workflowName",
"steps",
"entityType"
],
"type": "object"
}