I have a Pflow that has four AGS calls to update information and then I have a Branch that looks to see if any failed
!= 0 || != 0 || != 0
This is in a branch but does not work.... I just want to send the flow in a different direction if any of the AGS calls fail.
Any ideas?
What version of PFlow? If LSF9, I have seen some patches for that...
The strange part is that when I remove the branch and just send an email with the RETURN_CODE and the RETURN_MSG.... I get what I would expect to see. However when I try to direct the flow based on the success or failure of the flow it nevers uses the failure route. (even though one of the AGS calls fails).
The following should mean the AGS did NOT succeed:
agsid1000_RETURN_CODE !=0
The following should mean that at least one did not succeed:
agsid1000_RETURN_CODE !=0 || agsid2000_RETURN_CODE !=0
Is my logic correct? At least then I will know if it is Pflow or if it my branch expression. I was wondering if I should be using '0' so that the zero is seen as a string or if it should be seen as a number.
It was me.... I included the variable with - - - - - should just use the name without the
Another case of the software being inconsistent in how to write things... You use the in other nodes but NOT in the branch node expressions.
Shane