JDE Reference
P1201
InteractiveAsset Master Information — the screen where fixed assets are created and maintained: descriptions, responsible business unit, category codes, and account coding.
Lineage hook
Rows written by P1201 carry …PID = 'P1201' in their audit columns — a ready-made marker for isolating the records this program produced. See the audit-columns guide →
Boilerplate SQL
Databricks SQLStarting point for querying the tables behind this program. Set your Unity Catalog location and filter values below — they’re substituted into the SQL and the copy button.
Query parameters
-- ============================================================
-- Program: P1201 Asset Master Information — the screen where fixed assets are created and maintained: descriptions, responsible business unit, category codes, and account coding.
-- Purpose: Asset Master Information — the screen where fixed assets are created and maintained: descriptions, responsible business unit, category codes, and account coding. — auto-generated boilerplate from program-table-map
-- Grain : F1201 × F1202, F0101 — 1:N joins yield one row per detail line
-- Tables : F1201, F1202, F0101
-- Notes : Auto-generated skeleton. Julian dates are converted to DATE and implied-decimal amounts are scaled (verify decimals in F9210). 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
h.FANUMB AS "Asset item number — the internal short key every F1202 balance row points at",
h.FADL01 AS "Asset description line 1",
f.FLAID AS "Short account ID of the cost, accumulated depreciation, or expense account",
f.FLCTRY AS "Century of the fiscal year",
f.FLFY AS "Fiscal year of the balance row",
f.FLFQ AS "Fiscal quarter — obsolete but still part of the primary key, normally blank",
f.FLLT AS "Ledger type (AA actual, plus tax and alternate depreciation ledgers like D1-D9)",
f.FLSBL AS "Subledger value, part of the key; usually blank for asset balances",
f.FLSBLT AS "Subledger type qualifying the subledger value"
FROM <catalog>.<schema_data>.f1201 h
LEFT JOIN <catalog>.<schema_data>.f1202 f
ON f.FLNUMB = h.FANUMB
LEFT JOIN <catalog>.<schema_data>.f0101 ab
ON ab.ABAN8 = h.FAAN8
ORDER BY h.FANUMB;2 parameters not filled: <catalog>, <schema_data>
Tables Used by This Program
How these tables connect. Nodes are clickable.
Secondary tables
- F0101Address book master — the shared registry of customers, suppliers, employees, and other entitiesRead accessmaster
- F1202Asset account balances: one row per asset, account, ledger type, subledger, and fiscal year holding the beginning balance and fourteen period net-posting buckets — the fixed-asset mirror of F0902.Read accesstransaction