how to stop drilling down the report?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2017 08:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2017 09:02 AM
Could you please share some more details if possible screenshots ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2017 09:05 AM
Please check below to disable report drilldown.
https://docs.servicenow.com/bundle/helsinki-performance-analytics-and-reporting/page/use/reporting/t...
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2017 09:26 AM
Hi,
Most probably,the options which are visible under the Drop Down menu of the Report Page like Report Drill Down are not accessible for users to modify. One way to Restrict Users from using that Option would be to disable it and Can be done using some DOM scripts as mentioned below:
1) Create a UI Script as mentioned below:
Script:
window.addEventListener('load', reportVisitorStyle());
function reportVisitorStyle()
{
window.onload = function()
{
document.getElementById('report_drill_link').style.display = 'none';
};
}
Make sure the Global checkbox on the UI Script form is marked as True. This will do the trick for you.
Although DOM is not recommended, but I think this is the only option to Restrict Users from using Report Drill Down option.
Hope this helps.Mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke