How can I reorder the Experiences on the Workspaces drop-down menu?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2025 06:27 AM
I have tried Below solution
I created BR to make the order Descending but it is not working
written this script on table:
sys_ux_registry_m2m_category
Current order showing :
Can some help and let me know what's wrong here ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2025 11:58 PM
try this and clear instance cache using cache.do and then logout and login and see
(function executeRule(current, previous /*null when async*/) {
current.orderByDesc('order');
})(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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2025 12:12 AM
Add this new property with value order and clear the cache to have the ordering. No need of a query Business rule
glide.ui.next_experience.workspace_sorting | order |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2025 12:33 AM