F4801T
transactionWork 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
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.
Fields
27 fields · 1 key
| Key | Field | Alias | Description | Type | Length | Flags |
|---|---|---|---|---|---|---|
| Primary key | WADOCO | DOCO | Work order number — sole primary key and the 1:1 join to F4801 | Numeric | 8 | |
| WALINE | LINE | Production line or cell the order runs on — used by rate schedules and lean flows | String | 12 | ||
| WAMWDH | MWDH | Scheduling bucket for the line (month/week/day/shift) | Character | 1 | ||
| WASHFT | SHFT | Shift code the order is scheduled to | Character | 1 | ||
| WASRCN | SRCN | Serialized-components flag — whether component serial tracking applies to this order | Character | 1 | ||
| WALEDG | LEDG | Cost method used to value the order (e.g. 07 standard) | String | 2 | ||
| WAATST | ATST | Actual start date (Julian CYYDDD) — compare to the planned start on F4801 for start-schedule adherence | Numeric | 6 | ||
| WACRCD | CRCD | Transaction currency code for order amounts | String | 3 | ||
| WAOTAM | OTAM | Actual other (non-labor, non-material) cost; 2 implied decimals — completes the actuals triplet with F4801 LBAM/MTAM | Numeric | 15 | ||
| WAPRJM | PRJM | Project number for ETO/project manufacturing orders | Numeric | 8 | ||
| WASQOR | SQOR | Quantity ordered in the secondary unit of measure (dual-UOM items) | Numeric | 15 | ||
| WASRNK | SRNK | Shrink factor applied to the order quantity; 2 implied decimals | Numeric | 15 | ||
| WASSOQ | SSOQ | Quantity completed in the secondary unit of measure | Numeric | 15 | ||
| WAUOM2 | UOM2 | Secondary unit of measure for dual-UOM items | String | 2 | ||
| WAVFWO | VFWO | Firm flag — a firmed order is protected from MRP replan messages | Character | 1 | ||
| WAVEND | VEND | Supplier address number — relevant on outside-processing orders | Numeric | 8 | ||
| WASEQN | SEQN | Scheduling sequence number within the line/plan | Numeric | 7 | ||
| WAPLMR | PLMR | Planned material cost; 2 implied decimals | Numeric | 15 | ||
| WAPLLB | PLLB | Planned labor cost; 2 implied decimals | Numeric | 15 | ||
| WAPLOS | PLOS | Planned other cost; 2 implied decimals | Numeric | 15 | ||
| WABGTC | BGTC | Budgeted cost for the order; 2 implied decimals | Numeric | 15 | ||
| WATOEM | TOEM | Total estimated cost; 2 implied decimals | Numeric | 15 | ||
| WATOPL | TOPL | Total planned cost; 2 implied decimals — planned vs. estimated vs. actual gives the full cost bridge | Numeric | 15 | ||
| WAOACM | OACM | Original committed amount; 2 implied decimals | Numeric | 15 | ||
| WARACM | RACM | Remaining committed amount; 2 implied decimals | Numeric | 15 | ||
| WAPMPN | PMPN | Production number (long form) — ties supply to specific demand in production-number-controlled flows | String | 30 | ||
| WAPNS | PNS | Production number short — numeric surrogate for PMPN | Numeric | 10 |
Field provenance: hand-curated.
Boilerplate SQL
Starting point for reading F4801Ton 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 : 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;3 parameters not filled: <catalog>, <schema_data>, <DOCO>
Relationships
1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.
Join details
ON f4801t.WADOCO = f4801.WADOCO