- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2023 10:19 PM
When SCTask's state is Closed Complete, I want to hide the new button in Related list
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2023 10:40 PM
Steps
1) right click on the list header for Releases related list
2) Configure list control
3) Use Omit New condition script and add this script
if(parent.state.toString() == '3')
answer = true; // omit
else
answer = false; // show
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
06-18-2023 10:40 PM
Steps
1) right click on the list header for Releases related list
2) Configure list control
3) Use Omit New condition script and add this script
if(parent.state.toString() == '3')
answer = true; // omit
else
answer = false; // show
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
02-11-2025 05:58 PM
You need to click on the hamburger menu of one of the columns in the related list to get the configure option.