How can I reorder the Experiences on the Workspaces drop-down menu?

tabrez ahmed
Tera Contributor

I have tried Below solution 

I created BR to make the order Descending but it is not working

 

tabrezahmed_0-1753276811304.png

written this script on table: 

sys_ux_registry_m2m_category

 

 

(function executeRule(current, previous /*null when async*/) {

    current.orderByDesc('page_registry');

})(current, previous);
I want to show below order
 
 tabrezahmed_1-1753277152224.png

 

Current order showing :

tabrezahmed_2-1753277213167.png

 Can some help and let me know what's wrong here ?

Thanks 

 

 

3 REPLIES 3

Ankur Bawiskar
Tera Patron
Tera Patron

@tabrez ahmed 

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.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Naveen20
ServiceNow Employee
ServiceNow Employee

Add this new property with value order and clear the cache to have the ordering. No need of a query Business rule