Skip to content
D365 Reference

VendGroup

group

Vendor group master — the posting, payment-term, and number-sequence defaults shared by every vendor in the group

Module: Procurement & SourcingCompany-partitioned (DataAreaId)

Fields

6 fields · 1 key

KeyFieldEDTDescriptionTypeLengthFlags
KeyVendGroupVendGroupIdThe vendor group code — the natural keystring10
NameGroup descriptionstring60
PaymTermIdDefault terms of payment for vendors in the groupstring10
ClearingPeriodDefault payment clearing period for the groupstring10
TaxGroupIdDefault sales tax group for the groupstring10
VendAccountNumSeqRecIdRecId of the number sequence new vendor accounts in the group are drawn fromint64

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading VendGroupon 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  : VendGroup Vendor group master — the posting, payment-term, and number-sequence defaults shared by every vendor in the group
-- Purpose: Column-selected read of VendGroup — auto-generated from field metadata
-- Grain  : One row per company (dataareaid) + VendGroup
-- 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
  v.vendgroup AS "The vendor group code — the natural key",
  v.name AS "Group description",
  v.paymtermid AS "Default terms of payment for vendors in the group",
  v.clearingperiod AS "Default payment clearing period for the group",
  v.taxgroupid AS "Default sales tax group for the group",
  v.vendaccountnumseq AS "RecId of the number sequence new vendor accounts in the group are drawn from"
FROM <catalog>.<schema>.vendgroup v
WHERE
  v.dataareaid = '<company>'
ORDER BY v.vendgroup;

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

  • VendTableVendGroupforeign key · N:1
    ON vendtable.vendgroup = vendgroup.vendgroup

Data Entities That Expose This Table

No data-entity mappings populated for this table yet.