Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/15/2024 11:12 AM
Hi,
We are correlating accounts based on their email. We have noticed users with no email are getting their account correlated to a test account with has a NULL email value. How can we update the account correlation rule to not correlate accounts with NULL values. If they don't have an email address in their account, it should not be correlate to a user profile.
Thanks,
Mariella
Solved! Go to Solution.
08/15/2024 12:20 PM
08/15/2024 12:25 PM - edited 08/15/2024 12:28 PM
When CP7 is null, the account is getting correlated to a user with a null email address. We do not want this to happen. We do not want the account to correlate if it has a null CP7. No logs.
08/15/2024 12:30 PM
CASE WHEN users.customproperty7 IS NULL OR TRIM(users.customproperty7) = '' THEN 'abcd' ELSE users.customproperty7 END =accounts.name
08/15/2024 11:33 PM
Hi @rushikeshvartak , will it correlate again if cp7 gets populated in future run?