Skip to content
D365 Reference

EcoResStorageDimensionGroup

groupShared across companies

Storage dimension group master — shared setup that decides which storage dimensions (site, warehouse, location) are active and mandatory for the products assigned to it, including whether advanced warehousing applies

Module: Product InformationNo company partition

Fields

5 fields · 1 key

KeyFieldEDTDescriptionTypeLengthFlags
KeyNameThe storage dimension group name — the natural key products reference through their group assignmentstring
DescriptionDescription of the groupstring
IsWarehouseWHSEnabledWhether items in this group run through advanced warehouse management (WHS) processes — splits the item population between WMS-managed and basic warehousingenum
IsWarehouseMandatoryEnabledWhether the warehouse dimension must be specified on transactions for this groupenum
IsWarehousePrimaryStockingEnabledWhether warehouse is a primary stocking dimension for this groupenum

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading EcoResStorageDimensionGroupon 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.

Query parameters
-- ============================================================
-- Table  : EcoResStorageDimensionGroup Storage dimension group master — shared setup that decides which storage dimensions (site, warehouse, location) are active and mandatory for the products assigned to it, including whether advanced warehousing applies
-- Purpose: Column-selected read of EcoResStorageDimensionGroup — auto-generated from field metadata
-- Grain  : One row per Name
-- 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
  e.name AS "The storage dimension group name — the natural key products reference through their group assignment",
  e.description AS "Description of the group",
  e.iswarehousewhsenabled AS "Whether items in this group run through advanced warehouse management (WHS) processes — splits the item population between WMS-managed and basic warehousing",  -- enum: decode e.iswarehousewhsenabled via GlobalOptionsetMetadata join — see quirks guide #enums
  e.iswarehousemandatoryenabled AS "Whether the warehouse dimension must be specified on transactions for this group",  -- enum: decode e.iswarehousemandatoryenabled via GlobalOptionsetMetadata join — see quirks guide #enums
  e.iswarehouseprimarystockingenabled AS "Whether warehouse is a primary stocking dimension for this group"  -- enum: decode e.iswarehouseprimarystockingenabled via GlobalOptionsetMetadata join — see quirks guide #enums
FROM <catalog>.<schema>.ecoresstoragedimensiongroup e
ORDER BY e.name;

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.

Data Entities That Expose This Table