-
Some Work Item are assigned to non-existing users (users with gray avatar), even though there exists real user with same email. Note that when we do WIQL But the core of the issues is that ALSO: is there a way to do user mapping, if names do not match between systems? Source Details
Target Details
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In Azure DevOps / TFS there is an internal identity object that wraps the external AD or AAD object. The behaviour that you see is what happens when they become detached. This can happen for multiple reasons:
The result is that you have 2 identities for 1 real user account. There is no way to retroactively fix this in TFS or Azure DevOps. What might helpYou could try to create a mapping from the "disconnected username" to the "connected username". Create a FieldMapping in either a hard-coded list or regex to have a go. To find the actual data that you want you may want to debug the tool in Visual Studio, limiting the query to a work item that has this issue, and see what the actual values are. |
Beta Was this translation helpful? Give feedback.
In Azure DevOps / TFS there is an internal identity object that wraps the external AD or AAD object. The behaviour that you see is what happens when they become detached. This can happen for multiple reasons:
The result is that you have 2 identities for 1 real user account. There is no way to retroactively fix this in TFS or Azure DevOps.
What might help
You could try to create a mapping from the …