You are viewing limited content. For full access, please sign in.

Question

Question

Laserfiche Forms Auditing

asked on November 19, 2020

Where can I retrieve a report on which accounts accessed Forms successfully within a given period.

0 0

Answer

SELECTED ANSWER
replied on November 20, 2020

Hi David,

Audit for user's last login time and last logout time is added in Forms 10.4.1, you can use following query to check which accounts have logged in Forms within a given period.

SELECT u.username,u.displayname,u.last_login_time,u.last_logout_time
FROM [dbo].[cf_users] AS u
WHERE u.last_login_time is not null AND u.last_login_time BETWEEN '{STARTTIME}' AND '{ENDTIME}'

 

Is the information enough for your case?

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.