- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 04:55 AM
Hi,
I want to set an assignment group by a variables in the record producer.
This option will increase in the future.
Can these be achieved with assignment rule lookup?
Or do you create a custom table and make a mapping table to handle it?
Can it be done only with business rule?
I'm looking for a way that is as standard as possible and easy to manage without scripts.
Regards,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 06:09 AM
Hi,
I am assuming you have Category and SubCategory Field avaiable on the target table ?
If yes, then I would suggest you to go with Assignment Rule rather than the Assignment look up Rule :
You can create An Assignment Rule :
And to populate Assignment group you can script under script part something like :
if (current.category == "Hardware" && current.sub_category== "Hardware")
current.assignment_group.setDisplayValue("ABC");
else if (current.category == "Software")
current.assignment_group.setDisplayValue("XYZ");
else if (current.category == "Malware")
current.assignment_group.setDisplayValue("Security");
Let me know, if that answers your question and mark my answer as correct / helpful.
Kind Regards,
Mohammad Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 05:39 AM
Hi,
Thank you for your kindness.
Very easy to understand!
I was only thinking about having categories and subcategories as variables in the target table as well.
Does this mean that I need a field in the target table to do this?
Regards,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 05:46 AM
Hi Mi
Yes You are on the Right Track.
This is the Link from where I took help for your problem.
Please Mark Correct and Helpful
Thanks and Regards
Gaurav Shirsat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 06:09 AM
Hi,
I am assuming you have Category and SubCategory Field avaiable on the target table ?
If yes, then I would suggest you to go with Assignment Rule rather than the Assignment look up Rule :
You can create An Assignment Rule :
And to populate Assignment group you can script under script part something like :
if (current.category == "Hardware" && current.sub_category== "Hardware")
current.assignment_group.setDisplayValue("ABC");
else if (current.category == "Software")
current.assignment_group.setDisplayValue("XYZ");
else if (current.category == "Malware")
current.assignment_group.setDisplayValue("Security");
Let me know, if that answers your question and mark my answer as correct / helpful.
Kind Regards,
Mohammad Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 06:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2020 07:08 AM
Hi, Thank you for your advice.
I reconized that feature was HR-only. What are the main differences?
I am thinking of implementing it as an instance of HRSD, but I plan to use a ticket table as the target table.
I find it ideal to use that feature, but I don't fully understand it.
Regards,