Anyone ever have a branch fail in PFlow? I am adding some functionality to an existing flow (Requisition Self-Service) where a certain type of req creates a PO on PO23.1. The PO creation is not the problem - I create a PO using an AGS Call (in PFlow 9 it's a transaction) which then leads to an assign node. The assign node works as intended (assigning the ags returned codes and messages). However, then the assign node leads to a branch - this is where it is failing. The branch "branches off" to either an email to the PFlow admin or continues with the flow as required. I use this at every single ags/transaction. Why would it be failing all of a sudden?? I've tried re-creating it by both copying and rekeying to no avail. Please help!
Info: PFlow 9 (LSF9.0 sp4, Apps 8.0.3) Windows / SQL...
Thanks!!!
-Shari
Thanks, David -
Yes, I always include a "true" value as the last "catch all" in all of my branchs.
I'll take a look at your other suggestions and make sure I don't have a variable name as a node name...although, I think the last attempt I made I just let it default...
Yes! That was it - the following query node had the same name as my variable. Thanks much, David!
KK -
The first condition is:
AgsReturnCode != "0" && AgsReturnCode != "116"
If this condition is met - there was a failure...the admin is emailed the code and message and they have to fix.
Other wise the condition is a "true" - and the flow just continues.
Does this help? The problem that caused my branch failure was the next node that followed the true condition - the node name was the same as my variable name.