Variable filter based on another Variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2016 02:19 PM
I have a variable that is a reference field on assignment group called 'ref_bua_group'. When a user selects the assignment group, I want the user variable called 'ref_bua_user' to only display users based upon on that assignment group select. Does anyone know how i can accomplish this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2016 02:21 PM
Hi Lisa,
You can achieve this via reference qualifier condition.
http://wiki.servicenow.com/index.php?title=Reference_Qualifiers

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2016 03:12 PM
If you're using a record producer, you will use what Pradeep referenced within the Variables Attributes field and the Reference qual field.
The Variables Attributes field on your 'ref_bua_user' variable would be:
ref_qual_elements=ref_bua_group
The Reference qual field would be whatever your encoded filter would be, something like:
javascript: 'XXX='+current.variables.ref_bua_group;
where XXX is the field on the user table that references the group field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2018 12:50 PM
Thank you! This solved my issue with ref quals in my record producer!