I would like to creation of an eql report for the number of created/modified/checked out documents done by a user

I would like to creation of an eql report for the number of created/modified/checked out documents done by a user for past 15 days

Parents
  • Hello Devang Singh,

    Could you please try to get the report with the below EQL code:

    START WITH Document
    SELECT Code, AuditDetails.AuditDate,
    AuditDetails.AuditDef.ActionType,
    AuditDetails.Person.Code,
    AuditDetails.Properties.CollectionActionType
    WHERE AuditDetails.AuditDate < $Today AND AuditDetails.AuditDate > $Today-15
    This would give the list of documents modified in last 15 days.
    Hope that helps!
    Regards,
    Padma.

    Answer Verified By: Padma Kanadi 

Reply
  • Hello Devang Singh,

    Could you please try to get the report with the below EQL code:

    START WITH Document
    SELECT Code, AuditDetails.AuditDate,
    AuditDetails.AuditDef.ActionType,
    AuditDetails.Person.Code,
    AuditDetails.Properties.CollectionActionType
    WHERE AuditDetails.AuditDate < $Today AND AuditDetails.AuditDate > $Today-15
    This would give the list of documents modified in last 15 days.
    Hope that helps!
    Regards,
    Padma.

    Answer Verified By: Padma Kanadi 

Children