Ankur Bawiskar
Tera Patron
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 12-10-2024 08:57 PM
Did you know that you can clear out the "Recent Selections" that appears up on the reference fields?
On the reference qualifier fields, Recent selections are shown. If you wish not to show some of those recent selections on the list, please follow the below procedure from link.
How to clear out the "Recent Selections" that appears up on the reference fields.
If you wish this to happen for particular field and particular user then use before insert BR on sys_ui_recent_selection table and abort
(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);
- 459 Views