- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2018 10:24 AM
We are trying to figure out how/where to modify the "Preview" screen on reference fields in the Service Portal. When you hover over the "i" it pops up a preview of the current record but there are issues with the form that is displayed.
1. It has multiple Save buttons
2. The form doesn't appear to use ACLs, our users are allowed to make changes to fields displayed even without rights.
We'd like to know:
1. Where is this form modified in the portal?
2. How do we remove the additional "Save" ui actions?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 08:50 AM
I actually found out this is a known issue. Service Now has a documented problem PRM676928 - See Below:
Solution Proposed:
I looked into the details of the issue and noticed that there is a known problem for this issue-PRB676928 and I have attached it here in the incident for your reference.
This Problem was closed as working by design. The reason is, that in the service portal, when you click on the reference icon, a complete functional form is opened, unlike what happens on the backend (where we use the popup view). Since the form is complete functional, we cannot use the popup view, and the default view is used.
However, there are enhancement requests that are created for supporting the popup view in service portal.
There is a community article that talka about hiding/disabling the reference icon.
https://community.servicenow.com/thread/227140
In the navigator type: Service Portal>pages>
then search ID=bcm_cat_item
then in the Page Specific CSS
You would need to add something like this:
.add-on > button.lookup {
display:none;
}
.field-has-reference .reference {
display: block;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2018 11:02 PM
Where is this on Portal?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 08:50 AM
I actually found out this is a known issue. Service Now has a documented problem PRM676928 - See Below:
Solution Proposed:
I looked into the details of the issue and noticed that there is a known problem for this issue-PRB676928 and I have attached it here in the incident for your reference.
This Problem was closed as working by design. The reason is, that in the service portal, when you click on the reference icon, a complete functional form is opened, unlike what happens on the backend (where we use the popup view). Since the form is complete functional, we cannot use the popup view, and the default view is used.
However, there are enhancement requests that are created for supporting the popup view in service portal.
There is a community article that talka about hiding/disabling the reference icon.
https://community.servicenow.com/thread/227140
In the navigator type: Service Portal>pages>
then search ID=bcm_cat_item
then in the Page Specific CSS
You would need to add something like this:
.add-on > button.lookup {
display:none;
}
.field-has-reference .reference {
display: block;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2019 03:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2019 04:38 PM
As explained by BCM-Michaelm the view being used in Service Portal reference fields are default view. So if you make change to the default view by using client script or by just removing these two fields, This should solve your problem.
Please note : This question has already been marked as solved, It will be good if you open a new thread for this query.