on 2024 Jun 28 5:06 PM
Hi Community,
I am trying to bind list of process context to the approval form which is an imported UI5 task that has a list input. The field is enabled and I am able to bind the list but not the individual fields.
Even if I try to map the individual fields it does not work. Below is declaration of the input in manifest.
But with a usual approval form there is no issue to bind.
Please suggest.
Request clarification before answering.
Hi,
As described in the Help Document below, you can specify arrays for Input/Output by defining the items in the list within the 'definitions' block.
{
"$schema": http://json-schema.org/draft-07/schema,
"title": <"input" or "output">,
"type": "object",
"required": [],
"properties": {"newTable": {
"title": "New Table",
"description": "",
"type": "array",
"items": {
"$ref": "#/definitions/newTableItems"
}
}
},
"definitions": {
"newTableItems": {
"type": "object",
"required": [],
"properties": {
"newText": {
"title": "New Text",
"description": "",
"type": "string"
}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
77 | |
22 | |
9 | |
7 | |
6 | |
6 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.