Incident record producer map assignment group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hi community
What is the best way to map incidents assignment groups from a record producer that will make sure all incidents have assignment groups
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 seconds ago
Hi @AnthonyMull ,
Best practice is to set the Assignment Group directly in the Record Producer script using system properties.
This guarantees the assignment group is populated at creation time.
Assignment Rules can complement routing logic, but should not be relied on alone.
For full assurance, add a Before Insert Business Rule to catch any edge cases.
Example:
current.assignment_group = gs.getProperty('my.default.incident.assignment.group');
Use conditional logic in the Record Producer (when routing varies)
If your routing depends on user input (e.g. category, CI, region):
If this response was helpful, please consider marking it as Correct and Helpful. You may mark more than one reply as an accepted solution.
