Files
Implementation_ITSA/Database Backups/SQL Views/vw_bi_fct_fee_allocation.sql
AzureAD\SylvainDUVERNAY af63a53372 Dump - ITSA views
2026-06-14 11:05:54 +02:00

24 lines
704 B
SQL

CREATE OR REPLACE VIEW public.vw_bi_fct_fee_allocation AS
SELECT "intShipmentId",
"intLotId",
"intFeeId",
"strFeeSource" AS "Fee Source",
"strFeeType" AS "Fee Type",
"intPurchaseLineId",
"intSaleLineId",
"intProductId",
"strFee" AS "Fee",
"intSupplierId",
"strSupplier" AS "Supplier",
"strPackaging" AS "Packaging",
"strPayOrRec" AS "Pay or Receive",
"strState" AS "State",
"dblQuantity" AS "Quantity",
"dblPrice" AS "Price",
"strCurrency" AS "Currency",
"strUnit" AS "Unit",
"dblAmount" AS "Amount",
"strCostGroup" AS "Cost Group",
"intSignMultiplier" AS "Sign Multiplier"
FROM vw_utility_shipment_fee_allocation fee;;