RV_M_Transaction - fixed issue introduced in rev. 5305

This commit is contained in:
teo_sarca 2008-09-18 07:20:15 +00:00
parent 642f11b088
commit a695a6f06b
1 changed files with 2 additions and 3 deletions

View File

@ -6,11 +6,10 @@ AS
SELECT t.AD_Client_ID,t.AD_Org_ID, t.MovementDate, t.MovementQty,
t.M_Product_ID, t.M_Locator_ID, t.M_AttributeSetInstance_ID,
p.M_Product_Category_ID, p.Value,
--po.C_BPartner_ID, po.PricePO, po.PriceLastPO, po.PriceList
po.C_BPartner_ID, po.PricePO, po.PriceLastPO, po.PriceList
FROM M_Transaction t
INNER JOIN M_Product p ON (t.M_Product_ID=p.M_Product_ID)
--INNER JOIN M_Product_PO po ON (t.M_Product_ID=po.M_Product_ID)
LEFT JOIN M_CostDetail cd (M_)
INNER JOIN M_Product_PO po ON (t.M_Product_ID=po.M_Product_ID)
WHERE po.IsCurrentVendor='Y';