Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/15/2023 01:03 AM - last edited on 09/15/2023 01:12 AM by Sunil
Hi Team,
I have configured correlation rule in SQL format but while importing accounts its correlating only active account with user for inactive account its creating orphan account. There is any configuration for this ? or thing I missed ?
Ex- concat(users.email,'.xyz')=(accounts.name)
Thanks,
Gaurav
[This message has been edited by moderator to merge reply comment]
Solved! Go to Solution.
09/15/2023 02:27 AM - edited 09/15/2023 02:29 AM
Hi @gwagh
Which connector are you using?
Have you configured the STATUS_THRESHOLD_CONFIG for the connector?
Below is a sample for the AD connector:
{
"statusAndThresholdConfig": {
"statusColumn": "customproperty17",
"activeStatus": [
"512",
"544",
"66048"
],
"inactiveStatus": [
"546",
"514",
"66050"
],
"deleteLinks": false,
"accountThresholdValue": 1000,
"correlateInactiveAccounts": true,
"inactivateAccountsNotInFile": false
}
This above highlighted configuration needs to be added to the configuration in order for the import to correlate inactive accounts to users. This should help alleviate your issue
Configuring the Integration for Importing Accounts and Access (saviyntcloud.com)
09/18/2023 12:04 AM
Thanks Its working fine I missed this configuration.