Mosh Posted October 12, 2023 Posted October 12, 2023 Hello Is there a way we can obtain a log of users that have accessed a particular ticket? (where they haven't left a footprint on the timeline?). Thanks
Jim Posted October 12, 2023 Posted October 12, 2023 I've asked this one before and essentially there is no 'foot printing' built into this, the only way to view is if an action was taken sadly 1
Mosh Posted October 12, 2023 Author Posted October 12, 2023 I thought this might be the case - thanks very much for confirming Jim 1
Gareth Cantrell Posted October 12, 2023 Posted October 12, 2023 You could report on the h_sys_pagevisit_log table which was introduced a few months back. This gives you the path that was visited, the user who visited and the timestamp of the visit. I use the following query in Database Direct to examine the table, but you could do something similar in a report: SELECT * FROM h_sys_pagevisit_log WHERE h_path LIKE '%servicemanager/request/view/%' OR h_path LIKE '%com.hornbill.servicemanager/request/%' 2
Mosh Posted October 12, 2023 Author Posted October 12, 2023 That's brilliant, thanks @Gareth Cantrell
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now