Can we create additional searchers in the contextual search engine?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2017 10:07 PM
Is there a possibility of creating additional Searchers in 'cxs_searcher_config' other than the standard ones, like if I need a new contextual search for some custom tables..
- Labels:
-
Search
- 4,184 Views

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2018 06:23 AM
It looks like the ability to create searchers and search resources is restricted to maint. Maybe a HI ticket to have ops create the new searcher?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2020 09:59 AM
I have searched but ended up creating via Background scripts
var ga = new GlideRecord("cxs_searcher_config");
ga.initialize();
ga.name = "IT Knowledge Only";
ga.interleave = true;
ga.active = true;
ga.insert();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-09-2021 09:24 AM
Hi,
Did you find it possible to search by a related custom table? Basically, I want to display related custom tickets in the contextual side panel.