- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
I am not able to understand in this situation how would i update my record like once catalog task is closed RITM and REQ should complete. but here i am unable to find where to update this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
A common approach is:
Use Create Record action to create the Catalog Task (sc_task).
After that step, add a Wait for Condition action.
Configure the condition to wait until the Catalog Task State = Closed Complete (or any closed state you require).
Once the condition is met, add an Update Record action to update the Request (REQ) or Requested Item (RITM) state to Closed Complete.
Alternatively, if there are multiple catalog tasks, you should add a step to check that all tasks related to the RITM are closed (for example using Look Up Records on sc_task where RITM = current RITM and State is not Closed). If no records are returned, then update the REQ to Closed Complete.
So the check should be placed after the Catalog Task creation step in the Flow, using a Wait for Condition or Lookup Records logic.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hello @vikaskumarc ,
After the creation of catalog task you can just add the step "Wait for condition" i.e if the state is closed complete,
complete you RITM and REQ !
Also make ensure that you uncheck wait checkbox so that the flow doesn't stop in in Progress :
If my response helped mark as helpful and accept the solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
So basically you want to close RITM and REQ once catalog task is closed.
Simply use "Update Record" flow action on RITM 1st and close RITM after Catalog task is closed and then again use "Update Record" flow action on REQ to close REQ.
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hope you are doing good.
Did my reply answer your question
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
A common approach is:
Use Create Record action to create the Catalog Task (sc_task).
After that step, add a Wait for Condition action.
Configure the condition to wait until the Catalog Task State = Closed Complete (or any closed state you require).
Once the condition is met, add an Update Record action to update the Request (REQ) or Requested Item (RITM) state to Closed Complete.
Alternatively, if there are multiple catalog tasks, you should add a step to check that all tasks related to the RITM are closed (for example using Look Up Records on sc_task where RITM = current RITM and State is not Closed). If no records are returned, then update the REQ to Closed Complete.
So the check should be placed after the Catalog Task creation step in the Flow, using a Wait for Condition or Lookup Records logic.

