- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 01:35 AM
Hello,
How can we remove the suggestion icon next to Short Description on the Incident form?
We have a requirement to only remove this on the incident form and not other task tables.
Thanks
Solved! Go to Solution.
- Labels:
-
User Interface (UI)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 01:43 AM
Hi
Go to short description -> configuration dictionary -> choice remove suggestion and add none.
Please mark helpful and correct.
Regards
Nikhil

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 01:44 AM
Hi there,
You could add a Dictionary Override with:
knowledge_search=false
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 01:52 AM
Hi,
I saw a question recently on the same lines. Im afraid there is no OOB way to do it.
You can remove it at the task level which will cascade down to all extended tables as well. Or else you use dom. Using Override dictionary and adding the attribute knowledge_search=false will remove the book icon for knowledge search but bulb icon for suggestion will still be there.
If you want to use dom then on Incident you can run the following script in any onload client script:
gel('lookup.incident.short_description').outerHTML='';
-Anurag

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 01:55 AM
And to show the difference with the solution I proposed:
Regular Task extended:
With the dictionary override:
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 01:58 AM
suggestion icon and knowledge search icon are two different entity,
i don't think this will hide the suggestion icon, it comes from "choice" field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2020 02:04 AM
Ah your right... I see I did this with also adding a onLoad Clients Script:
So in case of Archana. this would be lookup.incident.short_description.
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field