- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi Experts,
We are trying to configure flow stages correctly in our environment and facing an issue with stage behavior.
Current Flow Configuration:
- For RITM, first check if the user is VIP or not.
- If the user is VIP → Approval goes to Line Manager.
- If the user is NOT VIP → Approval goes to IT Manager.
This logic is implemented using If / Else conditions, and the flow stages are:
- Line Manager
- IT Manager
- Fulfillment
- Completed
Issue:
When a non-VIP user submits the request:
- Approval correctly goes to IT Manager.
- Line Manager stage shows Skipped (which is expected).
- However, Fulfillment and Completed stages also show Skipped.
Ideally, these stages should remain in Pending (Not Started) until the approval is completed and the fulfillment process begins.
Why are Fulfillment and Completed stages being marked as Skipped, and how can we configure the flow so that these stages remain Pending until their turn?
Any suggestions or best practices would be greatly appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi @SaurabhMahe ,
Your flow has several end flow components, now what might happen, even if it goes to IT Manager for approval, since in the same branch you have an 'end flow' action, the flow will first check for the approval and since the approval isn't granted immediately, the flow will treat it as 'Not approved' and then it will end flow. This happens due to 'end flow' being in the same branch.
The solution I suggest:
If VIP?
→ Ask for Approval (Line Manager)
Else
→ Ask for Approval (IT Manager)
[After If/Else block]
→ Fulfillment Stage
→ Completed Stage
→ End Flow
Try the above way once and check.
*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi @SaurabhMahe ,
Your flow has several end flow components, now what might happen, even if it goes to IT Manager for approval, since in the same branch you have an 'end flow' action, the flow will first check for the approval and since the approval isn't granted immediately, the flow will treat it as 'Not approved' and then it will end flow. This happens due to 'end flow' being in the same branch.
The solution I suggest:
If VIP?
→ Ask for Approval (Line Manager)
Else
→ Ask for Approval (IT Manager)
[After If/Else block]
→ Fulfillment Stage
→ Completed Stage
→ End Flow
Try the above way once and check.
*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi @soumyadeep10 , I was also working on same approach now. The issue is with the branch. I have configured the below flow which is working fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi @SaurabhMahe ,
It's great that it is working fine now. Also, thank you for accepting my solution.
