Skip to content
JDE Reference

F0013

masterAlso in JDE World

Master list of currency codes with their display decimals; the lookup behind every CRCD column.

Module: 00 · FoundationColumn prefix: CV

Fields

5 fields · 1 key

KeyFieldAliasDescriptionTypeLengthFlags
Primary keyCVCRCDCRCDThree-character currency code (e.g. USD, EUR).String3
CVDL01DL01Currency name.String30
CVECECEdit code governing how the currency is validated.Character1
CVCDECCDECNumber of decimal places shown for amounts in this currency; drives implied-decimal math on stored amounts.Character1
CVCKRCKRValidation routine associated with the currency.String10

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

  • F0015F0013foreign key · N:1
    ON f0015.CXCRCD = f0013.CVCRCD

Programs That Use This Table

No program mappings populated for this table yet.