We need this because in the application we have workflow module and we have assign work items to active user only.
Active user: user is logged in and his last activity is less then 45 minutes ago.
We need this because in the application we have workflow module and we have assign work items to active user only.
Active user: user is logged in and his last activity is less then 45 minutes ago.
Best answer by Arie V
We also use the Universal GUI and before every PROD deploy we do a quick check with the following code on the IAM database:
USE [IAM_DB_NAME]
select *
from appl_claim
where sysutcdatetime() between claim_start_date_time and claim_end_date_time
Based on our experience, the claim_start_date_time is set as soon as someone logs in (and uses a certain Application - in case of multiple Applications you could see multiple records for a single user) and will by default have a claim_end_date_time of +20 minutes. If the user is still active at the moment of the claim_end_date_time it is again extended with 20 minutes.
Basically this ensures you that a user's activity is less than 20 minutes ago. Not exactly the 45 you're asking for but I would say this definitely helps.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.