Disabled AD account is not correlated

Hello,

V8.2.1

We use Employee number to correlate HR and AD account. Once I run the AD synchronization the accounts are correlated. The issue here is disabled AD account is not correlated with the HR account and I can see those accounts in suggestions to manually correlate those accounts, but I don't want to correlate them manually.  Is there any configuration which needs to be changed so that even disabled AD account also gets correlated to the HR account or any other way to achieve this?

Thanks,

Pavithra

Parents
  • If you look in de script: ADS_PersonAuto_Mapping_ADSAccount

    'should disabled accounts also be mapped
    Dim disabledWhereClause As String = ""
    If Connection.GetConfigParm("TargetSystem\ADS\PersonAutoDisabledAccounts") <> "1" Then
    disabledWhereClause = f.Comparison("AccountDisabled", False, ValType.Bool)
    End If

Reply
  • If you look in de script: ADS_PersonAuto_Mapping_ADSAccount

    'should disabled accounts also be mapped
    Dim disabledWhereClause As String = ""
    If Connection.GetConfigParm("TargetSystem\ADS\PersonAutoDisabledAccounts") <> "1" Then
    disabledWhereClause = f.Comparison("AccountDisabled", False, ValType.Bool)
    End If

Children