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.