Evaluating Or Conditional Second Time Stalls Workflow
Good morning, gurus!
I have an Or conditional in a workflow. If evaluated once to loop back through, things are triggered fine, workflow is looped back. If the or evaluates to loop through a second time, the workflow stalls. No errors, nothing to show what happened. I'm assuming there is a basic something I'm missing here (I do see that the wf detects there is a multiple routing of this branch, so maybe that?
I appreciate the help.
Brian Krieger
PS: Even if the Or condition is simply hardwired as:
try {
System.out.println("**PR Manager **Checking for Empty Key Roles**");
boolean continueOn = false;
if(continueOn){
result="SetupComplete";
}
else{
result="NotifyEmptyApr";
}
}
catch (Exception e) {
System.out.println("**PR Manager **Unkown Exception**");
result="NotifyEmptyApr";
}
In this case, the "NotifyEmptyApr" branch would be executed. Will execute once, but not a second time. Hence why I figure the catch in place in the system somewhere.....

