RV_M_Transaction - fixed issue introduced in rev. 5305
This commit is contained in:
parent
642f11b088
commit
a695a6f06b
|
@ -6,11 +6,10 @@ AS
|
||||||
SELECT t.AD_Client_ID,t.AD_Org_ID, t.MovementDate, t.MovementQty,
|
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,
|
t.M_Product_ID, t.M_Locator_ID, t.M_AttributeSetInstance_ID,
|
||||||
p.M_Product_Category_ID, p.Value,
|
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
|
FROM M_Transaction t
|
||||||
INNER JOIN M_Product p ON (t.M_Product_ID=p.M_Product_ID)
|
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)
|
INNER JOIN M_Product_PO po ON (t.M_Product_ID=po.M_Product_ID)
|
||||||
LEFT JOIN M_CostDetail cd (M_)
|
|
||||||
WHERE po.IsCurrentVendor='Y';
|
WHERE po.IsCurrentVendor='Y';
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue