Jadhikary
(Jeebina Adhikary)
March 14, 2026, 10:42am
1
Which IIQ version are you inquiring about?
8.5 v
Share all details about your problem, including any error messages you may have received.
I have a use case in which I have to filter out two specific groups at the time of Aggregation. Is there any way through which I can do it without writing any kind of rule.
msingh900
(Manish Singh)
March 14, 2026, 10:45am
2
Do you need this specifically for AD connector only ?
msingh900
(Manish Singh)
March 14, 2026, 10:50am
3
If it is for AD type of connector, then you can use Group FilterQuery to achieve this usecase.
neel193
(Neelmadhav Panda)
March 14, 2026, 11:29am
4
@Jadhikary Please use below filter to exclude the groups:
(&(objectClass=group)(!(cn=ExcludedGroupName1))(!(cn=ExcludedGroupName2)))
msingh900
(Manish Singh)
March 14, 2026, 11:33am
5
@Jadhikary
Try this query. I have been using this in my environment and it works.
(&
(objectClass=group)
(!(distinguishedName=CN-Value-Group1))
(!(distinguishedName=CN-Value-Group2))
)
Jadhikary
(Jeebina Adhikary)
March 14, 2026, 11:34am
6
Thanks @neel193 I tried this but it did not removed the ones that I am trying to filter.
Jadhikary
(Jeebina Adhikary)
March 14, 2026, 11:35am
7
Thank you ! Let me try this.