- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2019 07:43 AM
Hi,
I want my Assigned To field on my incident form to always be limited to the group members of one particular group. I tried using the script include from this community post but it is not working for me.
I also dont know what to put in the Advanced Qualifier field, Ive seen many different answers. Can anyone help?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2019 07:54 AM
If you created a script include like the linked community article describes with the function - GetExecutiveMembers(). Then you can call that function in the advanced reference qualifier like so:
javascript:GetExecutiveMembers();
If you wanted to utilize a normal script include/function then the advanced qualifier would look like so (this example assumes you had a script include named "customScriptInclude" with a function named "customFunction":
javascript: new customScriptInclude().customFunction();

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2019 07:48 AM
Hi,
You can simply list the assignment_group field as the dependent field for the assigned_to. That will limit the choices to only those who are in the listed group. Like this:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2019 07:54 AM
If you created a script include like the linked community article describes with the function - GetExecutiveMembers(). Then you can call that function in the advanced reference qualifier like so:
javascript:GetExecutiveMembers();
If you wanted to utilize a normal script include/function then the advanced qualifier would look like so (this example assumes you had a script include named "customScriptInclude" with a function named "customFunction":
javascript: new customScriptInclude().customFunction();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2019 08:01 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2019 08:10 AM