Hi, Ive been doing BAQs for a while and ive never had a need to do a left outer join. I can’t figure out how to do it in the new ERP system.
What I’m trying to do is create a BAQ showing the purchase parts that have no supplier in epicor, this is what i have so far.
select
[Part].[PartNum] as [Part_PartNum],
[Part].[PartDescription] as [Part_PartDescription]
from Erp.Part as [Part]
inner join Erp.VendPart as [VendPart] on
Part.Company = VendPart.Company
and Part.PartNum = VendPart.PartNum
inner join Erp.Vendor as [Vendor] on
Vendor.Company = VendPart.Company
and Vendor.VendorNum = VendPart.VendorNum
many thanks
Yasmine