Creating account on Active directory with following user DN format,
“CN=” + identity.getFirstname() + " " + identity.getLastname() + “,CN=Users,DC=demo,DC=com”
Following error encountered.
Errors returned from IQService. “Failed to update attributes for identity CN=test user,CN=Users,DC=demo,DC=com. The specified directory service attribute or value does not exist.”
And account is getting created on Active Directory Application.
It is probably because of other attributes you are provisioning as part of user creation. Check if there are any schema attributes have violated length constraints or you are provisioning an attribute which is not present in AD.
I agree with @venkateshkan can you please share what other attributes you are sending for AD Creation this error is due to other attribute issue and not account creation.