I am looking forward to create a notification for some users before the Idle User Deactivation process run. Is there a way to check when the Idle User Deactivation happened?
Discussion posts and replies are publicly visible
Just thinking about approaches1) We can't rely on system logs (login history/audit logs) because Appian only stores the last 30 days of login information.2) I recommend creating a simple process that is called via a Web API on every user landing page load. This process records the current user’s timestamp each time they log in or visit. You then have full control to compare this stored last login time with your deactivation period and send notifications accordingly.