Categories
DevOps Microsoft

AAD user appearing twice on DevOps

Of course before to continue verify that in the Organization the user has only one account.

Opened this issue with Microsoft
https://developercommunity2.visualstudio.com/t/AAD-user-appears-twice-on-DevOps/1385302
and sharing solution:

  1. Navigate to Organization Settings -> Users
  2. Remove the user.
  3. Re-add the account by typing in the entire email address without using the suggested identity in the dropdown.
  4. Ask the user to clear all cookies/cache and navigate directly to aex.dev.azure.com from an inPrivate/incognito browser.
  5. Make a new query in the projects the use was assigned filtering for “Assigned To contains” and the first letters of the name so that you can verify if there are still items assigned to the wrong account that can be re-assigned.

Did my solution solve your problem? Leave a reply.

Categories
Business Central Dynamics NAV Microsoft PowerShell

Import-NAVData : The specified file does not exist at the specified location

I was trying to import NAV data using PowerShell but received the following error message:

Import-NAVData : The specified file does not exist at the specified location

Solution:

If the file path is in a user-specific folder (e.g. in the Desktop), move it under C drive.

Syntax used:

Import-NAVData -ServerInstance BC -CompanyName "My Company" -IncludeGlobalData -FilePath "C:\Company.navdata"

Did my solution solve your problem? Leave a reply.