How to make default search option in list view
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 07:54 AM
Hi,
I want to set opportunity summary as the default search option on the list.
How this can be done?
Regards,
Shoheb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 10:17 AM
To the best of my knowledge this is not possible. The reason is that ServiceNow selects automatically the column in the selection which is sorted at the moment:
If you want to force a default sorting (and thus a preselection in the search bar) you could add a corresponding URL parameter to a module, like this:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 11:36 AM
Hi @Shoheb_IbaaBoss Have you checked the article below ?
You can add User Preference to make your column on default search option .
Change the default search column on list view
a) Go to sys_user_preference table
b) Create a new record
c) Fill in the fields as below:
Name - sys_user.db.order (tablename.db.order)
Value - sys_created_on. (column name you like to default on)
Type - String
System - Checked (true)
d) Save the record
Thanks,
Harsh