Condition Evaluation Between Scopes
The AND operator is always automatically applied between global and local conditions. All subconditions must evaluate as true for the entire condition to be true. You cannot use the AND and OR operators between scopes, only within the same scope.
Local conditions for different scopes are handled separately. For example, consider the condition:
A AND B AND c AND d OR e
where A and B are global conditions, c is a local condition, and d and e are also local conditions but in a different scope from c.
It is evaluated as:
[(A AND B) AND c] OR [(A AND B) AND (d OR e)]