In order to approve a SO via WF , do you have to n...
# suiteflow
t
In order to approve a SO via WF , do you have to not exit the workflow in order for it to work? Doesn't seem to allow the order status = pending fulfillment unless I don't allow the SO to leave the workflow.
m
It sounds like it may be changing to pending fulfillment then exiting the workflow then restarting the workflow over which sets it back to pending approval
If you look at the workflow logs it should tell you the sequence of what’s happening
You can either make a checkbox called “approval workflow complete” that gets checked after approval then put a condition on WF initiation of approval workflow complete = F or use do not exit workflow on the last state
Personally I usually use do not exit workflow on ALL my approval workflows I build
t
Okay, so it's not a big deal to just to now exit workflow?
Other than if someone needs to pending approval it's locked in the state
m
Yes there is no performance impact or issues with the record. In many cases there is actually a performance improvement to using do not exit workflow
I find it helps in many cases because when you want to extend or add on to existing workflows then historical records remain in the state(s) they are in so you can just easily transition to new states instead of starting the whole workflow over to get to the new states
t
Thank you!