Attempting to do a simple QUERY and nothing is returned. It appears to be a bug.
I can't get the following query to return any data.
FIND Account WHERE Account.Company CONTAINS ?Company AND Account.RefBy<>'LOCK' ORDER BY Account.Company
I've also tried and this doesn't work
FIND Account WHERE Account.Company CONTAINS ?Company AND NOT(Account.RefBy CONTAINS 'LOCK') ORDER BY Account.Company
I've also tried this and it doesn't work
FIND Account WHERE Account.Company CONTAINS ?Company AND NOT(Account.RefBy='LOCK') ORDER BY Account.Company
This works:
FIND Account WERE Account.Company CONTAINS ?Company ORDER BY Account.Company
I would hope that if the syntax is wrong in any of the above that the Integrity checker would find it. However, I've spent not less than 2 hours trying to get a simple query to work.
Is this a bug? Or does anyone see something I'm doing wrong?
Thanks