- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2022 11:22 PM - edited 11-22-2022 09:59 PM
Similar to the attached screenshot, i want the searches on my custom table be logged to sys_search_event_list, whether search is made in the portal, on the platform or in the agent workspace. Is there a way to this?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 12:48 AM
Hi @Mel A ,
I believe you can use "sys_search_source_event" table, which is present as "Search Events per source"
The Search Event per source [sys_search_source_event] table stores records correlating search strings with results from a specific table, here called a data source. A search can query multiple tables. The sys_search_event table lists one record for the entire search, while the sys_search_source_event table lists one record for each data source (table) queried.
For more details, visit this:
Although, its not recommended to build reports on the system tables, but if you can break down the number of records with filter condition, that can workout.
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2022 11:43 PM
Hi @Mel A ,
Just out of curiosity, why exactly do you want to do that?
Is the OOB logging not able to meet your requirement, unnecessarily storing the logs in a different table.
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 12:13 AM
Hi @Aman Kumar S , thank you for the reply. The requirement is to have an adoption report, if the users are actually using the custom application/table that we made. We also want to find out how may searches are made by a particular user.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 12:48 AM
Hi @Mel A ,
I believe you can use "sys_search_source_event" table, which is present as "Search Events per source"
The Search Event per source [sys_search_source_event] table stores records correlating search strings with results from a specific table, here called a data source. A search can query multiple tables. The sys_search_event table lists one record for the entire search, while the sys_search_source_event table lists one record for each data source (table) queried.
For more details, visit this:
Although, its not recommended to build reports on the system tables, but if you can break down the number of records with filter condition, that can workout.
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 02:01 AM
Hi @Aman Kumar S , this is very helpful. Can you guide me on how the searches on my custom table be logged in sys_search_source_event? Thank you.