- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 10:00 AM
Hi All,
I need to get all groups from LDAP node, but I have to a group OU=ServiceNow
Filter: (&(objectclass=group)(!(OU=ServiceNow)))
But after importing the group still i can see the group with OU=ServiceNow.
Thanks
Solved! Go to Solution.
- Labels:
-
Integrations

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 11:58 AM
I had similar requirements so I added below script on Transform Map to ignore those groups from importing.
if(source.u_dn.indexOf("OU=ServiceNow") > -1){
ignore = true;
}
Once the group is created in SN you will have to delete it before running the job.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 10:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 10:33 AM
Hi,
I tried this but it didn't worked.
for this (&(objectClass=group)(&(ou:dn:=Chicago)(!(ou:dn:=Wrigleyville))))
i should be having dn=chicago and dn = wrgleyville right?
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 10:56 AM
HI,
This was example you need to use your OU name.
Thanks,
Ashutosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 11:33 AM
Yes i searched it for the same, still All the AD groups are getting loaded to Staging table