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).

Fields

24 fields · 2 key

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 F30006on 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
-- ============================================================
-- 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;

3 parameters not filled: <catalog>, <schema_data>, <MCU>

Relationships

1-hop neighbors — click a table to navigate there. UDC decode edges point coded fields at their F0005 lookup.

Join details

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

Programs That Use This Table