I am trying to set a Boolean flag if a file exists so I can control a branch (found/ not found). I can do it in various languages but I am not able to do it in Process Flow.
Does anybody know how?
variables are defined in the Start node. There is a type of boolean that has a value of true or false.
You can either check for the value or reference the field
ie if you have a variable called chkflg you can do either
if (chkflg)
or
if (chkflg == true)
Great! That should do the job. I will check it out.
Thank you