- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2025 07:02 AM
How can we display the "Add" button on change request Affected CI related List tab when the form is in "Assess" state?
Be default, this is only available when the state is "New".
All help is appreciated. Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2025 08:22 AM
I disagree with this requirement, and here’s why:
When a change moves to the "Assess" state, it signifies readiness for approval. Adding a CI at this stage could create issues. For instance, if five approvals are required in the "Assess" state and two have already been granted, introducing a new CI means the two approvers didn’t evaluate the change considering the updated CI. This undermines the integrity of their approval.
Additionally, there may be workflows triggered based on the affected CIs, which might not execute correctly due to the late addition.
I recommend reconsidering this approach before implementing any changes.
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
01-22-2025 06:17 AM - edited 01-22-2025 06:18 AM
As per new community feature you can mark multiple responses as correct.
If my response helped please mark it correct as well 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-15-2025 07:09 AM
Hi @Zubair Alam2 ,
Please follow the thread : https://www.servicenow.com/community/itom-forum/how-can-we-add-add-button-in-affected-ci-tab-on-chan...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2025 07:22 AM
you will have to check this function "canAddCI" within script include "ChangeProposed"
line 47 tells it to be shown only in New state
UI Action: https://instanceName.service-now.com/nav_to.do?uri=sys_ui_action.do?sys_id=77688cfe6f35f100e5f2b3312e3ee4e6
Remember this is the UI action condition on that button so please ensure other conditions are also satisfied
RP.isManyToMany() && (new ChangeProposed(parent)).canAddCI() && current.canCreate() && parent.active == true && gs.getProperty('com.snc.task.associate_ci').indexOf(parent.sys_class_name) > -1
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-15-2025 07:29 AM
I updated the function as this and it started showing in Assess
I added OR condition
Output: Add button visible on Assess state
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-16-2025 04:13 AM
Hope you are doing good.
Did my reply answer your question?
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