Hello Seniors,
I am start trying to use Bonita and have one problem when I do submit the data in UI.
Error is
Debug message
Error while validating expected inputs
- Expected input [reportObjInput] is missing
- Expected input [personInfoObjInput] is missing
- Expected input [ownerObjListInput] is missing
- ....
- ....
I do realize that errors are coming out from all the auto generated list object contract in formOutput. Normal auto generated objects are okay. Only the problem is in list object.
Auto generated External API of List in UI variable as follows:
incidentOwnerObjList | ../{{context.incidentOwnerObjList_ref.link}} | External API |
Auto generated code in formOutput:
ownerObjListInput: $data.ownerObjList.map( it => ({
persistenceId_string: it.persistenceId_string !== undefined ? it.persistenceId_string : null,
userId: it.userId !== undefined ? it.userId : null,
userName: it.userName !== undefined ? it.userName : null,
userFirstName: it.userFirstName !== undefined ? it.userFirstName : null,
userLastName: it.userLastName !== undefined ? it.userLastName : null,
gender: it.gender !== undefined ? it.gender : null,
age: it.age !== undefined ? it.age : null}))
Please give me any suggestions. Thank you.