Hi All,
I have the following scenario where i need to join BOM Table to some “X” table which has RefReciD, alternate Item Number joining to RecID of BOM
The Query would be Select X.AlternateItemNumber JOIN BOM where X.RefRecid == BOM.RecID and BOM.ItemNumber = ‘ABC’
Once i get all the alternate itemnumbers from Table ‘X’ i need to check to see if there are any items to BOM Table The query should be
Select * from BOM outer Join X where X.ALtItemID == BOM.itemID
How do i achieve this one Query … Thanks in advance.