All Team Requests View Groups List
How can I get a list of all "Team Requests View Groups" ?
to get it via Portal is very difficult.
Maybe is there a SQL query??
Best Answer
-
Konstantin_Slavin-Bo Customer Ninja IT Monkey ✭✭✭✭You can look it up in the
ServiceManagement
DB from theCI$DomainGroup
table whereTeamGroup
is1
, i.e:
SELECT [DisplayName]
FROM [ServiceManagement].[dbo].[CI$DomainGroup]
WHERE TeamGroup = 1
1
Answers
ServiceManagement
DB from theCI$DomainGroup
table whereTeamGroup
is1
, i.e:SELECT [DisplayName]
FROM [ServiceManagement].[dbo].[CI$DomainGroup]
WHERE TeamGroup = 1