JonWolgamuth
Technical User
I have the following query to accommodate a multi-user setup and assign work.
SELECT entity_discrepancy.RowNumber, entity_discrepancy.FieldDiscrepancy, entity_discrepancy.TaxId, entity_discrepancy.TinType, entity_discrepancy.AmsSystemKey, entity_discrepancy.DmsSystemKey, entity_discrepancy.EqPSystemKey, entity_discrepancy.PaisSystemKey, entity_discrepancy.AmsValue, entity_discrepancy.DmsValue, entity_discrepancy.EqPValue, entity_discrepancy.PaisValue, entity_discrepancy.ChooseAms, entity_discrepancy.ChoosePais, entity_discrepancy.ChooseEqP, entity_discrepancy.ChooseDms, entity_discrepancy.FixedBy, entity_discrepancy.Done
FROM entity_discrepancy, User_tbl
WHERE (((entity_discrepancy.RowNumber)>=[LowerRange] And (entity_discrepancy.RowNumber)<=[UpperRange]) AND ((entity_discrepancy.Done)=No) AND ((entity_discrepancy.Research)="Research"
AND ((User_tbl.UserID)=Environ("username"
))
ORDER BY entity_discrepancy.FieldDiscrepancy, entity_discrepancy.TaxId;
When I run this query on my Windows NT box, it works no problem. However, the user area I wanted to distribute this to uses Windows 2000. When they try to run it they get an error which states "This expression is typed incorrectly, or is too complicated to be evaluated."
Has anyone else come across such a predicament and found a good resolution?
Thanks in advance!
Jon
SELECT entity_discrepancy.RowNumber, entity_discrepancy.FieldDiscrepancy, entity_discrepancy.TaxId, entity_discrepancy.TinType, entity_discrepancy.AmsSystemKey, entity_discrepancy.DmsSystemKey, entity_discrepancy.EqPSystemKey, entity_discrepancy.PaisSystemKey, entity_discrepancy.AmsValue, entity_discrepancy.DmsValue, entity_discrepancy.EqPValue, entity_discrepancy.PaisValue, entity_discrepancy.ChooseAms, entity_discrepancy.ChoosePais, entity_discrepancy.ChooseEqP, entity_discrepancy.ChooseDms, entity_discrepancy.FixedBy, entity_discrepancy.Done
FROM entity_discrepancy, User_tbl
WHERE (((entity_discrepancy.RowNumber)>=[LowerRange] And (entity_discrepancy.RowNumber)<=[UpperRange]) AND ((entity_discrepancy.Done)=No) AND ((entity_discrepancy.Research)="Research"
ORDER BY entity_discrepancy.FieldDiscrepancy, entity_discrepancy.TaxId;
When I run this query on my Windows NT box, it works no problem. However, the user area I wanted to distribute this to uses Windows 2000. When they try to run it they get an error which states "This expression is typed incorrectly, or is too complicated to be evaluated."
Has anyone else come across such a predicament and found a good resolution?
Thanks in advance!
Jon