- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2021 05:09 AM
There is a button next to Reference type Field in our ServicePortal form. It displays a full view of the object of reference. The end user should have no access to that functionality.
How to remove that using Form Designer or any other method?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2021 05:26 AM
Hi,
You can remove that reference icon by adding this attribute to the field:
ref_decoration_disabled=true
However, this does it for more than just service portal.
Otherwise, see this thread for a service portal specific option: https://community.servicenow.com/community?id=community_question&sys_id=e02fc3e1dbdcdbc01dcaf3231f96...
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2021 05:26 AM
Hi,
You can remove that reference icon by adding this attribute to the field:
ref_decoration_disabled=true
However, this does it for more than just service portal.
Otherwise, see this thread for a service portal specific option: https://community.servicenow.com/community?id=community_question&sys_id=e02fc3e1dbdcdbc01dcaf3231f96...
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2021 05:39 AM
Thank you, I used this snippet to fix my issue:
.field-has-reference > .add-on {
display:none;
}