Hey all, I'm working in a workflow with this purpose: Assigning a specific role to someone, the person to whom the responsibility was granted will receive a form that will be used to acknowledge that responsibility. If the person acknowledges this responsibility, the table-level responsibility will automatically be assigned to the column level, and all columns belonging to the table in question will receive the same role and user associated with the table. If they do not acknowledge or decline the responsibility, the asset reviewer will receive an email containing the table in question and the person to whom the responsibility was declined. So, for example, if I add a person named Barry as a Technical Steward and he acknowledges this responsibility through the form, all columns in that table will have Barry assigned as Technical Steward. That said, in my workflow start event, I have three properties: roleID and userID, which will receive the ID of the role and the assigned user. Both are marked as string types and are marked only as readable, with no default value, since, after the responsibility is inserted, they will automatically receive the specific IDs. And there's the relationID, of type string, with a default value of an ID already assigned and marked as required and writable. I'm getting these specific errors: 1. Unable to evaluate expression: user(${startUser})
2. Unknown property used in expression: ${initiator} This tells me that the startUser, from the user task (forms task), has no value, i.e., the system isn't assigning the IDs of the assigned user or role when someone grants a role, causing the workflow to fail. Same about the initiator, once my initiator is the startUser. How can I resolve this issue? And another question: Did I correctly set the form properties of the start event as I said before?