
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 10:02 AM
On catalog item A, I put the string value shop into the "meta" field.
I have a List Collector variable on a separate catalog item B, referencing the sc_cat_item table:
When I go to catalog item B and type "shop", catalog item A does not show up:
Why?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 03:58 PM
Found it.
Needed to put the Variable Attribute to: ref_ac_columns_search=true,ref_ac_columns=meta
I started digging around in the /scripts/js_includes_sp.jsx file, and found the getReferenceColumnsToSearch() function.
In that function I noticed:
var colNames = ['name']; if (fieldAttributes['ref_ac_columns_search'] == 'true' && 'ref_ac_columns' in fieldAttributes && fieldAttributes['ref_ac_columns'] != '') { colNames = fieldAttributes['ref_ac_columns'].split(';'); if (scope.ed.searchField) colNames.push(scope.ed.searchField); }
Well, that was all I needed to deduce ref_ac_columns_search=true,ref_ac_columns=meta

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 03:58 PM
Found it.
Needed to put the Variable Attribute to: ref_ac_columns_search=true,ref_ac_columns=meta
I started digging around in the /scripts/js_includes_sp.jsx file, and found the getReferenceColumnsToSearch() function.
In that function I noticed:
var colNames = ['name']; if (fieldAttributes['ref_ac_columns_search'] == 'true' && 'ref_ac_columns' in fieldAttributes && fieldAttributes['ref_ac_columns'] != '') { colNames = fieldAttributes['ref_ac_columns'].split(';'); if (scope.ed.searchField) colNames.push(scope.ed.searchField); }
Well, that was all I needed to deduce ref_ac_columns_search=true,ref_ac_columns=meta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2020 03:39 AM
On catalog item A, I put the string value Office into the "meta" field.
I have a List Collector variable on a separate catalog item B, referencing the sc_cat_item table:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2020 03:40 AM
On catalog item A, I put the string value Office into the "meta" field.
I have a List Collector variable on a separate catalog item B, referencing the sc_cat_item table:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2020 03:40 AM
On catalog item A, I put the string value Office into the "meta" field.
I have a List Collector variable on a separate catalog item B, referencing the sc_cat_item table: