Hi Ankur,

I tried with this filter. still i could see all the group's getting imported from AD to Staging table.

Filter: (&(objectclass=group)(!(OU=ServiceNow)))

Thanks

Hi,

in that case then handle this using onBefore transform script

Sample script below

var incomingGroupName = source.<importSetFieldName>;

if(incomingGroupName.indexOf("OU=ServiceNow") > -1){
	ignore = true;
}

If my answer solved your issue, please mark my answer as Correct & 👍Helpful based on the Impact.

Regards
Ankur

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

Hi Ankur,

I have similar requirement as I want to remove test 0U data but in production service now instance only, Is there any way to appear the data in dev and UAT environment only ?

As I mentioned, importing it to staging table and using trasform map will work. 

Hi Mike,

I have similar requirement as I want to remove test 0U data but in production service now instance only, Is there any way to appear the data in dev and UAT environment only ?