- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-07-2025 03:44 AM
Hi
I need help to add a default sorting filter for everyone. and every time if he search any problem in related list incident it should be sorted by "resolved" descending
My Requirement: by default for every user in problem record, incident related list sorted by resolved field by descending.in both native view and service operation workspace
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-07-2025 03:49 AM
Follow steps from below link,
https://www.servicenow.com/community/developer-forum/related-list-default-ordering/m-p/1782068
Thanks,
Bhuvan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-07-2025 04:53 AM
Is that a defined relationship or OOTB one?
1) if custom then in the advanced script you can add the sorting
current.orderByDesc('resolvedField');
OR
2) if it's OOTB one then this link has the solution
you need to update the user preference record
How to change the default sort order on the Knowledge Result Sort Widget
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
ā08-07-2025 03:49 AM
Follow steps from below link,
https://www.servicenow.com/community/developer-forum/related-list-default-ordering/m-p/1782068
Thanks,
Bhuvan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-07-2025 04:53 AM
Is that a defined relationship or OOTB one?
1) if custom then in the advanced script you can add the sorting
current.orderByDesc('resolvedField');
OR
2) if it's OOTB one then this link has the solution
you need to update the user preference record
How to change the default sort order on the Knowledge Result Sort Widget
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