D365 Reference
VendGroup
groupVendor 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
| Key | Field | EDT | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Key | VendGroup | VendGroupId | The vendor group code — the natural key | string | 10 | |
| Name | Group description | string | 60 | |||
| PaymTermId | Default terms of payment for vendors in the group | string | 10 | |||
| ClearingPeriod | Default payment clearing period for the group | string | 10 | |||
| TaxGroupId | Default sales tax group for the group | string | 10 | |||
| VendAccountNumSeq | RecId | RecId of the number sequence new vendor accounts in the group are drawn from | int64 |
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
ON vendtable.vendgroup = vendgroup.vendgroup
Data Entities That Expose This Table
No data-entity mappings populated for this table yet.