JDE Reference
F0013
masterAlso in JDE WorldMaster list of currency codes with their display decimals; the lookup behind every CRCD column.
Module: 00 · FoundationColumn prefix: CV
Fields
5 fields · 1 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | CVCRCD | CRCD | Three-character currency code (e.g. USD, EUR). | String | 3 | |
| CVDL01 | DL01 | Currency name. | String | 30 | ||
| CVEC | EC | Edit code governing how the currency is validated. | Character | 1 | ||
| CVCDEC | CDEC | Number of decimal places shown for amounts in this currency; drives implied-decimal math on stored amounts. | Character | 1 | ||
| CVCKR | CKR | Validation routine associated with the currency. | String | 10 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F0013on 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 : F0013 Master list of currency codes with their display decimals; the lookup behind every CRCD column.
-- Purpose: Column-selected read of F0013 — auto-generated from field metadata
-- Grain : One row per CVCRCD
-- 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.CVCRCD AS "Three-character currency code (e.g. USD, EUR).",
f.CVDL01 AS "Currency name.",
f.CVEC AS "Edit code governing how the currency is validated.",
f.CVCDEC AS "Number of decimal places shown for amounts in this currency; drives implied-decimal math on stored amounts.",
f.CVCKR AS "Validation routine associated with the currency."
FROM <catalog>.<schema_data>.f0013 f
ORDER BY f.CVCRCD;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.
Join details
ON f0015.CXCRCD = f0013.CVCRCD
Programs That Use This Table
No program mappings populated for this table yet.