DimensionAttributeValueSet
frameworkShared across companiesA stored set of financial-dimension values referenced by masters and transactions via a RecId; the first hop when decoding default dimensions into columns
Header & line
DimensionAttributeValueSet is the header for its lines in DimensionAttributeValueSetItem.
Fields
5 fields · 1 key
| Key | Field | EDT | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Key | Hash | A hash of the contained dimension values that uniquely identifies the set | string | 100 | ||
| RecId | RecId | The 64-bit surrogate key masters and transactions reference via DefaultDimension / LedgerDimension | int64 | |||
| ImpliedDataAreaId | Company implied by any company-specific values contained in the set | string | ||||
| MainAccount | RecId | RecId of the main account when the set carries one (MainAccount is outside this reference's table scope) | int64 | |||
| MainAccountValue | Main-account code stored denormalized on the set | string |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading DimensionAttributeValueSeton Databricks — enums are decoded, 1900-01-01 dates are wrapped to NULL, and the DataAreaId anchor is in place. Set your Unity Catalog location, company, and filter values below; they’re substituted into the SQL and the copy button.
-- ============================================================
-- Table : DimensionAttributeValueSet A stored set of financial-dimension values referenced by masters and transactions via a RecId; the first hop when decoding default dimensions into columns
-- Purpose: Column-selected read of DimensionAttributeValueSet — auto-generated from field metadata
-- Grain : One row per Hash
-- Notes : Auto-generated skeleton for Synapse Link / Fabric Link-landed F&O data (lowercase column names). Enums decoded inline where verified; datetimes stored in UTC; 1900-01-01 dates are sentinels mapped to NULL. System/audit columns omitted — see the quirks guide.
-- ============================================================
SELECT
davs.hash AS "A hash of the contained dimension values that uniquely identifies the set",
davs.recid AS "The 64-bit surrogate key masters and transactions reference via DefaultDimension / LedgerDimension",
davs.implieddataareaid AS "Company implied by any company-specific values contained in the set",
davs.mainaccount AS "RecId of the main account when the set carries one (MainAccount is outside this reference's table scope)",
davs.mainaccountvalue AS "Main-account code stored denormalized on the set"
FROM <catalog>.<schema>.dimensionattributevalueset davs
ORDER BY davs.hash;2 parameters not filled: <catalog>, <schema>
Relationships
1-hop neighbors — click a table to navigate there. RecId and InventDim edges are highlighted; they’re the joins newcomers most often get wrong.
Join details
ON inventjournaltrans.defaultdimension = dimensionattributevalueset.recidON inventsite.defaultdimension = dimensionattributevalueset.recidON custtable.defaultdimension = dimensionattributevalueset.recidON custgroup.defaultdimension = dimensionattributevalueset.recidON vendtable.defaultdimension = dimensionattributevalueset.recidON prodtable.defaultdimension = dimensionattributevalueset.recidON forecastsales.defaultdimension = dimensionattributevalueset.recidON dimensionattributevaluesetitem.dimensionattributevalueset = dimensionattributevalueset.recid