- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2024 06:39 AM
Hello,
I'm an end-user and would like to know if there is a way to remove (clean) Recent Selections (see attached).
Thanks
Greg
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2024 04:48 PM
Hello - I am not 100% sure if you can clear it without admin access. But please try steps in below KB.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0747334
Please mark my answer correct and helpful if this works for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2024 02:13 PM
I found another post that did answer this -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2024 02:24 PM
Thank you!!! I did try this solution, but I believe you need to be an Administrator to execute the sys_ui_recent_selection list.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2024 04:48 PM
Hello - I am not 100% sure if you can clear it without admin access. But please try steps in below KB.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0747334
Please mark my answer correct and helpful if this works for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2024 08:35 PM
Do you want this to happen for 1 user or for all users?
the recent selections are stored in sys_ui_recent_selection table
You can use before insert BR on sys_ui_recent_selection table
Something like this
(function executeRule(current, previous /*null when async*/) {
if (current.field_name == 'your_field_name' && current.user == 'specific_user_sys_id') {
current.setAbortAction(true);
}
})(current, previous);
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader