First initial commit

This commit is contained in:
AzureAD\SylvainDUVERNAY
2026-01-07 14:38:55 +01:00
parent 0d02c89192
commit 022f4e0a2a
16 changed files with 587 additions and 2 deletions

16
vw_bi_dim_product.sql Normal file
View 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;