Reference field auto complete is not showing all resultsIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms When entering text into a reference field with autocomplete, the result list does not contain all the available entries and may not show a match even if you entered text that should exactly match with a particular result. You will see a (non-functional) link at the top of the list: "Showing 1 through X of Y". Release All Cause There is a system property glide.xmlhttp.max_choices which controls the number of results shown. If this limit is too low or the display order of the results is not set properly, specific results may not appear in the list. Resolution You can add an attribute to the dictionary entry to order the results by the column of your choice. For example, to order a result set by the name field, you would add: ref_ac_order_by=name to the attribute field. You may also increase the limit of the glide.xmlhttp.max_choices property, but keep in mind this will affect all choice lists and will carry a performance hit. Additional Information https://docs.servicenow.com/csh?topicname=c_AutoCompleteForReferenceFields.html&version=latest