I wish to create a user defined group in the NAB which contains all users with the OU = ABC. In the selection criteria what syntax do I need to add to achieve this? I have tried using the LDAP Query syntax
But you may try a workaround. Take any field(or a new one) in the person document and update the user’s OU there. Then create an LDAP filter for the auto-populated group.
For ex : Use the field “Department“ and set the same value in the OU, say “Sales“[User1/Sales/Acme]. Now use the filter like “(&(ObjectClass=person)(department=Sales))“
AutoPopulated groups work with LDAP filters. Domino LDAP filters are sometimes a little different from “normal” LDAP filters. I always use the included “ldapsearch.exe” to test LDAP filters.
Just open a command prompt and navigate to your HCL Notes program directory. There you can usually type:
Sorry, you misunderstood as I was not clear: Did you test the claim from the ideas site, as this one is wrong. Your solution works but is not necessary as OU can be queried directly…
The syntax (&(objectClass=dominoPerson)(InternetAddress=abc)) also works but I managed to get the OU syntax working. See my other reply. Thanks for your help.