Is it possible to add more than one value to the value field? for example, I'm trying to filter out all names that begin with 'abc' and 'bu'.
Is it possible to add more than one value to the value field? for example, I'm trying to filter out all names that begin with 'abc' and 'bu'.
@YimSam-0753,
Just checking in to see if the below answer helped. If this answers your query, please don’t forget to click "Accept the answer" and Up-Vote for the same, which might be beneficial to other community members reading this thread. And, if you have any further query do let us know.
Hello follow the oficial docs here - https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-sync-configure-filtering#inbound-filtering
There is a logical "AND" between multiple clauses, and a logical "OR" between multiple groups
In this docs - we found this https://docs.microsoft.com/en-us/azure/active-directory/hybrid/concept-azure-ad-connect-sync-declarative-provisioning
STARTSWITH, NOTSTARTSWITH A string compare that evaluates if value is in the beginning of the value in the attribute.
So I recommend you to separate your conditions in groups
Group1 - Name Attribute - STARTSWITH - abc
Group2 - Name Attribute - STARTSWITH - Bu
Hi @YimSam-0753,
Thanks for reaching out.
Adding more than one value to the value field is not supported, thus you must add multiple GROUPS in the scoping filter in this case, like anonymous user suggested.
10 people are following this question.