Can someone tell me if there is a way within Centricity to find out what users have logged into Centricity within the last 90 days?
Thanks,
Judy
If you have access to the SQL database you can run the query below. This will export the employees first and last name, user id, and last login date.
select LASTNAME + ', ' + FIRSTNAME as Employee, LOGINNAME as Userid, cast(LAST_LOGIN_DATE as date) as LastLogin
from USR
where LAST_LOGIN_DATE <= DATEADD(DAY, -90, GETDATE())
ORDER BY LAST_LOGIN_DATE desc
If you want a list all logins, link tables Audit_Event, Audit_Event_Type, Audit_Profile. Filter on Audit_Event_Type.Event_Type_Description. If you would like help with a Crystal Report, contact me directly.
Thanks so much. I greatly appreciate your responding.
Judy
Hi jfitzmd,
Can you please contact me via email. I've tried creating report as you suggested, but not working.
Thanks