
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 05:23 AM
We are trying to take a look to see if there are any reports we no longer use. I did some searching on here but only found really old posts. They mentioned looking at the report_view table but I do not seem to have that table. Where can I go see this information?
Solved! Go to Solution.
- Labels:
-
Reporting

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 05:26 AM
Hey there Brian,
Have you tried going to Reports > Administration > Report Statistics?
If my reply helps you at all, I'd really appreciate it if you click the Helpful button and if my reply is the answer you were looking for, it would be awesome if you could click the Accepted Solution button! 🙂
I hope this helps, have a great day!
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 06:23 AM
Hey again Brian,
When you click into the report it show should a field for user. Sometimes this field is populated with a sys_id instead of an actual name so you might need to run a background script to get the actual user's name:
var gr = new GlideRecord('sys_user');
gr.addQuery('sys_id', 'enteryoursysidhere');
gr.query();
while (gr.next()) {
gs.info(gr.getDisplayValue());
}
If my reply helps you at all, I'd really appreciate it if you click the Helpful button and if my reply is the answer you were looking for, it would be awesome if you could click the Accepted Solution button! 🙂
I hope this helps also!
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 07:49 AM
Are you referring to report_stats? Is so the only user related filed I have is for the person who created the report and I had to dot walk to that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 11:03 AM
No.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 02:02 PM
Hi,
Report_stats table has a last run field on it which tells you when the report was last used.
Thanks,
Jhansi