Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/09/2024 06:55 AM
Hi Team,
Is it possible to get the list of users for whom a certain user field got updated on a certain day with the help of analytics control or any functionality.
08/09/2024 06:58 AM
@Debankita Sample query
select
u.username,
u.userkey as userkey,
uh.changelog
from
users u inner join usershistory uh on u.userkey = uh.userkey
where
username is NOT NULL
and uh.UPDATEDATE >= DATE_SUB(CURDATE(), INTERVAL 5 DAY)
and u.username is NOT NULL
and changelog like '%customproperty1%'
08/09/2024 07:18 AM