Hello @Gaven Carley ,
Thanks for reaching out.
You could use following cmdlet on Azure AD connect sync server to find out accounts using distinguishedName as shown below, and this would help you find out relevant accounts' UPN and sourceAnchor (aka immutableid).
Get-ADSyncCSObject -ConnectorName "domain.onmicrosoft.com - AAD" -DistinguishedName "CN={4F7372497A477A4A586B4352564A6D4473744F3331673D3D}"
Alternatively, when you click each object from Export Error, you can also find out which users' UPN is causing the problem, as shown below:
Here's an example of error 114: a user account was moved out of sync scope in on-premises AD, causing the sync server to remove the reference object in Azure AD and move it to the "Deleted user" container. Now, when I restore the deleted users object in AAD immediately rather than waiting for the delta sync cycle to complete (at least two delta sync must be completed before restoring a deleted user account in AAD), then I receive error 114 "complete-export-errors" during export of AAD connector space (@keyman .onmicrsoft.com).
This is because AAD connector space (CS) (@keyman .onmicrsoft.com) did not complete two delta sync to update its own database to delete referral object, hence sync server kept trying to update newly restored account, which causing in Deletion access violation, as explained [here].
To resolve error 114 from the Azure AD connect server, use the above-mentioned cmdlet to retrieve the corresponding user object's UPN and delete it from Azure AD.
In case If you wish to keep a recently restored user account as a cloud only account, you must run a delta sync twice after you move a user to an OU that is out of scope before restoring the user, or the user object in AAD CS would be in pending deletion confirmation status, and will continue to generate the error.
Steps:
1. Move an account to an OU that is not in scope for sync
2. Run a delta sync
-> The user in AAD is soft deleted
3. Run a delta sync again
4. Restore the user from Deleted users
Hope this helps.
-----
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.