I need to create Change Task after RITM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2025 11:02 PM
Good morning.
I have a requirement, that on the Catalog form, we have a Change Request field. So, before submitting the form, the user should have created a Change Request first, then only he can fill out the form.
Once form is submitted, RITM gets created and under it, we need to create Change Task, instead of SCTASK.
I have achieved this using scripting in workflow. But the problem is, Change Task is getting created under the Change Request, which we created earlier, but not under RITM. But it should also get attached on the RITM>Change Task.
How to achieve this?
The script is below which works but Change Task is not getting attached on the RITM, (although it getting attached under the Change Request).
WorkFlow Run Script 1:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2025 12:05 AM
change_task should get associated with CHG only and not RITM
Why would you want to associate it with RITM?
RITM has CHG and CHG has change Task
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2025 01:00 AM
Thank you for marking my response as helpful.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2025 12:23 AM
By process your requirement is not valid, the change task gets created in the Ctask table and catalogue task get created in the SCtask table, so what is your business use case to link task in task.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2025 11:09 PM
Here’s the situation from a ServiceNow architectural perspective:
ServiceNow is designed to maintain distinct processes for Change Management and Service Catalog. Each of these has its own workflow and record structure, and they aren't typically intended to be tightly coupled in the way you're requesting.
Why it doesn't work as expected:
RITMs (Requested Items) are part of the Service Catalog process, which is focused on fulfilling user requests for services or products. These records are designed to track requests for services, not changes to the system itself.
Change Requests and Change Tasks are part of Change Management, which is focused on managing and controlling changes to IT services and infrastructure. They are designed to have their own lifecycle, approvals, and relationships that are separate from catalog requests.
In your case, the Change Task is being created under the Change Request, which is correct according to the Change Management model. However, ServiceNow does not natively allow for attaching Change Tasks directly under RITMs, because these are separate process flows with their own objectives.
Options you can explain to leadership:
Keep workflows separate but linked: We can consider having the Change Request created as part of the catalog item’s workflow, but still keep them as separate records. You could link the Change Request to the RITM (for traceability), but the Change Task would still belong to the Change Request. This way, we respect ServiceNow’s out-of-box structure while still providing the necessary linkage for tracking.
Custom Scripting: While it’s possible to create custom scripts to force a Change Task under a RITM, this would break the separation of workflows and could lead to complications with the standard Change Management and Service Catalog processes. The custom code would need to handle these relationships explicitly, which could be prone to errors and maintenance challenges over time.
Reconsider process flow: We could evaluate whether a different process design would be more in line with ServiceNow’s intended use. For example, the Change Request could be triggered based on certain conditions in the Service Catalog form, but the Change Task would remain under the Change Request, which is the correct place for it.
Key Point for Leadership:
While the requirement to tie Change Tasks to RITMs is technically feasible, it is not how ServiceNow is designed to operate, and implementing this could introduce unnecessary complexity and potential long-term issues. I recommend keeping these workflows distinct to ensure that we align with best practices, maintain system stability, and minimize future maintenance.
ServiceNow Engineer
Solutions: IT | ServiceNow Expertise Transforming Challenges into Solutions
LinkedIn: https://www.linkedin.com/in/blazellanos/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2025 02:06 AM
Thank you for your valuable reply, Blaze. Really appreciate.