no message
This commit is contained in:
26
vw_bi_fct_trade_fulfillment_event.sql
Normal file
26
vw_bi_fct_trade_fulfillment_event.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
CREATE OR REPLACE VIEW vw_bi_fct_trade_fulfillment_event AS
|
||||
SELECT
|
||||
SM."intPurchaseLineId" AS "inTradeId",
|
||||
'Physical' AS "Trade Category",
|
||||
'Delivered' AS "Event Type",
|
||||
SM."dtmBLDate" AS "Event Date",
|
||||
SM."dblQuantity" AS "Quantity"
|
||||
FROM "vw_utility_stock_movements" AS SM
|
||||
WHERE 1=1
|
||||
AND COALESCE( SM."intPurchaseLineId" , 0 ) > 0
|
||||
UNION ALL
|
||||
SELECT
|
||||
SM."intSaleLineId" AS "inTradeId",
|
||||
'Physical' AS "Trade Category",
|
||||
'Delivered' AS "Event Type",
|
||||
SM."dtmBLDate" AS "Event Date",
|
||||
SM."dblQuantity" AS "Quantity"
|
||||
FROM "vw_utility_stock_movements" AS SM
|
||||
WHERE 1=1
|
||||
AND COALESCE( SM."intSaleLineId" , 0 ) > 0;
|
||||
-- UNION ALL
|
||||
-- Derivative contracts can be added here in the future (Settled, Exercised, Expired, etc.)
|
||||
|
||||
ALTER TABLE public.vw_bi_fct_trade_fulfillment_event
|
||||
OWNER TO postgres;
|
||||
|
||||
Reference in New Issue
Block a user