Skip to content
JDE Reference

P30006

Interactive

Work Center Revision — the screen for defining work centers and their rates, crew sizes, capacity, and dispatch details used by routings and costing.

Lineage hook

Rows written by P30006 carry …PID = 'P30006' in their audit columns — a ready-made marker for isolating the records this program produced. See the audit-columns guide →

Notes

Work centers are also business units, so records tie back to the business unit master.

Boilerplate SQL

Databricks SQL

Starting point for querying the tables behind this program. Set your Unity Catalog location and filter values below — they’re substituted into the SQL and the copy button.

Query parameters
-- ============================================================
-- Program: P30006 Work Center Revision — the screen for defining work centers and their rates, crew sizes, capacity, and dispatch details used by routings and costing.
-- Purpose: Work Center Revision — the screen for defining work centers and their rates, crew sizes, capacity, and dispatch details used by routings and costing. — auto-generated boilerplate from program-table-map
-- Grain  : F30006 × F0006 — 1:N joins yield one row per detail line
-- Tables : F30006, F0006
-- Notes  : Auto-generated skeleton. Julian dates are converted to DATE and implied-decimal amounts are scaled (verify decimals in F9210). 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(h.IWMCU) AS "Work center identifier — itself a business unit in the F0006 sense.",
  TRIM(h.IWMMCU) AS "Branch/plant the work center belongs to."
FROM <catalog>.<schema_data>.f30006 h
LEFT JOIN <catalog>.<schema_ctl>.f0006 mc
  ON mc.MCMCU = h.IWMCU
WHERE
  h.IWMCU = '<MCU>'
ORDER BY h.IWMCU;

4 parameters not filled: <catalog>, <schema_data>, <schema_ctl>, <MCU>

Tables Used by This Program

How these tables connect. Nodes are clickable.

Join details

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