SELECT POPOLine.ExpectedDate, POPOLine.Status, APVoucher.Vendor, APVendor.Name
FROM APVoucher INNER JOIN
APVendor ON APVoucher.Vendor = APVendor.Vendor INNER JOIN
POPOLine ON APVoucher.PONumber = POPOLine.PONumber
WHERE (POPOLine.Status = 'open') AND (APVendor.Name LIKE 'saint%')
|