Skip to main content

New to Qlik Sense

If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Action-Packed Learning Awaits! QlikWorld 2023. April 17 - 20 in Las Vegas: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
alec1982
Specialist II
Specialist II

Use groups and names on Active directory connector

hi all..

I have my connector to LDAP where I am using a filter for the groups as follow

(|(memberof=CN=RL.QLS.Users,OU=Groups,DC=corp,DC=Company,DC=com)(memberof=CN=RL.QLV.Users,OU=Groups,DC=corp,DC=Company,DC=com))

I have a requirement to include in addition to the above specific user IDs (3 users). any one has the right wording to add users on top of the statement above?

Thank you.

 

 

Labels (2)
1 Solution

Accepted Solutions
bobbiros
Contributor III
Contributor III

Try
(|(memberof=CN=RL.QLS.Users,OU=Groups,DC=corp,DC=Company,DC=com)(memberof=CN=RL.QLV.Users,OU=Groups,DC=corp,DC=Company,DC=com)
(name=username1) (name=username2) (name=username3))

or

(& (objectCategory=user)
(|(memberof=CN=RL.QLS.Users,OU=Groups,DC=corp,DC=Company,DC=com)(memberof=CN=RL.QLV.Users,OU=Groups,DC=corp,DC=Company,DC=com)
(name=username1) (name=username2) (name=username3)))

Where username1 thru username3  are the specific user's system logon ID

View solution in original post

2 Replies
bobbiros
Contributor III
Contributor III

Try
(|(memberof=CN=RL.QLS.Users,OU=Groups,DC=corp,DC=Company,DC=com)(memberof=CN=RL.QLV.Users,OU=Groups,DC=corp,DC=Company,DC=com)
(name=username1) (name=username2) (name=username3))

or

(& (objectCategory=user)
(|(memberof=CN=RL.QLS.Users,OU=Groups,DC=corp,DC=Company,DC=com)(memberof=CN=RL.QLV.Users,OU=Groups,DC=corp,DC=Company,DC=com)
(name=username1) (name=username2) (name=username3)))

Where username1 thru username3  are the specific user's system logon ID

alec1982
Specialist II
Specialist II
Author

never mind. it works now. thank you.