- 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:00 AM
do you want to set assignment group on record producer form variable ? if yes then maintain it on custom table ( make sure custom table creation now consider as license ) and use script include+ glide ajax to set it over record producer form .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-21-2020 05:06 AM
Hi,
Thank you for your information.
I want to set the assign group of the created record after sending the record producer.
Can the method you told me work for my use case?
Is there any reason not to recommend this assignment rule lookup?
Regards,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-21-2020 05:11 AM
i am assuming here, so you will not have any assignment group variable over record producer form ? or will it available ?
if its available then yes using script include and glide ajax you can populate over record producer assignment group variable also on record producer assignment group variable map it with record group field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-21-2020 05:19 AM
Hi,
Record producer form don't have assignment group variable.
I want to set an assignment group by a combination of custom categories and subcategories.
Regards,