How to provide access on Manage Accounts and Groups in Orchestrator in 2021.10 ?
Issue Description: When accessing Manage Accounts and Groups in Orchestrator in 2021.10, blank page appears.
Manage Accounts and Groups in Orchestrator open as blank page
Resolution:
Note Before running, take a backup of the Orchestrator Data Base.
- Obtain PARTITIONID from
===========================
SELECT [Id]
FROM [identity].[Partitions]
WHERE [Name] = 'TenantName'
- Obtain USERID from
===========================
SELECT [Id]
FROM [identity].[AspNetUsers]
WHERE [MasterPartitionId] = 'PARTITIONID'
AND UserName = 'USERNAME'
- Obtain GROUPID from
===========================
SELECT [Id]
FROM [identity].[Groups]
WHERE [Name] = 'Administrators'
AND [PartitionId] = 'PARTITIONID'
- Insert RoleMapping
===========================
INSERT INTO [identity].[UserGroups] VALUES ( 'USERID', 'GROUPID', 'PARTITIONID')