JDE Reference
F0414
transactionAlso in JDE WorldA/P matching document detail: one row per application of a payment against a voucher pay item, carrying the paid amount and discount taken in both currencies.
Notes
Sum RNPAAP + RNADSA by voucher key (KCO/DOC/DCT/SFX) to reconcile against F0411 gross-minus-open.
Fields
28 fields · 2 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | RNPYID | PYID | Payment ID linking back to the F0413 payment header | Numeric | 15 | |
| Primary key | RNRC5 | RC5 | Line number within the payment — makes each application row unique | Numeric | 5 | |
| RNDCTM | DCTM | Matching document type of the payment | String | 2 | ||
| RNKCO | KCO | Voucher document company | String | 5 | ||
| RNDCT | DCT | Voucher document type | String | 2 | ||
| RNDOC | DOC | Voucher document number the payment was applied to | Numeric | 8 | ||
| RNSFX | SFX | Voucher pay item the application hit | String | 3 | ||
| RNSFXE | SFXE | Pay item extension of the voucher | Numeric | 2 | ||
| RNPAAP | PAAP | Amount of this payment applied to the voucher, domestic currency | Numeric | 15 | ||
| RNADSC | ADSC | Discount that was available on the voucher | Numeric | 15 | ||
| RNADSA | ADSA | Discount taken as part of the payment | Numeric | 15 | ||
| RNPFAP | PFAP | Applied amount in the foreign currency | Numeric | 15 | ||
| RNCDS | CDS | Foreign discount available | Numeric | 15 | ||
| RNCDSA | CDSA | Foreign discount taken | Numeric | 15 | ||
| RNCRRM | CRRM | Currency mode — domestic or foreign entry | Character | 1 | ||
| RNCRCD | CRCD | Transaction currency of the payment | String | 3 | ||
| RNCRR | CRR | Exchange rate used for the application; implied decimals vary by setup | Numeric | 15 | ||
| RNGLC | GLC | G/L offset class used to resolve the A/P trade account | String | 4 | ||
| RNPOST | POST | G/L posted code for the application row | Character | 1 | ||
| RNPN | PN | Fiscal period of the G/L date | Numeric | 2 | ||
| RNFY | FY | Fiscal year of the G/L date | Numeric | 2 | ||
| RNCTRY | CTRY | Century of the G/L date | Numeric | 2 | ||
| RNAN8 | AN8 | Supplier address book number | Numeric | 8 | ||
| RNCO | CO | Company of the application | String | 5 | ||
| RNMCU | MCU | Business unit of the application | String | 12 | ||
| RNPO | PO | Purchase order reference carried from the voucher | String | 8 | ||
| RNBCRC | BCRC | Base (domestic) currency | String | 3 | ||
| RNDRCO | DRCO | Discount reason code | String | 3 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F0414on 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 : F0414 A/P matching document detail: one row per application of a payment against a voucher pay item, carrying the paid amount and discount taken in both currencies.
-- Purpose: Column-selected read of F0414 — auto-generated from field metadata
-- Grain : One row per RNPYID + RNRC5
-- 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.RNPYID AS "Payment ID linking back to the F0413 payment header",
f.RNRC5 AS "Line number within the payment — makes each application row unique",
f.RNDCTM AS "Matching document type of the payment",
f.RNKCO AS "Voucher document company",
f.RNDCT AS "Voucher document type",
f.RNDOC AS "Voucher document number the payment was applied to",
f.RNSFX AS "Voucher pay item the application hit",
f.RNSFXE AS "Pay item extension of the voucher",
f.RNPAAP / POWER(10, 2) AS "Amount of this payment applied to the voucher, domestic currency", -- implied decimals: 2 (verify in F9210)
f.RNADSC / POWER(10, 2) AS "Discount that was available on the voucher", -- implied decimals: 2 (verify in F9210)
f.RNADSA / POWER(10, 2) AS "Discount taken as part of the payment", -- implied decimals: 2 (verify in F9210)
f.RNPFAP / POWER(10, 2) AS "Applied amount in the foreign currency", -- implied decimals: 2 (verify in F9210)
f.RNCDS / POWER(10, 2) AS "Foreign discount available", -- implied decimals: 2 (verify in F9210)
f.RNCDSA / POWER(10, 2) AS "Foreign discount taken", -- implied decimals: 2 (verify in F9210)
f.RNCRRM AS "Currency mode — domestic or foreign entry",
f.RNCRCD AS "Transaction currency of the payment",
f.RNCRR AS "Exchange rate used for the application; implied decimals vary by setup",
f.RNGLC AS "G/L offset class used to resolve the A/P trade account",
f.RNPOST AS "G/L posted code for the application row",
f.RNPN AS "Fiscal period of the G/L date",
f.RNFY AS "Fiscal year of the G/L date",
f.RNCTRY AS "Century of the G/L date",
f.RNAN8 AS "Supplier address book number",
f.RNCO AS "Company of the application",
TRIM(f.RNMCU) AS "Business unit of the application",
f.RNPO AS "Purchase order reference carried from the voucher",
f.RNBCRC AS "Base (domestic) currency",
f.RNDRCO AS "Discount reason code"
FROM <catalog>.<schema_data>.f0414 f
ORDER BY f.RNPYID;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.