Overview
The customer requested information about a document that was moved, specifically who move it. This article provides information about getting the details of the document movement.
Information
The action of moving a document get registered as a handleMove called on OutcomeManagerImpl
on the Jive audit log of the application database. Also in this table, you can find more information about the document that was moved, in the details column.
If for example, you are looking for information on who moved the document DOC-1111, you can execute the following query:
SELECT * FROM jiveauditlog WHERE description like 'handleMove' called on OutcomeManagerImpl' AND details like '%DOC-1111%' ORDER BY timestamp DESC;
This will show you all the entries of this document starting with the most recent entry. If you check the userid
field, you can find who moved the document either using the admin console or querying the jiveuser
table.
Comments
0 comments
Article is closed for comments.