Commit all views for ITSA

This commit is contained in:
AzureAD\SylvainDUVERNAY
2026-03-24 14:40:53 +01:00
parent 091bd4ce00
commit 832a142e87
62 changed files with 2397 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
CREATE OR REPLACE VIEW public.vw_bi_dim_shipment AS
SELECT "intShipmentId",
"strShipmentNb" AS "Shipment Nb",
"strBillOfLading" AS "BL Number",
"dtmBillOfLadingDate" AS "BL Date",
"strState" AS "State",
"strFromLocation" AS "From Location",
"strToLocation" AS "To Location",
"strVessel" AS "Vessel",
"strCarrier" AS "Carrier",
"strSupplier" AS "Supplier",
"strCargoMode" AS "Cargo Mode"
FROM vw_utility_shipment_in s;;