Skip to content
JDE Reference

F4801T

transaction

Work order tag — one row per work order (same key as F4801) holding manufacturing extensions: line/cell, shift, planned cost buckets, secondary quantities, and production-number fields

Notes

1:1 extension of F4801 keyed on WADOCO alone — always LEFT JOIN from F4801. It reuses the same WA column prefix, so identical column names (WADOCO, WADCT, WALNID) exist in both tables; alias them explicitly in joins. EnterpriseOne-only.

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
KPI definitions

Fields

27 fields · 1 key

27 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 27 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyWADOCODOCOWork order number — sole primary key and the 1:1 join to F4801Numeric8
WALINELINEProduction line or cell the order runs on — used by rate schedules and lean flowsString12
WAMWDHMWDHScheduling bucket for the line (month/week/day/shift)Character1
WASHFTSHFTShift code the order is scheduled toCharacter1
WASRCNSRCNSerialized-components flag — whether component serial tracking applies to this orderCharacter1
WALEDGLEDGCost method used to value the order (e.g. 07 standard)String2
WAATSTATSTActual start date (Julian CYYDDD) — compare to the planned start on F4801 for start-schedule adherenceNumeric (DD type: Date)6
WACRCDCRCDTransaction currency code for order amountsString3
WAOTAMOTAMActual other (non-labor, non-material) cost; 2 implied decimals — completes the actuals triplet with F4801 LBAM/MTAMNumeric15
WAPRJMPRJMProject number for ETO/project manufacturing ordersNumeric8
WASQORSQORQuantity ordered in the secondary unit of measure (dual-UOM items)Numeric15
WASRNKSRNKShrink factor applied to the order quantity; 2 implied decimalsNumeric15
WASSOQSSOQQuantity completed in the secondary unit of measureNumeric15
WAUOM2UOM2Secondary unit of measure for dual-UOM itemsString2
WAVFWOVFWOFirm flag — a firmed order is protected from MRP replan messagesCharacter1
WAVENDVENDSupplier address number — relevant on outside-processing ordersNumeric8
WASEQNSEQNScheduling sequence number within the line/planNumeric7
WAPLMRPLMRPlanned material cost; 2 implied decimalsNumeric15
WAPLLBPLLBPlanned labor cost; 2 implied decimalsNumeric15
WAPLOSPLOSPlanned other cost; 2 implied decimalsNumeric15
WABGTCBGTCBudgeted cost for the order; 2 implied decimalsNumeric15
WATOEMTOEMTotal estimated cost; 2 implied decimalsNumeric15
WATOPLTOPLTotal planned cost; 2 implied decimals — planned vs. estimated vs. actual gives the full cost bridgeNumeric15
WAOACMOACMOriginal committed amount; 2 implied decimalsNumeric15
WARACMRACMRemaining committed amount; 2 implied decimalsNumeric15
WAPMPNPMPNProduction number (long form) — ties supply to specific demand in production-number-controlled flowsString30
WAPNSPNSProduction number short — numeric surrogate for PMPNNumeric10

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F4801T 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>, <DOCO>

-- ============================================================
-- Table  : F4801T Work order tag — one row per work order (same key as F4801) holding manufacturing extensions: line/cell, shift, planned cost buckets, secondary quantities, and production-number fields
-- Purpose: Column-selected read of F4801T — auto-generated from field metadata
-- Grain  : One row per WADOCO
-- 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.WADOCO AS "Work order number — sole primary key and the 1:1 join to F4801",
  f.WALINE AS "Production line or cell the order runs on — used by rate schedules and lean flows",
  f.WAMWDH AS "Scheduling bucket for the line (month/week/day/shift)",
  f.WASHFT AS "Shift code the order is scheduled to",
  f.WASRCN AS "Serialized-components flag — whether component serial tracking applies to this order",
  f.WALEDG AS "Cost method used to value the order (e.g. 07 standard)",
  CASE WHEN f.WAATST IS NULL OR f.WAATST = 0 THEN NULL ELSE DATE_ADD(MAKE_DATE(1900 + CAST(f.WAATST AS INT) DIV 1000, 1, 1), CAST(f.WAATST AS INT) % 1000 - 1) END AS "Actual start date (Julian CYYDDD) — compare to the planned start on F4801 for start-schedule adherence",  -- CYYDDD Julian → DATE
  f.WACRCD AS "Transaction currency code for order amounts",
  f.WAOTAM / POWER(10, 2) AS "Actual other (non-labor, non-material) cost; 2 implied decimals — completes the actuals triplet with F4801 LBAM/MTAM",  -- implied decimals: 2 (verify in F9210)
  f.WAPRJM AS "Project number for ETO/project manufacturing orders",
  f.WASQOR AS "Quantity ordered in the secondary unit of measure (dual-UOM items)",
  f.WASRNK / POWER(10, 2) AS "Shrink factor applied to the order quantity; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WASSOQ AS "Quantity completed in the secondary unit of measure",
  f.WAUOM2 AS "Secondary unit of measure for dual-UOM items",
  f.WAVFWO AS "Firm flag — a firmed order is protected from MRP replan messages",
  f.WAVEND AS "Supplier address number — relevant on outside-processing orders",
  f.WASEQN AS "Scheduling sequence number within the line/plan",
  f.WAPLMR / POWER(10, 2) AS "Planned material cost; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WAPLLB / POWER(10, 2) AS "Planned labor cost; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WAPLOS / POWER(10, 2) AS "Planned other cost; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WABGTC / POWER(10, 2) AS "Budgeted cost for the order; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WATOEM / POWER(10, 2) AS "Total estimated cost; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WATOPL / POWER(10, 2) AS "Total planned cost; 2 implied decimals — planned vs. estimated vs. actual gives the full cost bridge",  -- implied decimals: 2 (verify in F9210)
  f.WAOACM / POWER(10, 2) AS "Original committed amount; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WARACM / POWER(10, 2) AS "Remaining committed amount; 2 implied decimals",  -- implied decimals: 2 (verify in F9210)
  f.WAPMPN AS "Production number (long form) — ties supply to specific demand in production-number-controlled flows",
  f.WAPNS AS "Production number short — numeric surrogate for PMPN"
FROM <catalog>.<schema_data>.f4801t f
WHERE
  f.WADOCO = <DOCO>
ORDER BY f.WADOCO;

Verified September 2026

Relationships

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

Join details

  • F4801TF4801foreign key · 1:1
    ON f4801t.WADOCO = f4801.WADOCO

Programs That Use This Table

More Work Order Processing 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.