Overview:
When using the Approved Email Query APPROVED_EMAIL_VAULT_QUERY, the OR operator is not bringing over required documents.
Root Cause:
When applying the OR operator in a query, do not use () as a field separator.
Example: (myCustomField__c='OH') OR (myCustomField__c='CA')
Solution:
To correct this issue, use the following syntax:
myCustomField__c='OH' OR myCustomField__c='CA'
Related Documentation:
N/A
Send us your feedback: We're always looking for advice to help improve our Knowledge Base! Please let us know if this article was helpful or provide feedback on how we can improve your experience here.
Thank you