WIS_WORK_DEFINITIONS
Product: WISmasterPer inventory orgThe work definition header — one row per item + definition-name combination in a plant, binding the produced item, the item structure supplying material requirements, and the work method; the Fusion successor to the routing
Breaks the _B/_TL convention — the header is the plain name, version-controlled attributes live in WIS_WD_VERSIONS, and the display name is a separate names dimension (not yet cataloged). PRODUCTION_PRIORITY 1 marks the item's primary definition; COSTING_PRIORITY picks which one cost rollup uses. BILL_SEQUENCE_ID points at the item structure.
What the badges mean
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
Header & line
WIS_WORK_DEFINITIONS is the header for its lines in WIS_WD_OPERATIONS_B.
Extract access
The delivered surfaces that reach this table — the BICC extract data store (PVO) for bulk extraction and the OTBI subject areas for real-time queries. There is no SQL path to the SaaS database.
- FscmTopModelAM.ScmExtractAM.WisBiccExtractAM.WorkDefinitionExtractPVO
Work Definitions data store — keyed on WorkDefinitionId. No work-definition OTBI subject area exists in the 26B book; definition attributes surface as dimensions. Versions ride a separate store whose full key isn't page-verified — see the plan doc.
Oracle data-store documentation →
Fields
14 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | WORK_DEFINITION_ID | Surrogate key of the work definition header | NUMBER | Key |
| 2 | ORGANIZATION_ID | Manufacturing plant (inventory org) owning the definition | NUMBER | |
| 3 | INVENTORY_ITEM_ID | The produced assembly item | NUMBER | |
| 4 | WORK_DEFINITION_NAME_ID | The reusable definition-name dimension row (Main, Alternate…) | NUMBER | |
| 5 | WORK_DEFINITION_HEADER_NAME | Unique header name; the process name in process manufacturing | VARCHAR2 | |
| 6 | WORK_DEFINITION_TYPE | Kind of work definition | VARCHAR2 | ORA_WIS_WORK_DEFINITION_TYPE |
| 7 | WORK_METHOD_ID | Discrete vs process work method | NUMBER | |
| 8 | STATUS_CODE | Header status | VARCHAR2 | ORA_WIS_WD_STATUS |
| 9 | INACTIVE_DATE | When the definition stopped being usable — NULL while active | DATE | |
| 10 | PRODUCTION_PRIORITY | Rank among the item's definitions — 1 is the primary | NUMBER | |
| 11 | COSTING_PRIORITY | Which definition standard cost rollup uses | NUMBER | |
| 12 | BILL_SEQUENCE_ID | The item structure supplying material requirements | NUMBER | |
| 13 | QUANTITY | Output quantity the definition is stated for; the batch quantity in process manufacturing | NUMBER | |
| 14 | UOM_CODE | UOM of that quantity | VARCHAR2 |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading the BICC-landed copy of WIS_WORK_DEFINITIONSon Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark (the column incremental BICC extracts key on) are already in place. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.
-- ============================================================
-- Table : WIS_WORK_DEFINITIONS — The work definition header — one row per item + definition-name combination in a plant, binding the produced item, the item structure supplying material requirements, and the work method; the Fusion successor to the routing
-- Purpose: Column-selected read of WIS_WORK_DEFINITIONS — auto-generated from field metadata
-- Grain : One row per inventory org (ORGANIZATION_ID) + WORK_DEFINITION_ID
-- Notes : Auto-generated skeleton for Oracle Fusion Cloud data landed in your lakehouse by a BICC extract — there is no SQL path to the SaaS database. Column names follow Oracle's table documentation — if your landed data still carries PVO attribute headers, map names first; see quirks #pvo-drift. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
t.WORK_DEFINITION_ID AS "Surrogate key of the work definition header",
t.ORGANIZATION_ID AS "Manufacturing plant (inventory org) owning the definition",
t.INVENTORY_ITEM_ID AS "The produced assembly item",
t.WORK_DEFINITION_NAME_ID AS "The reusable definition-name dimension row (Main, Alternate…)",
t.WORK_DEFINITION_HEADER_NAME AS "Unique header name; the process name in process manufacturing",
t.WORK_DEFINITION_TYPE AS "Kind of work definition", -- decode t.WORK_DEFINITION_TYPE via FND_LOOKUP_VALUES (LOOKUP_TYPE = 'ORA_WIS_WORK_DEFINITION_TYPE', LANGUAGE-filtered)
t.WORK_METHOD_ID AS "Discrete vs process work method",
t.STATUS_CODE AS "Header status", -- decode t.STATUS_CODE via FND_LOOKUP_VALUES (LOOKUP_TYPE = 'ORA_WIS_WD_STATUS', LANGUAGE-filtered)
t.INACTIVE_DATE AS "When the definition stopped being usable — NULL while active",
t.PRODUCTION_PRIORITY AS "Rank among the item's definitions — 1 is the primary",
t.COSTING_PRIORITY AS "Which definition standard cost rollup uses",
t.BILL_SEQUENCE_ID AS "The item structure supplying material requirements",
t.QUANTITY AS "Output quantity the definition is stated for; the batch quantity in process manufacturing",
t.UOM_CODE AS "UOM of that quantity"
FROM <catalog>.<schema>.WIS_WORK_DEFINITIONS t
WHERE
t.ORGANIZATION_ID = <inventory_org_id> -- inventory org, NOT the business unit — see quirks guide #item-org-striping
-- AND t.WORK_DEFINITION_ID = <WORK_DEFINITION_ID>
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- the column incremental BICC extracts key on
ORDER BY t.WORK_DEFINITION_ID;5 parameters not filled: <catalog>, <schema>, <inventory_org_id>, <WORK_DEFINITION_ID>, <watermark>
Relationships
1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.
Join details
ON WIS_WORK_DEFINITIONS.WORK_DEFINITION_ID = WIS_WD_OPERATIONS_B.WORK_DEFINITION_IDON WIS_WD_VERSIONS.WORK_DEFINITION_ID = WIS_WORK_DEFINITIONS.WORK_DEFINITION_IDON WIS_WORK_DEFINITIONS.INVENTORY_ITEM_ID = EGP_SYSTEM_ITEMS_B.INVENTORY_ITEM_ID AND WIS_WORK_DEFINITIONS.ORGANIZATION_ID = EGP_SYSTEM_ITEMS_B.ORGANIZATION_IDON WIS_WORK_DEFINITIONS.BILL_SEQUENCE_ID = EGP_STRUCTURES_B.BILL_SEQUENCE_IDON WIS_WORK_DEFINITIONS.ORGANIZATION_ID = INV_ORG_PARAMETERS.ORGANIZATION_IDON WIE_WORK_ORDERS_B.WORK_DEFINITION_ID = WIS_WORK_DEFINITIONS.WORK_DEFINITION_ID AND WIE_WORK_ORDERS_B.ORGANIZATION_ID = WIS_WORK_DEFINITIONS.ORGANIZATION_ID