Assignment rule not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2019 06:55 AM
Attempting to define Assignment Rules in Change Records to allocate an Assignment group based on the contents of the Business Service field.
I have been trying variations on the rules listed below but nothing seem to put anything in the Assignment Group field
- Labels:
-
Change Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2019 07:09 AM
Hey johnrob18,
Assignment rules only works on submit of the form.
Submit or save your form and see it will be populated.
Assignment rule doesn't work on change.
If my reply has helped you,Kindly click the Helpful button.
If my reply is the answer you were looking for, Kindly click the Accepted Solution button.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2019 07:21 AM
Hi,
if the assignment rule does not work on Change how can I auto assign a record to a group?
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2019 07:27 AM
Hey,
If you want on change then write onchange client script for business service field
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading || newValue == '') {
return;
}
var k=g_form.getValue('business_service');
if(k=='sys_id of that business service')
{
g_form.setValue('assignment_group','sys_id of group');
}
}
If my reply has helped you,Kindly click the Helpful button.!
If my reply is the answer you were looking for, Kindly click the Accepted Solution button.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2019 07:15 AM
Hi,
If you're hoping to do this on a record that's already been created, but then a user changes or updates the business service and you want it to them auto assign to a group...you can build an onChange client script to support this.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!