Skip to content
JDE Reference

F3413

transactionAlso in JDE World

MRP time series — one row per item/branch/quantity-type/date bucket; the quantity-type dimension (demand, supply, projected on-hand, ATP, etc.) turns this narrow table into the full planning grid

Notes

Only 5 columns — the whole MPS/MRP/DRP time-series screen pivots out of it. QT (UDC 34/QT) is the row dimension. Pivot QT across STRT buckets to rebuild the planning grid. Fully regenerated each run; snapshot for plan-over-plan comparisons.

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.
Used in the library
Dashboard patterns

Fields

5 fields · 4 key

5 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 5 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyMRITMITMShort item number — part of the primary keyNumeric8
Primary keyMRMCUMCUBranch/plant — part of the primary key; right-justified 12-characterString12
Primary keyMRQTQTQuantity type — the row dimension of the time series (forecast, gross requirements, planned orders, projected available, ATP, ...); part of the primary keyString2
Primary keyMRSTRTSTRTBucket start date (Julian CYYDDD) — part of the primary keyNumeric (DD type: Date)6
MRTRQTTRQTQuantity in the bucket for this quantity typeNumeric15

Field provenance: hand-curated.

Boilerplate SQL

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

4 parameters not filled: <catalog>, <schema_data>, <ITM>, <MCU>

-- ============================================================
-- Table  : F3413 MRP time series — one row per item/branch/quantity-type/date bucket; the quantity-type dimension (demand, supply, projected on-hand, ATP, etc.) turns this narrow table into the full planning grid
-- Purpose: Column-selected read of F3413 — auto-generated from field metadata
-- Grain  : One row per MRITM + MRMCU + MRQT + MRSTRT
-- 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.MRITM AS "Short item number — part of the primary key",
  TRIM(f.MRMCU) AS "Branch/plant — part of the primary key; right-justified 12-character",
  f.MRQT AS "Quantity type — the row dimension of the time series (forecast, gross requirements, planned orders, projected available, ATP, ...); part of the primary key",
  CASE WHEN f.MRSTRT IS NULL OR f.MRSTRT = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.MRSTRT AS INT) DIV 1000, 1, 1), CAST(f.MRSTRT AS INT) % 1000 - 1) END AS "Bucket start date (Julian CYYDDD) — part of the primary key",  -- CYYDDD Julian → DATE
  f.MRTRQT AS "Quantity in the bucket for this quantity type"
FROM <catalog>.<schema_data>.f3413 f
WHERE
  f.MRITM = <ITM>
  -- AND f.MRMCU = '<MCU>'
ORDER BY f.MRITM;

Verified September 2026

Relationships

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

Join details

  • F3413F0005UDC decode · N:1
    ON f0005.DRSY = '34' AND f0005.DRRT = 'QT' AND TRIM(f0005.DRKY) = TRIM(f3413.MRQT)

Programs That Use This Table

More Requirements Planning 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.