Hello Everyone,
Is there any approach to retrieve a user's last login details without accessing log files? For example, is there a function or method we could use to capture login information when a user accesses a specific link or application?
Thanks & Regards,
Srikanth.
Discussion posts and replies are publicly visible
No OOTB function or functionality you can't track user login details specific to link and application. Using getlastlogindatetime() -> gives you last login timestamp(Also it does not work properly).Also i would recommend worth checking this application Appian Usage Insights.Recommend creating your own tracking: When a user accesses your app/site, trigger a process to capture the username and now() timestamp. You must implement this on all app entry points (landing pages/interfaces). -> Here you have full control on it.
Recommend creating your own tracking: When a user accesses your app/site, trigger a process to capture the username and now() timestamp. You must implement this on all app entry points (landing pages/interfaces)how can we achieve it, can you please explain in some detail?
Create a User Login Record Type with fields (username, loginTimestamp, appName, site etc...) backed by a database table, and create a lightweight process model that writes login data to this record using loggedInUser() and now() functions.Embed the login capture in the first user interaction (button click, tab selection, or form submission) using a!startProcess() in the saveInto parameter, then leverage the Record data to display data as you want.I would recommend check this plugin also User Activity Tracking