TejaswiniS08668
ServiceNow Employee
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
2 hours ago
Understanding Assignment Group in Trigger Rules
Assignment group conditions work differently depending on when your trigger runs. Include assignment group in your conditions only when the trigger runs on update, not on creation.
There are Two Trigger Types:
| On Create | On Update |
| run_trigger = run_once | run_trigger = trigger_field_changes |
| This assigns the record to the appropriate assignment group based on what group is mentioned in the group field( "What action to take UI Section) | This is triggered whenever the selected trigger_field changes. For example: When assignment group changes, then each time the the trigger_action gets invoked. |
| The conditions to match here cannot contain "assignment_group= "group_name" since this trigger_rule is used for populating the right assignment group. | The conditions here can contain a check on a spcific assignment group. For example: A check can be in place which mentions that when every time assignment group changes and assignment_group="group_name" invoke the trigger action |
| Examples showing you to configure trigger rules for this case.
|
|
Note: If there is a scenario where while creation of a record populating the assignment group is mandatory, the update scenario can be made use of to trigger the On-Call Escalation flow.
Labels:
