Remap crm user to ActiveDirectory User
I imported an organization and I mapped only system user
CRM : 2016 V8.2 OnPremise
Then at the end only mapped User can connect To CRM while normal user are still visible in CRM systemUser.
To see if they are mapped you can use
select * from MSCRM_CONFIG.[dbo].[SystemUserOrganizations] org
join SystemUserBase users on (users.SystemUserId = org.CrmUserId)
then to remapp normal user I did
1/ disable user + save
2/ change the logon user (I added a s after) + Save
3/ change back the logon by the correct logon user (remove the S)
4 enable the user
re do the query,
select * from MSCRM_CONFIG.[dbo].[SystemUserOrganizations] org
join SystemUserBase users on (users.SystemUserId = org.CrmUserId)
you will see the user is mapped
CRM : 2016 V8.2 OnPremise
Then at the end only mapped User can connect To CRM while normal user are still visible in CRM systemUser.
To see if they are mapped you can use
select * from MSCRM_CONFIG.[dbo].[SystemUserOrganizations] org
join SystemUserBase users on (users.SystemUserId = org.CrmUserId)
then to remapp normal user I did
1/ disable user + save
2/ change the logon user (I added a s after) + Save
3/ change back the logon by the correct logon user (remove the S)
4 enable the user
re do the query,
select * from MSCRM_CONFIG.[dbo].[SystemUserOrganizations] org
join SystemUserBase users on (users.SystemUserId = org.CrmUserId)
you will see the user is mapped
Commentaires
Enregistrer un commentaire