- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2024 05:59 AM - edited 06-25-2024 06:00 AM
Hello All
i am trying to create either a business rule or a UI policy that, once i reject the ''propose major incident'' will move the urgency of the incident from 1 to 2.
Any suggestion on how to do it? Should i change the script here (and if yes what should I add?)
thank you!
marta
Solved! Go to Solution.
- Labels:
-
Major Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2024 07:42 AM
Hi @Marta G
You can either create a UI Policy or Business rule.
In business Rule:
if (current.u_propose_major_incident == 'rejected' && current.urgency == 1) { // example for your reference
current.urgency = 2;
}
Thanks and Regards
Sai Venkatesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2024 07:31 AM
You can simply create a business rule with a condition of "Major Incident State changes to Rejected" and update the Urgency as necessary.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2024 07:42 AM
Hi @Marta G
You can either create a UI Policy or Business rule.
In business Rule:
if (current.u_propose_major_incident == 'rejected' && current.urgency == 1) { // example for your reference
current.urgency = 2;
}
Thanks and Regards
Sai Venkatesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 03:35 PM
Hi @Marta G
If the answer is working you could you please mark it as a solution
Thanks and Regards
Sai Venkatesh