Skip to content
M3 Reference

CIDMAS

Prefix: IDmaster

The supplier master — one row per supplier per company with identity, status, and name; purchasing and supplier-ledger records join back to it on SUNO

Module: PurchasingCompany-partitioned (CONO)

Fields

4 fields · 2 key

KeyFieldAliasDescriptionTypeLengthFlags
KeyIDCONOCONOCompanynumeric
KeyIDSUNOSUNOSupplier number — the natural key purchase orders join onalphanumeric
IDSTATSTATSupplier status — whether the supplier is active for new businessalphanumeric
IDSUNMSUNMSupplier namealphanumeric

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading CIDMASon Databricks — numeric YYYYMMDD dates are wrapped to NULL, verified status ladders are decoded, and the CONO 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  : CIDMAS — The supplier master — one row per supplier per company with identity, status, and name; purchasing and supplier-ledger records join back to it on SUNO
-- Purpose: Column-selected read of CIDMAS — auto-generated from field metadata
-- Grain  : One row per company (CONO) + IDSUNO
-- Notes  : Auto-generated skeleton for Infor Data Lake-landed M3 data. Dates are numeric YYYYMMDD (0 = none, mapped to NULL); status ladders decoded inline where verified. Audit columns (RGDT/RGTM/LMDT/CHNO/CHID) omitted — see the quirks guide.
-- ============================================================
SELECT
  s.IDCONO AS "Company",
  s.IDSUNO AS "Supplier number — the natural key purchase orders join on",
  s.IDSTAT AS "Supplier status — whether the supplier is active for new business",  -- status: decode s.IDSTAT against your configuration — see quirks guide #statuses
  s.IDSUNM AS "Supplier name"
FROM <catalog>.<schema>.CIDMAS s
WHERE
  s.IDCONO = <company>
  -- AND s.IDSUNO = '<SUNO>'
ORDER BY s.IDSUNO;

4 parameters not filled: <catalog>, <schema>, <company>, <SUNO>

Relationships

1-hop neighbors — click a table to navigate there. CSYTAB decode edges are highlighted; they’re the joins newcomers most often get wrong.

Join details

  • MITBALCIDMASforeign key · N:1
    ON MITBAL.MBSUNO = CIDMAS.IDSUNO AND MITBAL.MBCONO = CIDMAS.IDCONO
  • MPHEADCIDMASforeign key · N:1
    ON MPHEAD.IASUNO = CIDMAS.IDSUNO AND MPHEAD.IACONO = CIDMAS.IDCONO
  • FPLEDGCIDMASforeign key · N:1
    ON FPLEDG.EPSUNO = CIDMAS.IDSUNO AND FPLEDG.EPCONO = CIDMAS.IDCONO

Programs That Use This Table

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Work with the practice →

Not affiliated with or endorsed by Infor. Infor, Infor M3, and Infor CloudSuite are trademarks of Infor and/or its affiliates.