D365 Reference
InventItemGroup
groupItem group master — one row per company and item group, the reporting and posting bucket items are assigned to via InventItemGroupItem
Module: Product InformationCompany-partitioned (DataAreaId)
Fields
3 fields · 1 key
| Key | Field | EDT | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Key | ItemGroupId | ItemGroupId | The item group code — the reporting bucket InventItemGroupItem assigns items into | string | ||
| Name | Item group name | string | ||||
| StandardItemAllocateId | Default item allocation key for forecast allocation over this group | string |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading InventItemGroupon 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 : InventItemGroup Item group master — one row per company and item group, the reporting and posting bucket items are assigned to via InventItemGroupItem
-- Purpose: Column-selected read of InventItemGroup — auto-generated from field metadata
-- Grain : One row per company (dataareaid) + ItemGroupId
-- 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
i.itemgroupid AS "The item group code — the reporting bucket InventItemGroupItem assigns items into",
i.name AS "Item group name",
i.standarditemallocateid AS "Default item allocation key for forecast allocation over this group"
FROM <catalog>.<schema>.inventitemgroup i
WHERE
i.dataareaid = '<company>'
ORDER BY i.itemgroupid;3 parameters not filled: <catalog>, <schema>, <company>
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 inventitemgroupitem.itemgroupid = inventitemgroup.itemgroupid
Data Entities That Expose This Table
No standard export entity confirmed — land the raw table alongside InventItemGroupItem to resolve item-to-group assignments.