F3460
transactionAlso in JDE WorldOne row per forecast quantity/amount — keyed by item, branch, forecast type, requested date, year, and customer — holding the demand forecasts (both generated and adjusted) that feed MRP/DRP.
Unique key is item + branch + forecast type + requested date + calendar year + customer address — YR and AN8 are part of the key, so customer-level and summary forecasts coexist; filter MFTYPF (UDC 34/DF) to the type MRP consumes before aggregating. MFDRQJ is Julian CYYDDD. MFAN8 is zero for non-customer forecasts.
Fields
15 fields · 6 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | MFITM | ITM | Short item number the forecast is for. | Numeric | 8 | |
| MFLITM | LITM | 25-character second item number for the same item. | String | 25 | ||
| MFAITM | AITM | Third item number for the same item. | String | 25 | ||
| Primary key | MFMCU | MCU | Branch/plant the forecast applies to. | String | 12 | |
| Primary key | MFDRQJ | DRQJ | Forecast (requested) date bucket, stored as Julian CYYDDD. | Numeric | 6 | |
| Primary key | MFAN8 | AN8 | Customer address number for customer-level forecasts; zero on item/branch-level rows. | Numeric | 8 | |
| MFUORG | UORG | Original/transaction quantity captured with the forecast; implied decimals vary by setup. | Numeric | 15 | ||
| MFAEXP | AEXP | Extended price associated with the forecast quantity. | Numeric | 15 | ||
| MFFAM | FAM | Forecast amount in currency for the bucket. | Numeric | 15 | ||
| MFFQT | FQT | Forecast quantity for the bucket — the number MRP consumes; implied decimals vary by setup. | Numeric | 15 | ||
| Primary key | MFTYPF | TYPF | Forecast type distinguishing generated statistical forecasts (e.g. BF) from manual/adjusted ones (e.g. AA). | String | 2 | |
| MFDCTO | DCTO | Order type code attached to the forecast record. | String | 2 | ||
| MFBPFC | BPFC | Bypass-forcing flag — excludes this row when lower-level forecast changes are forced up a hierarchy. | Character | 1 | ||
| MFRVIS | RVIS | Marks the forecast row as manually revised, protecting it from regeneration. | Character | 1 | ||
| Primary key | MFYR | YR | Two-digit calendar year of the forecast bucket; part of the unique key. | Numeric | 2 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F3460on 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 : F3460 One row per forecast quantity/amount — keyed by item, branch, forecast type, requested date, year, and customer — holding the demand forecasts (both generated and adjusted) that feed MRP/DRP.
-- Purpose: Column-selected read of F3460 — auto-generated from field metadata
-- Grain : One row per MFITM + MFMCU + MFDRQJ + MFAN8 + MFTYPF + MFYR
-- 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.MFITM AS "Short item number the forecast is for.",
TRIM(f.MFMCU) AS "Branch/plant the forecast applies to.",
CASE WHEN f.MFDRQJ IS NULL OR f.MFDRQJ = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.MFDRQJ AS INT) DIV 1000, 1, 1), CAST(f.MFDRQJ AS INT) % 1000 - 1) END AS "Forecast (requested) date bucket, stored as Julian CYYDDD.", -- CYYDDD Julian → DATE
f.MFAN8 AS "Customer address number for customer-level forecasts; zero on item/branch-level rows.",
f.MFTYPF AS "Forecast type distinguishing generated statistical forecasts (e.g. BF) from manual/adjusted ones (e.g. AA).",
f.MFYR AS "Two-digit calendar year of the forecast bucket; part of the unique key.",
f.MFLITM AS "25-character second item number for the same item.",
f.MFAITM AS "Third item number for the same item.",
f.MFUORG AS "Original/transaction quantity captured with the forecast; implied decimals vary by setup.",
f.MFAEXP / POWER(10, 2) AS "Extended price associated with the forecast quantity.", -- implied decimals: 2 (verify in F9210)
f.MFFAM / POWER(10, 2) AS "Forecast amount in currency for the bucket.", -- implied decimals: 2 (verify in F9210)
f.MFFQT AS "Forecast quantity for the bucket — the number MRP consumes; implied decimals vary by setup.",
f.MFDCTO AS "Order type code attached to the forecast record.",
f.MFBPFC AS "Bypass-forcing flag — excludes this row when lower-level forecast changes are forced up a hierarchy.",
f.MFRVIS AS "Marks the forecast row as manually revised, protecting it from regeneration."
FROM <catalog>.<schema_data>.f3460 f
WHERE
f.MFITM = <ITM>
-- AND f.MFMCU = '<MCU>'
-- AND f.MFAN8 = <AN8>
ORDER BY f.MFITM;5 parameters not filled: <catalog>, <schema_data>, <ITM>, <MCU>, <AN8>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f3460.MFITM = f4101.IMITM
Programs That Use This Table
Primary programs
- P3460Forecast Revisions — the screen where planners review and manually adjust detail forecast quantities and amounts by item, branch, and forecast type.Read/write accessInteractive
- R34650Forecast Generation — the batch job that builds statistical demand forecasts from sales history, testing up to twelve forecasting methods and keeping the best fit per item.Write accessBatch UBE
Secondary programs
- R3482MRP/MPS Requirements Planning — the batch job that runs single-facility MRP/MPS, netting forecasts, sales orders, and on-hand supply into time-phased plans and action messages.Read accessBatch UBE
- R3483Master Planning Schedule - Multiple Plant — the batch job that runs multifacility requirements planning, generating transfer-order messages and time series across a network of branch/plants.Read accessBatch UBE