F1201
masterAlso in JDE WorldAsset master: one row per fixed asset or piece of equipment with its company, responsible business unit, classification codes, account mapping, and acquisition/disposal dates.
The asset cost / accumulated depreciation / expense account triplets stored here are what F1202 balances resolve against; join F1202 on NUMB.
Fields
37 fields · 1 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| FACO | CO | Company that owns the asset | String | 5 | ||
| Primary key | FANUMB | NUMB | Asset item number — the internal short key every F1202 balance row points at | Numeric | 8 | |
| FAAPID | APID | Unit or tag number — the physical label identifier for the asset | String | 12 | ||
| FAAAID | AAID | Parent asset number for component/parent hierarchies | Numeric | 8 | ||
| FAASID | ASID | Serial number of the asset | String | 25 | ||
| FAACL1 | ACL1 | Major accounting class — the top-level asset classification (category code 12/C1) | String | 3 | ||
| FAACL2 | ACL2 | Major equipment class (category code 12/C2) | String | 3 | ||
| FAACL3 | ACL3 | Manufacturer category code | String | 3 | ||
| FAACL4 | ACL4 | Model year category code | String | 3 | ||
| FAACL5 | ACL5 | Usage basis category code (miles or hours) | String | 3 | ||
| FAMCU | MCU | Responsible business unit that carries the asset | String | 12 | ||
| FADL01 | DL01 | Asset description line 1 | String | 30 | ||
| FADAJ | DAJ | Acquisition date | Numeric | 6 | ||
| FADSP | DSP | Disposal or retirement date; blank while the asset is still in service | Numeric | 6 | ||
| FAEQST | EQST | Equipment status code (available, down, disposed, etc.) | String | 2 | ||
| FANORU | NORU | Whether the asset was new or used when acquired | Character | 1 | ||
| FAAESV | AESV | Estimated salvage value | Numeric | 15 | ||
| FAARPC | ARPC | Replacement cost estimate | Numeric | 15 | ||
| FAAMCU | AMCU | Business unit of the asset cost account | String | 12 | ||
| FAAOBJ | AOBJ | Object account where asset cost is capitalized | String | 6 | ||
| FAASUB | ASUB | Subsidiary of the asset cost account | String | 8 | ||
| FADMCU | DMCU | Business unit of the accumulated depreciation account | String | 12 | ||
| FADOBJ | DOBJ | Object account for accumulated depreciation | String | 6 | ||
| FADSUB | DSUB | Subsidiary of the accumulated depreciation account | String | 8 | ||
| FAXMCU | XMCU | Business unit of the depreciation expense account | String | 12 | ||
| FAXOBJ | XOBJ | Object account for depreciation expense | String | 6 | ||
| FAXSUB | XSUB | Subsidiary of the depreciation expense account | String | 8 | ||
| FAARCQ | ARCQ | Current quantity when the asset row represents multiple units | Numeric | 15 | ||
| FAAROQ | AROQ | Original quantity at acquisition | Numeric | 15 | ||
| FAFINC | FINC | Financing method (owned, leased, rented) | Character | 1 | ||
| FALANO | LANO | Lessor/mortgagor address number for financed assets | Numeric | 8 | ||
| FALOC | LOC | Current location business unit of the asset | String | 12 | ||
| FAAN8 | AN8 | Address book number associated with the asset (e.g. assigned employee or operator) | Numeric | 8 | ||
| FAACL0 | ACL0 | Category code F/A 10, conventionally the depreciation rate group | String | 3 | ||
| FAUNIT | UNIT | Unit number cross-reference to the responsible business unit | String | 8 | ||
| FAWRFL | WRFL | Warranty flag indicating active warranty coverage | Character | 1 | ||
| FAWARJ | WARJ | Warranty expiration date | Numeric | 6 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F1201on 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.
-- ============================================================
-- Table : F1201 Asset master: one row per fixed asset or piece of equipment with its company, responsible business unit, classification codes, account mapping, and acquisition/disposal dates.
-- Purpose: Column-selected read of F1201 — auto-generated from field metadata
-- Grain : One row per FANUMB
-- 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.FANUMB AS "Asset item number — the internal short key every F1202 balance row points at",
f.FACO AS "Company that owns the asset",
f.FAAPID AS "Unit or tag number — the physical label identifier for the asset",
f.FAAAID AS "Parent asset number for component/parent hierarchies",
f.FAASID AS "Serial number of the asset",
f.FAACL1 AS "Major accounting class — the top-level asset classification (category code 12/C1)",
f.FAACL2 AS "Major equipment class (category code 12/C2)",
f.FAACL3 AS "Manufacturer category code",
f.FAACL4 AS "Model year category code",
f.FAACL5 AS "Usage basis category code (miles or hours)",
TRIM(f.FAMCU) AS "Responsible business unit that carries the asset",
f.FADL01 AS "Asset description line 1",
CASE WHEN f.FADAJ IS NULL OR f.FADAJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.FADAJ AS INT) DIV 1000, 1, 1), CAST(f.FADAJ AS INT) % 1000 - 1) END AS "Acquisition date", -- CYYDDD Julian → DATE
CASE WHEN f.FADSP IS NULL OR f.FADSP = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.FADSP AS INT) DIV 1000, 1, 1), CAST(f.FADSP AS INT) % 1000 - 1) END AS "Disposal or retirement date; blank while the asset is still in service", -- CYYDDD Julian → DATE
f.FAEQST AS "Equipment status code (available, down, disposed, etc.)",
f.FANORU AS "Whether the asset was new or used when acquired",
f.FAAESV / POWER(10, 2) AS "Estimated salvage value", -- implied decimals: 2 (verify in F9210)
f.FAARPC / POWER(10, 2) AS "Replacement cost estimate", -- implied decimals: 2 (verify in F9210)
TRIM(f.FAAMCU) AS "Business unit of the asset cost account",
f.FAAOBJ AS "Object account where asset cost is capitalized",
f.FAASUB AS "Subsidiary of the asset cost account",
TRIM(f.FADMCU) AS "Business unit of the accumulated depreciation account",
f.FADOBJ AS "Object account for accumulated depreciation",
f.FADSUB AS "Subsidiary of the accumulated depreciation account",
TRIM(f.FAXMCU) AS "Business unit of the depreciation expense account",
f.FAXOBJ AS "Object account for depreciation expense",
f.FAXSUB AS "Subsidiary of the depreciation expense account",
f.FAARCQ / POWER(10, 2) AS "Current quantity when the asset row represents multiple units", -- implied decimals: 2 (verify in F9210)
f.FAAROQ / POWER(10, 2) AS "Original quantity at acquisition", -- implied decimals: 2 (verify in F9210)
f.FAFINC AS "Financing method (owned, leased, rented)",
f.FALANO AS "Lessor/mortgagor address number for financed assets",
TRIM(f.FALOC) AS "Current location business unit of the asset",
f.FAAN8 AS "Address book number associated with the asset (e.g. assigned employee or operator)",
f.FAACL0 AS "Category code F/A 10, conventionally the depreciation rate group",
f.FAUNIT AS "Unit number cross-reference to the responsible business unit",
f.FAWRFL AS "Warranty flag indicating active warranty coverage",
CASE WHEN f.FAWARJ IS NULL OR f.FAWARJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.FAWARJ AS INT) DIV 1000, 1, 1), CAST(f.FAWARJ AS INT) % 1000 - 1) END AS "Warranty expiration date" -- CYYDDD Julian → DATE
FROM <catalog>.<schema_data>.f1201 f
ORDER BY f.FANUMB;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.
Programs That Use This Table
Secondary programs
- R12800Post G/L Entries to Assets — the batch job that carries posted G/L transactions on asset cost and expense accounts into the fixed asset balance records.Read accessBatch UBE
- R12855User Defined Depreciation — the batch job that computes period depreciation for assets under user-defined depreciation rules and writes the resulting balances and journals.Read accessBatch UBE