
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-22-2017 12:14 PM
Is it possible to create reports based on AD group membership?
IE 'Report : All users in group UK-Marketing'
Cheers
IE 'Report : All users in group UK-Marketing'
Cheers
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2017 08:00 PM
Sorted it, for anyone interested the following works for me :
Select Top 1000000 tblADusers.DisplayName,
tblADusers.Displayname,
tblADusers.Office,
tblADGroups.Name As 'Active Directory Group Name'
From tblADusers
Left Join tblADMembership On tblADMembership.ChildAdObjectID =
tblADusers.ADObjectID
Left Join tblADGroups On tblADMembership.ParentAdObjectID =
tblADGroups.ADObjectID
Where tblADGroups.Name Like 'YOUR-GROUP-NAME!'
Order By tblADusers.Name
Select Top 1000000 tblADusers.DisplayName,
tblADusers.Displayname,
tblADusers.Office,
tblADGroups.Name As 'Active Directory Group Name'
From tblADusers
Left Join tblADMembership On tblADMembership.ChildAdObjectID =
tblADusers.ADObjectID
Left Join tblADGroups On tblADMembership.ParentAdObjectID =
tblADGroups.ADObjectID
Where tblADGroups.Name Like 'YOUR-GROUP-NAME!'
Order By tblADusers.Name

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2017 07:15 PM
If I search for a user and click on a group they're a member of, the report is produced exactly as I'd like to use but more permanently. Any way to convert the on-the-fly report? Or to expose the underlying SQL ?
