Search Results wip_indicators_temp
Overview
WIP_INDICATORS_TEMP is a temporary working table owned by the WIP schema in Oracle E-Business Suite Work in Process. As its name and the ETRM description indicate, it is used to calculate production indicators from transaction information — typically as an intermediate staging area populated by a concurrent program or report before results are aggregated, displayed, or written elsewhere. It is not a transactional base table; it holds transient rows that support indicator computations for discrete and repetitive manufacturing resources, departments, and operations.
The Data Vault classification heuristic mined from the foreign key structure labels this table as standalone. In modeling terms, this suggests it functions neither as a hub nor as a link in a dimensional sense, but rather as a transient staging or work structure. The only documented foreign key, DEPARTMENT_ID → BOM_DEPARTMENTS, gives it a single, weak business reference; the table's real identity is tied to the WIP execution context (organization, entity, operation, resource) rather than to a persistent business key.
Key Information Stored
The table exposes 35 documented columns in the 12.2.2 ETRM schema. The most operationally significant are:
- GROUP_ID — surrogate grouping key (with LINE_ID) used to partition a single execution run of the indicator calculation.
- ORGANIZATION_ID, WIP_ENTITY_ID, OPERATION_SEQ_NUM — the work order and routing context for the indicator.
- DEPARTMENT_ID, DEPARTMENT_CODE, SHARE_FROM_DEPT_ID — department attribution and cross-department sharing (DEPARTMENT_ID is the documented FK to BOM_DEPARTMENTS).
- RESOURCE_ID, RESOURCE_CODE — the resource against which usage and cost indicators are computed.
- TRANSACTION_DATE, SHIFT_NUM — the time bucket for the indicator.
- STANDARD_QUANTITY, TOTAL_QUANTITY, SCRAP_QUANTITY, AVAILABLE_QUANTITY, AVAILABLE_UNITS, REQUIRED_QUANTITY — quantity measures and variances.
- STANDARD_UNITS, APPLIED_UNITS_PRD, APPLIED_UNITS_UTZ, REQUIRED_HOURS — unit and hour-based usage metrics.
- RESOURCE_COST, RESOURCE_BASIS, INDICATOR_TYPE, PROCESS_PHASE — cost and classification attributes driving report logic.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — standard EBS audit and concurrent-program columns identifying the populating process.
Common Use Cases and Queries
Typical queries filter by GROUP_ID (the run partition) and ORGANIZATION_ID to isolate a single indicator computation, and join to WIP_ENTITIES or BOM_DEPARTMENTS to resolve names.
SELECT w.group_id, w.organization_id, w.wip_entity_id,
w.department_code, w.resource_code, w.transaction_date,
w.standard_quantity, w.total_quantity, w.scrap_quantity,
w.applied_units_prd, w.resource_cost
FROM wip.wip_indicators_temp w
WHERE w.group_id = :group_id
AND w.organization_id = :org_id
ORDER BY w.department_code, w.resource_code;
Because the table is populated by a concurrent request, the REQUEST_ID and PROGRAM_ID columns allow correlation back to the specific program invocation. Reporting solutions frequently use it as a source for resource efficiency, scrap, and utilization extracts, joining to BOM_DEPARTMENTS on DEPARTMENT_ID. In custom logic, it is safest to treat it as read-only after the populating program completes, since its contents are transient.
Related Objects
- BOM_DEPARTMENTS — the sole documented foreign key target, joined via WIP_INDICATORS_TEMP.DEPARTMENT_ID = BOM_DEPARTMENTS.DEPARTMENT_ID.
- WIP_ENTITIES — resolves WIP_ENTITY_ID to the work order header.
- WIP_OPERATIONS — correlates OPERATION_SEQ_NUM to routing steps.
- BOM_RESOURCES — resolves RESOURCE_ID / RESOURCE_CODE.
- WIP_TRANSACTIONS — the source transaction data aggregated into indicators.
- WIP_MOVE_TXN_INTERFACE / WIP_COST_TXN_INTERFACE — related transaction staging structures in the same module.
- FND_CONCURRENT_REQUESTS — correlates REQUEST_ID to the populating concurrent program.
These relationships reflect the table's role as a temporary computational surface rather than a persistent entity, and its business meaning derives almost entirely from the WIP execution tables with which it is queried.
-
Table: WIP_INDICATORS_TEMP
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_INDICATORS_TEMP, object_name:WIP_INDICATORS_TEMP, status:VALID, product: WIP - Work in Process , description: Temporary table used for calculating the production indicators from the transaction information , implementation_dba_data: WIP.WIP_INDICATORS_TEMP ,
-
Table: WIP_INDICATORS_TEMP
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_INDICATORS_TEMP, object_name:WIP_INDICATORS_TEMP, status:VALID, product: WIP - Work in Process , description: Temporary table used for calculating the production indicators from the transaction information , implementation_dba_data: WIP.WIP_INDICATORS_TEMP ,
-
SYNONYM: APPS.WIP_INDICATORS_TEMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_INDICATORS_TEMP, status:VALID,
-
SYNONYM: APPS.WIP_INDICATORS_TEMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_INDICATORS_TEMP, status:VALID,
-
VIEW: WIP.WIP_INDICATORS_TEMP#
12.2.2
owner:WIP, object_type:VIEW, object_name:WIP_INDICATORS_TEMP#, status:VALID,
-
VIEW: WIP.WIP_INDICATORS_TEMP#
12.2.2
-
APPS.WIP_PROD_INDICATORS SQL Statements
12.1.1
-
APPS.WIP_SFCB_UTILITIES SQL Statements
12.2.2
-
APPS.WIP_PROD_INDICATORS SQL Statements
12.2.2
-
APPS.WIP_SFCB_UTILITIES SQL Statements
12.1.1
-
TABLE: WIP.WIP_INDICATORS_TEMP
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_INDICATORS_TEMP, object_name:WIP_INDICATORS_TEMP, status:VALID,
-
TABLE: WIP.WIP_INDICATORS_TEMP
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_INDICATORS_TEMP, object_name:WIP_INDICATORS_TEMP, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.WIP_SFCB_UTILITIES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_SFCB_UTILITIES, status:VALID,
-
PACKAGE BODY: APPS.WIP_SFCB_UTILITIES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_SFCB_UTILITIES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WIP_PROD_INDICATORS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_PROD_INDICATORS, status:VALID,
-
PACKAGE BODY: APPS.WIP_PROD_INDICATORS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WIP_PROD_INDICATORS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WIP_PROD_INDICATORS
12.1.1
-
PACKAGE BODY: APPS.WIP_PROD_INDICATORS
12.2.2
-
TABLE: WIP.WIP_BIS_EFF_TEMP
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_BIS_EFF_TEMP, object_name:WIP_BIS_EFF_TEMP, status:VALID,
-
TABLE: WIP.WIP_BIS_YLD_TEMP
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_BIS_YLD_TEMP, object_name:WIP_BIS_YLD_TEMP, status:VALID,
-
TABLE: WIP.WIP_BIS_UTZ_TEMP
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_BIS_UTZ_TEMP, object_name:WIP_BIS_UTZ_TEMP, status:VALID,
-
TABLE: WIP.WIP_BIS_YLD_TEMP
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_BIS_YLD_TEMP, object_name:WIP_BIS_YLD_TEMP, status:VALID,
-
TABLE: WIP.WIP_BIS_EFF_TEMP
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_BIS_EFF_TEMP, object_name:WIP_BIS_EFF_TEMP, status:VALID,
-
TABLE: WIP.WIP_BIS_UTZ_TEMP
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_BIS_UTZ_TEMP, object_name:WIP_BIS_UTZ_TEMP, status:VALID,
-
PACKAGE BODY: APPS.WIP_SFCB_UTILITIES
12.2.2
-
PACKAGE BODY: APPS.WIP_SFCB_UTILITIES
12.1.1
-
PACKAGE: APPS.WIP_PROD_INDICATORS
12.2.2
-
PACKAGE: APPS.WIP_PROD_INDICATORS
12.1.1
-
APPS.WIP_SFCB_UTILITIES dependencies on WIP_INDICATORS_TEMP
12.2.2
-
APPS.WIP_PROD_INDICATORS dependencies on WIP_INDICATORS_TEMP
12.2.2
-
APPS.WIP_SFCB_UTILITIES dependencies on WIP_INDICATORS_TEMP
12.1.1
-
APPS.WIP_PROD_INDICATORS dependencies on WIP_INDICATORS_TEMP
12.1.1
-
APPS.WIP_PROD_INDICATORS dependencies on FND_STATS
12.2.2
-
APPS.WIP_PROD_INDICATORS dependencies on FND_STATS
12.1.1
-
APPS.WIP_PROD_INDICATORS dependencies on WIP_OPERATION_RESOURCES
12.1.1
-
APPS.WIP_PROD_INDICATORS dependencies on WIP_OPERATION_RESOURCES
12.2.2
-
APPS.WIP_PROD_INDICATORS dependencies on WIP_TRANSACTIONS
12.2.2
-
APPS.WIP_SFCB_UTILITIES dependencies on FLM_TIMEZONE
12.2.2
-
APPS.WIP_SFCB_UTILITIES dependencies on FLM_TIMEZONE
12.1.1
-
APPS.WIP_PROD_INDICATORS dependencies on WIP_TRANSACTIONS
12.1.1