Report of which users have SEEN a document

I’m trying to figure out if a report can be made showing users who have seen a document. I have “track seen” enabled on the doctype but I don’t understand where this information is stored. Is there a log somewhere I can query?

Ideas?

Hi,
as I’ve seen frappe.frappe.model.db_schema.py
if getattr(self.meta, ‘track_seen’, False):
fl.append({
‘fieldname’: ‘_seen’,
‘fieldtype’: ‘Text’
})
when you activate “track seen”, field “_seen” will be added to the doctype where you have activate it.
so I suppose you should take that value from doctype where you have activate. I hope it helps you

1 Like