How to create a text search list view for a particular tableDescription<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } .spanColor { color: #646464; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> How to create a text search list view for a particular table Resolution When performing a global search in a ServiceNow instance, the various task lists returned by the query will first attempt to locate a list view that is associated to the Text Search. If that is not found, the system will use the list for the table that is associated to the Default view. Administrators can create Text Search view versions of lists to control exactly what columns appear when doing a global search. To create a text search view for a particular table you may take the following actions: 1) Access the instance as an administrator 2) Go to the list of records for the table in question. For example, if you wanted to do this for incidents you would go to any list of incident records or directly with the URL: https://instance.name//incident_list.do 3) If you are using List v2 then right click in the white space between two column headers and select Configure -> List Layout OR If you are using list v3 then choose the three bar icon at the top and select List Layout 4) Once the list layout window is displayed click the View name drop down field and choose New from the bottom of drop down menu as follows: 5) Enter "Text search" into the Create New View popup window as follows: 6) Click the OK button 7) Add/Remove fields from the Selected slushbucket to get the desired fields into the list 8) Click the Save button That will now create the desired list view to be used when global text searches are done against that particular table.