Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Error AD update Operation for Proxy Address

cdavis2
Regular Contributor II
Regular Contributor II

I am getting the following error during an AD account update. Error while Update operation for account-lkumar in AD - [LDAP: error code 20 - 00002083: AtrErr: DSID-03151F38, #1: 0: 00002083: DSID-03151F38, problem 1006 (ATT_OR_VALUE_EXISTS), data 0, Att 200d2 (proxyAddresses):len 92 ]

The update works sometime but fails sometime due to the above error. I know its the proxyaddress field but was seeing how should I modify this to avoid running into this issue during updates. I'm thinking a replace function would be necessary but need a little assistance doing it for multiple values.

"proxyAddresses": ["smtp:${user.firstname}.${user.lastname}@example.com",
"SMTP:${user.email}"] 

 

 

 

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

Refer https://forums.saviynt.com/t5/tag/ProxyAddresses/tg-p 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

cdavis2
Regular Contributor II
Regular Contributor II

The following worked:

"proxyAddresses": {"Replace":[
"smtp:${user.firstname}.${user.lastname}@example.com",
"SMTP:${user.email}"]
}
}
{"Replace":[
"SMTP:${user.email}",
"${user.email}",
"${user.email}"
]
}
}