First initial commit
This commit is contained in:
16
vw_bi_dim_product.sql
Normal file
16
vw_bi_dim_product.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- View: public.vw_bi_dim_product
|
||||
|
||||
-- DROP VIEW public.vw_bi_dim_product;
|
||||
|
||||
CREATE OR REPLACE VIEW public.vw_bi_dim_product AS
|
||||
SELECT "intProductId",
|
||||
"strProductCode" AS "Product Code",
|
||||
"strProductDescription" AS "Description",
|
||||
"ysnActive" AS "Is Active",
|
||||
"strTemplate" AS "Template",
|
||||
"strTemplateCode" AS "Template Code",
|
||||
"strDefaultUom" AS "Default Uom"
|
||||
FROM vw_utility_product pr;
|
||||
|
||||
ALTER TABLE public.vw_bi_dim_product
|
||||
OWNER TO postgres;
|
||||
Reference in New Issue
Block a user