Hi All, I have a OR split and I want to navigate to the branch based on some conditions in the process. My process is determining which branch to go. Like this
if (StringUtils.equalsIgnoreCase("reject", action)) {
workflowSession.complete(workItem,routes.get(0));
// Navigate to Route 0
}
else if(StringUtils.equalsIgnoreCase("approve", action)) {
workflowSession.complete(workItem,routes.get(1));
// Navigate to Route 1
}
but I am getting Authorizable Id is null. There is no access issues as I am doing this via admin.