- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2025 09:49 AM
I am working on a Service Catalog item. One of the requirements is to create a list collector with a reference qualifier filter that only displays users with Type="Internal" or "External" AND that each user is NOT a member of a group called "ExpiredUsers."
I know in dropdown variables, you can use the Dynamic Reference Qualifier, which allows you to call a Script Include. How would I do this for a List Collector to achieve this result?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2025 09:56 AM
There is a reference qualifier field on a list collector that you can call a script include from just like the dynamic reference qualifier on a reference field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2025 09:56 AM
There is a reference qualifier field on a list collector that you can call a script include from just like the dynamic reference qualifier on a reference field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2025 10:02 AM - edited 06-12-2025 10:03 AM
I figured it out. I wasn't using the correct syntax to call the script.
It ended up being:
javascript: new getAllActiveUsersNotExpired().getAllNonExpiredUsers();
Boom, it worked. Thanks!