How to stop displaying past search results on Global Text Search in CMS Description<!-- 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; } --> Description All searches are going to be aggregated and displayed in all global search boxes as suggestions regardless of where they are issued from and who should be having access to seeing these results. When users type into the text search box it runs a search against the ts_search_stats table as follows: The search_term column starts with the characters the user entered The mean_hits column value is greater than zero The results are then ordered by: search_count mean_hits search_term Listed by what the maximum # of choices is set to (glide.xmlhttp.max_choices system property). Procedure To stop past search results displaying on Global Text Search in CMS, please see the following options available. NOTE: Please remember to test this thoroughly on a sub-production instance before pushing it to your production instance to ensure you do not run into any further issues. Option 1 Remove records from the ts_search_stats table Navigate to ts.search_stats.list from the filter navigatorIn the "Search term" column, put in the search that users are doing and find the necessary recordsDelete the records that are required to be removed Option 2 Disable the past results from appearing for CMS Navigate to sys_ui_macro.list from the filter navigatorSearch for the UI Macro named "global_text_Search_Widget"Remove line 16 and save the record Applicable Versions All versions are applicable