Global search for "desktop" returns more catalog item results than expectedIssue <!-- 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; } 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:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When we do a global search for 'desktop', it returns results which actually don't contain the term desktop in meta, short_description, name, description fields of the catalog item. Release Any support release Cause The behavior is seen because of a field on catalog item 'mobile_picture_type' which has default value of 'use_desktop_picture'. In the dictionary entry for this field, there is no attribute no_text_index=true. So this field is being used in text search and returns records which have mobile_picture_type set to use_desktop_picture. Resolution This is the expected behavior with global search. If the intended behavior is not to return the results that have 'use_desktop_picture' in 'mobile_picture_type' and just want to return the results based on description, meta, name, short description only, add the attribute no_text_index=true for mobile_picture_type dictionary record on sc_cat_item table. Once this is added, regenerate the text index for sc_cat_item table. This can be done by going to Catalog Item collection record, and clicking on Generate Text Index related link. Once the text indexing is finished, the results with 'use_desktop_picture' in 'mobile_picture_type' will no longer be returned. Additional Information Below is the link to documentation for more information on process of regenerate text index for a table : https://docs.servicenow.com/csh?topicname=t_RegenerateATextIndexForATable.html&version=latest