Commit 6acab01
authored
Create README.md
🛠️ Smart Incident Assignment – Auto-Assign Incident to Idle Members
📘 Overview
This Business Rule automatically assigns incidents to a predefined support group when specific keywords, such as “disaster” or “emergency”, are present in the incident’s short description. It also ensures that incidents are distributed among group members who are currently idle, maintaining workload balance across the team.
🧩 Problem Statement
During critical situations, incidents tagged as disaster or emergency need immediate attention.
Manually assigning these incidents can lead to:
Delays in response
Uneven workload distribution among support team members
Errors in group assignment
💡 Solution
The Auto-Assign Support Group Business Rule solves this by:
Checking if the incident’s short description contains “disaster” or “emergency”.
Automatically populating the Assignment Group field with Support Group.
Scanning all active members of the group and checking if they already have open incidents.
Assigning the incident to the first idle member to ensure balanced workload.
Providing an info message if all members are currently busy, allowing fallback handling.
🚀 Benefits
✅ Ensures critical incidents are promptly assigned to the correct support team.
✅ Maintains balanced workload across team members, avoiding overloading a single user.
✅ Eliminates manual assignment errors, saving time and improving response efficiency.
✅ Enhances operational visibility and accountability in high-priority scenarios.
🛠️ Implementation
Table: Incident [incident]
Business Rule Type: Before Insert / Before Update
Trigger: When short description contains disaster or emergency1 parent e4e86a4 commit 6acab01
1 file changed
Lines changed: 48 additions & 0 deletions
File tree
- Server-Side Components/Business Rules/Smart Incident Assignment – Auto-Assign Incident to Idle Members
Lines changed: 48 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
0 commit comments