Autocomplete suggestion on service requests
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 06:22 PM
Hi Al,
I would like to know if anyone has implemented 'autocomplete' with suggestions based on the historical inputs of a Requestor.
We currently have a service catalog that will ask the Requestors for the Product Name, Transaction Type, and Application Type. After that, the next questions would be to ask for Customer's Name, Customer's Email Address, and Customer's Contact Number, and the details of the customer's request.
Same as the functionalities on the browser, is there a way to autocomplete the form based on previous requests of the Requestors?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 06:48 PM
Hi @Carlo1 ,
The information from browser comes from the cache where whatever user has types of searches gets stored in it n when the next time user starts typing it displays the relevant results.
But in servicenow that feature is not available. But it does have Reference fields where it gets value from a particular table. Fo eg name u can create a reference field n map the user table to that and then whenever user starts typing it will give them suggestions based upon the values present in the reference table.
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 06:51 PM
Hi @Carlo1
For the auto-population, you can refer below scripts:
1. Script Include (must be client call-callable):
If my response finds helpful, please indicate its helpfulness by selecting Accept as Solution and Helpful.
Thanks,
Vaibhav Nikam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 08:36 PM
Thanks for this! I will try this script, and update this forum.