Share all details related to your problem, including any error messages you may have received.
Hello everyone,
I’ve been working on an usecase which involves passing “workItem-Owner” value into workItemForm in Approval step of business process.I tried adding Owner to Send and Return but it didn’t work could you please help me on this
Do you have the owner’s name passed into a workflow variable?
if so, did you try using the script option to return the workflow variable that has the owner value?
If that doesn’t work try returning the identity object not the owner name (String). Try this Identity wkItemOwner = context.getObjectByName(Identity.class, "*WorkflowVariable where owner name is stored*");