- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2025 01:52 AM
Hello,
Can anyone please help on the below requirement.
In change request in the related list there is impacted services/CIs present.
I need to make mandatory it if impacted services/CIs has not been added in the change request.
Could anyone please help me on this.
Regards,
Mansi.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2025 03:50 AM
Hello @Mansi roy
I am not sure how your impacted services are calculated. But if it just relies on the services field - you can make it mandatory using client script, BR or anything.
Else, you can use below 👇 BR
if (!new GlideRecord('task_ci').addQuery('task', current.sys_id).hasNext()) {
gs.addErrorMessage('At least one Impacted Service must be added before proceeding.');
current.setAbortAction(true);
}
In the condition field add suitable conditions like state changes to implement it asses or review whatever you prefer, on update business rule.
Kindly mark my answer as helpful and accept solution if it helped you in anyway. This will help me be recognized for the efforts and also move this questions from unsolved to solved bucket.
Regards,
Shivalika
My LinkedIn - https://www.linkedin.com/in/shivalika-gupta-540346194
My youtube - https://youtube.com/playlist?list=PLsHuNzTdkE5Cn4PyS7HdV0Vg8JsfdgQlA&si=0WynLcOwNeEISQCY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2025 01:10 PM
Hello @Mansi roy
Please confirm if you checked my answer. Kindly mark my answer as helpful and accept solution if it helped you in anyway. This will help me be recognized for my efforts and also it can move from unsolved bucket to solved bucket.
Regards,
Shivalika
My LinkedIn - https://www.linkedin.com/in/shivalika-gupta-540346194
My youtube - https://youtube.com/playlist?list=PLsHuNzTdkE5Cn4PyS7HdV0Vg8JsfdgQlA&si=0WynLcOwNeE