Skip to content
JDE Reference

F30006

masterAlso in JDE World

One row per work center within a branch/plant, holding the capacity, efficiency, crew, and shift-hour attributes used by scheduling, capacity planning, and cost rollups.

Notes

The work center is a business unit: IWMCU within IWMMCU, both MCU-family right-justified padded strings — trim before joining. Labor/machine/overhead rates are NOT here — they live in F30008 (Work Center Rates).

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.

Fields

24 fields · 2 key

24 fields.

Table fields: key flag, field name, DD alias, description, data type, length, and quirk flags (Julian date, implied decimals, padded string, UDC decode). 24 fields.
KeyFieldAliasDescriptionTypeLengthFlags
Primary keyIWMCUMCUWork center identifier — itself a business unit in the F0006 sense.String12
IWMCUWMCUWDispatch group used to bundle work centers for shop-floor dispatching.String12
Primary keyIWMMCUMMCUBranch/plant the work center belongs to.String12
IWLOCNLOCNDefault issue location associated with the work center.String20
IWCRTWCRTWFlags the work center as critical for capacity planning purposes.Character1
IWPILCPILCPrime load code — whether capacity load is measured in labor hours, machine hours, or both.Character1
IWBFPFBFPFDefault pay point code for operations run at this work center.Character1
IWDEMODEMOWhether rated capacity is demonstrated (historical) or calculated from shifts and efficiency.Character1
IWAN8AN8Address book number linked to the work center (e.g. responsible party or subcontractor).Numeric8
IWWRHRWRHRStandard work hours per day the work center is available.Numeric15
IWWOREWOREEfficiency percent applied to standard hours when calculating capacity and cost.Numeric15
IWWORUWORUUtilization percent — share of available time the work center is expected to be productive.Numeric15
IWQMADQMADNumber of employees assigned to the work center.Numeric15
IWNOMANOMANumber of machines at the work center.Numeric5
IWSQDSQDStandard queue hours defaulted onto routing operations at this work center.Numeric5
IWMOVDMOVDStandard move hours defaulted onto routing operations.Numeric5
IWQUEDQUEDStandard queue hours ahead of operations at this work center.Numeric5
IWSETCSETCDefault crew size for operations run here.Numeric5
IWWDCTWDCTWork day calendar type used to derive the work center's available days.String10
IWWDCKWDCKWork day calendar key paired with the calendar type.String10
IWCAPUCAPUUnit of measure the capacity figures are stated in.String2
IWCPSDCPSDStandard rated capacity of the work center per period.Numeric15
IWCPMICPMIMinimum capacity used by planning as a lower bound.Numeric15
IWCPMACPMAMaximum capacity used by planning as an upper bound.Numeric15

Field provenance: hand-curated.

Boilerplate SQL

Starting point for reading F30006 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>, <MCU>

-- ============================================================
-- Table  : F30006 One row per work center within a branch/plant, holding the capacity, efficiency, crew, and shift-hour attributes used by scheduling, capacity planning, and cost rollups.
-- Purpose: Column-selected read of F30006 — auto-generated from field metadata
-- Grain  : One row per IWMCU + IWMMCU
-- 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
  TRIM(f.IWMCU) AS "Work center identifier — itself a business unit in the F0006 sense.",
  TRIM(f.IWMMCU) AS "Branch/plant the work center belongs to.",
  TRIM(f.IWMCUW) AS "Dispatch group used to bundle work centers for shop-floor dispatching.",
  f.IWLOCN AS "Default issue location associated with the work center.",
  f.IWCRTW AS "Flags the work center as critical for capacity planning purposes.",
  f.IWPILC AS "Prime load code — whether capacity load is measured in labor hours, machine hours, or both.",
  f.IWBFPF AS "Default pay point code for operations run at this work center.",
  f.IWDEMO AS "Whether rated capacity is demonstrated (historical) or calculated from shifts and efficiency.",
  f.IWAN8 AS "Address book number linked to the work center (e.g. responsible party or subcontractor).",
  f.IWWRHR / POWER(10, 2) AS "Standard work hours per day the work center is available.",  -- implied decimals: 2 (verify in F9210)
  f.IWWORE / POWER(10, 2) AS "Efficiency percent applied to standard hours when calculating capacity and cost.",  -- implied decimals: 2 (verify in F9210)
  f.IWWORU / POWER(10, 2) AS "Utilization percent — share of available time the work center is expected to be productive.",  -- implied decimals: 2 (verify in F9210)
  f.IWQMAD AS "Number of employees assigned to the work center.",
  f.IWNOMA AS "Number of machines at the work center.",
  f.IWSQD / POWER(10, 2) AS "Standard queue hours defaulted onto routing operations at this work center.",  -- implied decimals: 2 (verify in F9210)
  f.IWMOVD / POWER(10, 2) AS "Standard move hours defaulted onto routing operations.",  -- implied decimals: 2 (verify in F9210)
  f.IWQUED / POWER(10, 2) AS "Standard queue hours ahead of operations at this work center.",  -- implied decimals: 2 (verify in F9210)
  f.IWSETC / POWER(10, 1) AS "Default crew size for operations run here.",  -- implied decimals: 1 (verify in F9210)
  f.IWWDCT AS "Work day calendar type used to derive the work center's available days.",
  f.IWWDCK AS "Work day calendar key paired with the calendar type.",
  f.IWCAPU AS "Unit of measure the capacity figures are stated in.",
  f.IWCPSD AS "Standard rated capacity of the work center per period.",
  f.IWCPMI AS "Minimum capacity used by planning as a lower bound.",
  f.IWCPMA AS "Maximum capacity used by planning as an upper bound."
FROM <catalog>.<schema_data>.f30006 f
WHERE
  f.IWMCU = '<MCU>'
ORDER BY f.IWMCU;

Verified September 2026

Relationships

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

Join details

  • F30006F0006foreign key · N:1
    ON TRIM(f30006.IWMCU) = TRIM(f0006.MCMCU)
  • F3112F30006foreign key · N:1
    ON TRIM(f3112.WLMCU) = TRIM(f30006.IWMCU)

Programs That Use This Table

More Product Data Management 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.