- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 07:04 AM
Hi,
I have a List Collector field on a native table that displays selectable options using a predefined choice list within the same field. This eliminates the need to reference any external table, allowing users to select multiple values directly from the available choices.
However, I’m working with a List Collector variable, which behaves differently—it only retrieves values from a referenced table.
Issue:
I need to display the same set of choices in the List Collector variable as shown in the native table’s List Collector field. Since the original values are defined as choices (not from a table), I’m unable to replicate this behavior in the variable. Could you please advise on how to achieve this?
Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 07:31 AM - edited 04-16-2025 07:32 AM
'List Collector' is a type of Catalog Item variable. 'List' is a type of field. It would help clarity to use the correct terminology. The choices on a List type field will reside in the sys_choice table, so all you need to do on the List Collector variable is reference the sys_choice table, adding in the fields that limit the records to this particular List field - name (Table) and element for starters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 07:31 AM - edited 04-16-2025 07:32 AM
'List Collector' is a type of Catalog Item variable. 'List' is a type of field. It would help clarity to use the correct terminology. The choices on a List type field will reside in the sys_choice table, so all you need to do on the List Collector variable is reference the sys_choice table, adding in the fields that limit the records to this particular List field - name (Table) and element for starters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 09:49 AM
Thanks @Brad Bowman this helped me.