Skip to content
JDE Reference

F0010

controlAlso in JDE World

One row of setup constants per company: fiscal calendar assignment, current periods, base currency, and A/R and A/P aging configuration.

Module: 00 · FoundationColumn prefix: CC
What the badges mean
Superseded
Superseded — a newer table has replaced it, but older scripts still read this one.
Also in JDE World
Also present in JDE World A9.x on the same table name.
master
Data class: what the table holds — master data, transaction documents, control/setup values, history, or a workfile.
Read/write access
Access mode: how the paired program reads or writes this table — R (read), W (write), or R/W (both).
No lifecycle badge means the table is current and not documented in JDE World. In field listings, K marks a primary-key field.

Fields

30 fields · 1 key

30 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 30 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyCCCOCOCompany code; the key every financial table carries as CO or KCO.String5
CCNAMENAMECompany name as printed on reports.String30
CCALTCALTCLonger alternate company name.String40
CCDFYJDFYJStart date of the company's current fiscal year.Numeric (DD type: Date)6
CCPNCPNCCurrent G/L accounting period for the company.Numeric2
CCCRYRCRYRFlag controlling whether multi-currency processing is active for the company.Character1
CCCRCDCRCDCompany base (domestic) currency; compare against transaction currency for FX analysis.String3
CCCALDCALDNumber of accounting periods in the company's normal year.String2
CCDTPNDTPNFiscal date pattern the company follows; joins to F0008.Character1
CCPNFPNFCurrent period used for financial reporting, which can trail the G/L period.Numeric2
CCDFFDFFFiscal year used for financial reporting.Numeric2
CCTXBMTXBMMonth the company's tax year begins.Numeric2
CCABINABINFlag to keep account balances by currency in F0902.Character1
CCBKTXBKTXFlag enabling detailed currency restatement processing.Character1
CCAGEMAGEMAging method the company uses for receivables buckets.Character1
CCAGEAGEWhich date (invoice, due, or G/L) drives receivables aging.Character1
CCDAGDAGAs-of date used when aging receivables.Numeric (DD type: Date)6
CCCRDYCRDYDay span of the current (not yet aged) receivables bucket.Numeric3
CCAGR1AGR1Upper day boundary of aging bucket 1.Numeric3
CCAGR2AGR2Upper day boundary of aging bucket 2.Numeric3
CCAGR3AGR3Upper day boundary of aging bucket 3.Numeric3
CCAGR4AGR4Upper day boundary of aging bucket 4.Numeric3
CCAGR5AGR5Upper day boundary of aging bucket 5.Numeric3
CCAGR6AGR6Upper day boundary of aging bucket 6.Numeric3
CCAGR7AGR7Upper day boundary of aging bucket 7.Numeric3
CCARPNARPNCurrent accounts receivable period.Numeric2
CCAPPNAPPNCurrent accounts payable period.Numeric2
CCARFJARFJStart date of the A/R fiscal year.Numeric (DD type: Date)6
CCAPFJAPFJStart date of the A/P fiscal year.Numeric (DD type: Date)6
CCAN8AN8Address book number representing the company itself; joins to F0101.Numeric8

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F0010 on 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

3 parameters not filled: <catalog>, <schema_data>, <CO>

-- ============================================================
-- Table  : F0010 One row of setup constants per company: fiscal calendar assignment, current periods, base currency, and A/R and A/P aging configuration.
-- Purpose: Column-selected read of F0010 — auto-generated from field metadata
-- Grain  : One row per CCCO
-- 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.CCCO AS "Company code; the key every financial table carries as CO or KCO.",
  f.CCNAME AS "Company name as printed on reports.",
  f.CCALTC AS "Longer alternate company name.",
  CASE WHEN f.CCDFYJ IS NULL OR f.CCDFYJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.CCDFYJ AS INT) DIV 1000, 1, 1), CAST(f.CCDFYJ AS INT) % 1000 - 1) END AS "Start date of the company's current fiscal year.",  -- CYYDDD Julian → DATE
  f.CCPNC AS "Current G/L accounting period for the company.",
  f.CCCRYR AS "Flag controlling whether multi-currency processing is active for the company.",
  f.CCCRCD AS "Company base (domestic) currency; compare against transaction currency for FX analysis.",
  f.CCCALD AS "Number of accounting periods in the company's normal year.",
  f.CCDTPN AS "Fiscal date pattern the company follows; joins to F0008.",
  f.CCPNF AS "Current period used for financial reporting, which can trail the G/L period.",
  f.CCDFF AS "Fiscal year used for financial reporting.",
  f.CCTXBM AS "Month the company's tax year begins.",
  f.CCABIN AS "Flag to keep account balances by currency in F0902.",
  f.CCBKTX AS "Flag enabling detailed currency restatement processing.",
  f.CCAGEM AS "Aging method the company uses for receivables buckets.",
  f.CCAGE AS "Which date (invoice, due, or G/L) drives receivables aging.",
  CASE WHEN f.CCDAG IS NULL OR f.CCDAG = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.CCDAG AS INT) DIV 1000, 1, 1), CAST(f.CCDAG AS INT) % 1000 - 1) END AS "As-of date used when aging receivables.",  -- CYYDDD Julian → DATE
  f.CCCRDY AS "Day span of the current (not yet aged) receivables bucket.",
  f.CCAGR1 AS "Upper day boundary of aging bucket 1.",
  f.CCAGR2 AS "Upper day boundary of aging bucket 2.",
  f.CCAGR3 AS "Upper day boundary of aging bucket 3.",
  f.CCAGR4 AS "Upper day boundary of aging bucket 4.",
  f.CCAGR5 AS "Upper day boundary of aging bucket 5.",
  f.CCAGR6 AS "Upper day boundary of aging bucket 6.",
  f.CCAGR7 AS "Upper day boundary of aging bucket 7.",
  f.CCARPN AS "Current accounts receivable period.",
  f.CCAPPN AS "Current accounts payable period.",
  CASE WHEN f.CCARFJ IS NULL OR f.CCARFJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.CCARFJ AS INT) DIV 1000, 1, 1), CAST(f.CCARFJ AS INT) % 1000 - 1) END AS "Start date of the A/R fiscal year.",  -- CYYDDD Julian → DATE
  CASE WHEN f.CCAPFJ IS NULL OR f.CCAPFJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.CCAPFJ AS INT) DIV 1000, 1, 1), CAST(f.CCAPFJ AS INT) % 1000 - 1) END AS "Start date of the A/P fiscal year.",  -- CYYDDD Julian → DATE
  f.CCAN8 AS "Address book number representing the company itself; joins to F0101."
FROM <catalog>.<schema_data>.f0010 f
WHERE
  f.CCCO = '<CO>'
ORDER BY f.CCCO;

Verified September 2026

Relationships

Diagram of 1-hop neighbors — join details below. UDC decode edges point coded fields at their F0005 lookup.

Join details

  • F0006F0010foreign key · N:1
    ON f0006.MCCO = f0010.CCCO

Programs That Use This Table

More Foundation tables

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Part of the Summit Analytics reference library.

Work with the practice

Not affiliated with or endorsed by Oracle. Oracle, JD Edwards, and EnterpriseOne are registered trademarks of Oracle and/or its affiliates.