JDE Reference
F0014
controlAlso in JDE WorldPayment terms definitions: discount percentage and window, net days to pay, and split/installment settings referenced by customer and supplier masters.
Module: 00 · FoundationColumn prefix: PN
Fields
11 fields · 1 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | PNPTC | PTC | Payment terms code referenced by customers, suppliers, invoices, and vouchers. | String | 3 | |
| PNPTD | PTD | Payment terms name. | String | 30 | ||
| PNDCP | DCP | Early-payment discount percentage, stored as a decimal fraction. Implied decimals vary by setup, so no fixed scaling is applied. | Numeric | 5 | ||
| PNDCD | DCD | Number of days the discount window stays open. | Numeric | 3 | ||
| PNNDTP | NDTP | Days from the base date until net payment is due. | Numeric | 3 | ||
| PNDDJ | DDJ | Fixed due date used instead of day counts, when populated. | Numeric | 6 | ||
| PNNSP | NSP | Number of equal split payments the terms create. | Numeric | 2 | ||
| PNDTPA | DTPA | Days-to-pay figure used for aging comparisons. | Numeric | 3 | ||
| PNEIR | EIR | Effective annual interest rate implied by the terms. Implied decimals vary by setup, so no fixed scaling is applied. | Numeric | 5 | ||
| PNPXDM | PXDM | Due month used by proximate-date terms. | Numeric | 2 | ||
| PNPXDD | PXDD | Due day used by proximate-date terms. | Numeric | 2 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F0014on Databricks — Julian dates, implied decimals, and padded strings are already converted. Set your Unity Catalog location and filter values below; they’re substituted into the SQL and the copy button.
Query parameters
-- ============================================================
-- Table : F0014 Payment terms definitions: discount percentage and window, net days to pay, and split/installment settings referenced by customer and supplier masters.
-- Purpose: Column-selected read of F0014 — auto-generated from field metadata
-- Grain : One row per PNPTC
-- Notes : Auto-generated skeleton. Julian dates (CYYDDD) are converted to DATE and implied-decimal amounts are scaled (verify decimals in F9210); padded business-unit/UDC keys are TRIMmed. Audit columns (…USER/…PID/…UPMJ) are omitted — see the quirks guide. Set catalog/schema to your Unity Catalog location; fill remaining placeholders (<...>) for your tenant.
-- ============================================================
SELECT
f.PNPTC AS "Payment terms code referenced by customers, suppliers, invoices, and vouchers.",
f.PNPTD AS "Payment terms name.",
f.PNDCP AS "Early-payment discount percentage, stored as a decimal fraction. Implied decimals vary by setup, so no fixed scaling is applied.",
f.PNDCD AS "Number of days the discount window stays open.",
f.PNNDTP AS "Days from the base date until net payment is due.",
CASE WHEN f.PNDDJ IS NULL OR f.PNDDJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.PNDDJ AS INT) DIV 1000, 1, 1), CAST(f.PNDDJ AS INT) % 1000 - 1) END AS "Fixed due date used instead of day counts, when populated.", -- CYYDDD Julian → DATE
f.PNNSP AS "Number of equal split payments the terms create.",
f.PNDTPA AS "Days-to-pay figure used for aging comparisons.",
f.PNEIR AS "Effective annual interest rate implied by the terms. Implied decimals vary by setup, so no fixed scaling is applied.",
f.PNPXDM AS "Due month used by proximate-date terms.",
f.PNPXDD AS "Due day used by proximate-date terms."
FROM <catalog>.<schema_data>.f0014 f
ORDER BY f.PNPTC;2 parameters not filled: <catalog>, <schema_data>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.