Skip to content
D365 Reference

EcoResProduct

mainShared across companies

The shared product master — one row per product across all companies; released products in InventTable point back to it by RecId

Module: Product InformationNo company partition

Fields

9 fields · 1 key

KeyFieldEDTDescriptionTypeLengthFlags
KeyDisplayProductNumberProductNumberThe product number shown to users; the natural key of the shared productstring20
ProductTypeWhether the product is an item or a serviceenum
SearchNameSearchable short name for the productstring60
RecIdRecIdThe 64-bit surrogate key released products reference by Productint64
InstanceRelationTypeSubtype discriminator of the shared product supertype — tells you whether the row is a distinct product or a product master with variantsint64
ServiceTypeFor service products, whether the service is a plain service or a rights/subscription typeenum
PdsCWProductWhether the product is catch-weight — quantities then carry both a nominal and an actual weight unitenum
EngChgProductOwnerIdEngineering product owner responsible for change management on the productstring
EngChgProductTypeRecId reference to the engineering product type controlling versioning rules for the productint64

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading EcoResProducton 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  : EcoResProduct The shared product master — one row per product across all companies; released products in InventTable point back to it by RecId
-- Purpose: Column-selected read of EcoResProduct — auto-generated from field metadata
-- Grain  : One row per DisplayProductNumber
-- 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
  p.displayproductnumber AS "The product number shown to users; the natural key of the shared product",
  p.producttype AS "Whether the product is an item or a service",  -- enum: decode p.producttype via GlobalOptionsetMetadata join — see quirks guide #enums
  p.searchname AS "Searchable short name for the product",
  p.recid AS "The 64-bit surrogate key released products reference by Product",
  p.instancerelationtype AS "Subtype discriminator of the shared product supertype — tells you whether the row is a distinct product or a product master with variants",
  p.servicetype AS "For service products, whether the service is a plain service or a rights/subscription type",  -- enum: decode p.servicetype via GlobalOptionsetMetadata join — see quirks guide #enums
  p.pdscwproduct AS "Whether the product is catch-weight — quantities then carry both a nominal and an actual weight unit",  -- enum: decode p.pdscwproduct via GlobalOptionsetMetadata join — see quirks guide #enums
  p.engchgproductownerid AS "Engineering product owner responsible for change management on the product",
  p.engchgproducttype AS "RecId reference to the engineering product type controlling versioning rules for the product"
FROM <catalog>.<schema>.ecoresproduct p
ORDER BY p.displayproductnumber;

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

  • InventTableEcoResProductRecId ref · N:1
    ON inventtable.product = ecoresproduct.recid
  • EcoResProductTranslationEcoResProductRecId ref · N:1
    ON ecoresproducttranslation.product = ecoresproduct.recid
  • UnitOfMeasureConversionEcoResProductRecId ref · N:1
    ON unitofmeasureconversion.product = ecoresproduct.recid

Data Entities That Expose This Table