1
0
-1

Hii,

I created a datalist from wf_audit_trail table containing the audit trail but I cannot check when a user x has logged in

Is there any other table related to audit trails?


Thanks

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can query wf_audit_trail using the following query statement, replacing the 'admin' with your desired username:

      SELECT  id
           , username
           , timestamp
      FROM   wf_audit_trail
      WHERE username = 'admin'
        CommentAdd your comment...