- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2019 07:31 PM
What I would like to do is to make the table populate values dynamically as below:
1) When [category] = A, B, or C --> [Assignment group] = X (filled automatically)
2) When [category] = D, E, or F --> [Assignment group] = Y (filled automatically)
I believe that I will need to put client script, but could someone please give me the sample script for this requirement?
Best Regards,
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2019 07:33 PM
Hi Aki,
You can consider using Assignment rules, more info on the link below:
Thanks,
Raf

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2019 07:33 PM
Hi Aki,
You can consider using Assignment rules, more info on the link below:
Thanks,
Raf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2019 12:30 AM
Hi Raf,
I didn't know that function. Thank you so much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2019 09:00 PM
Hi,
you can use assignment rule for that.
Please refer below link to create assignment rule:
Thanx,
Sushant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2019 09:28 PM
You can also use a script include to return an encoded query based on the category.
In the assignment group reference qualifier field you would have something like javascript:<API name of script include>().
then in the script include you can do a switch statement that would return the assignment group query based on 'current.category'
something like this...
function assignmentGroup(){
var category = current.category;
if(category == 'application') // JCL
return '<put an encoded query of what groups you want to show here>'