- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2023 10:50 PM
How to auto-set the priority of the incident, when an incident is created through the inbound mail address of the particular assignment group to p3. How to set using business rules. Could you help here.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2023 03:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2023 05:19 AM
Create a on before business rule, which will run when assignment group is "your assignment group". this business rule should run on insert and update. On Advance tab you can use the below given script :
current.urgency = "2";
current.impact = "2";
This will automatically change the priority to 3 , the above values are as per default priority matrix defined. Priority is calculated on impact and urgency therefore depending on the value of impact and urgency the value of priority changes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2023 04:05 PM
Thank you @Mehta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2023 03:02 AM