- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2017 05:03 PM
Hi everyone,
Just as a bit of heads up, I am new Service Now management and am just struggling to navigate through some things. One of the things I am trying to figure out is that our Caller field in the incident module can be searched via username or first name. I am just trying to figure out where I can play around with those settings. I am using a link pasted below as a reference for changes I can make. My end goal is to get last names searchable as well in the Auto Completer but I want to see what else I can do for fun. Can anyone tell me where I am supposed to go or provide me with the service now wiki that tells me where to go.
Thanks!
Auto-Complete for Reference Fields - ServiceNow Wiki
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2017 06:57 PM
Michael,
I think you're close - the only thing you need to do to a reference field to have it search multiple columns is to set the field's attributes like this:
- ref_auto_completer = AJAXTableCompleter
- ref_ac_columns = first_name,last_name
- (optional) ref_ac_columns_search = true (enables searching on the columns defined in #2).
These are articles which tell you everything you need to replicate the example I show below.
- Configure auto-complete to match text from any reference field
- Dictionary attributes for auto-completion of reference fields
Here's an example of how I configured a hardware reference on Incident to search multiple columns, and how it's configured.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2017 05:09 PM
Are you looking for a practice instance? If Yes,
Register and login to
https://developer.servicenow.com/app.do#!/home
Under Manage> Request Instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2017 05:13 PM
If you have an instance and finding difficulty to find the Auto-Complete
Then goto
Dictionary Attributes - ServiceNow Wiki
Once you open the dictionary entry of a field, you need to click on related link 'Advanced View' for the 'Attributes' option to be visible on form.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2017 05:46 PM
Thanks for your response Srini. I do have a developers instance. Unfortunately your comment tells me I've been working in the right place this entire time and can't figure out how to get it working. I've been working in the Caller dictionary item with a reference type. I added the attribute Reference auto completer columns search with a value of true. I'm thinking that maybe I need to add attribute "Reference auto completer" but the value aludes me for what I should state if I want it to check for First Name, Last Name and Username (which it already does two).
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2017 06:57 PM
Michael,
I think you're close - the only thing you need to do to a reference field to have it search multiple columns is to set the field's attributes like this:
- ref_auto_completer = AJAXTableCompleter
- ref_ac_columns = first_name,last_name
- (optional) ref_ac_columns_search = true (enables searching on the columns defined in #2).
These are articles which tell you everything you need to replicate the example I show below.
- Configure auto-complete to match text from any reference field
- Dictionary attributes for auto-completion of reference fields
Here's an example of how I configured a hardware reference on Incident to search multiple columns, and how it's configured.