Search Results wip_operations
Overview
The WIP_OPERATIONS table is a core transactional table within the Oracle E-Business Suite (EBS) Work in Process (WIP) module, specifically for versions 12.1.1 and 12.2.2. It serves as the master repository for all manufacturing operation sequences defined for discrete jobs and repetitive schedules. This table is fundamental to the execution and tracking of production workflows, as it stores the routing details that define the sequence of steps required to build an assembly. Each record represents a specific operation within the manufacturing process for a given work order, linking the production job to its underlying engineering and resource data from the Bills of Material (BOM) module.
Key Information Stored
The table's primary key uniquely identifies an operation using a combination of WIP_ENTITY_ID (the discrete job or repetitive schedule), OPERATION_SEQ_NUM, and REPETITIVE_SCHEDULE_ID. Key columns include WIP_ENTITY_ID, which links to WIP_DISCRETE_JOBS or WIP_REPETITIVE_SCHEDULES, and OPERATION_SEQUENCE_ID, which references the standard routing definition in BOM_OPERATION_SEQUENCES. DEPARTMENT_ID links the operation to a production department from BOM_DEPARTMENTS. The table also maintains the operational network through PREVIOUS_OPERATION_SEQ_NUM and NEXT_OPERATION_SEQ_NUM columns, which establish the sequence flow. Additional columns typically store status, scheduled dates, and counts for quantity in queue, running, and completed at the operation level.
Common Use Cases and Queries
Primary use cases involve production reporting, shop floor control, and transaction validation. Common queries include retrieving the operation sequence for a specific job to display on a work order traveler, calculating work-in-process at each operation for capacity planning, and validating move transactions against defined operation sequences. A typical query pattern joins WIP_OPERATIONS with WIP_DISCRETE_JOBS and BOM_OPERATION_SEQUENCES to get a full routing view.
- Sample Query: Job Operation Routing
SELECT wo.operation_seq_num, bos.operation_code, wo.department_id
FROM wip_operations wo,
bom_operation_sequences bos,
wip_discrete_jobs wdj
WHERE wo.wip_entity_id = wdj.wip_entity_id
AND wo.operation_sequence_id = bos.operation_sequence_id
AND wdj.job_name = '<JOB_NAME>'
ORDER BY wo.operation_seq_num;
Related Objects
The WIP_OPERATIONS table has extensive relationships, acting as a central hub for WIP transactions and planning. As documented in the ETRM, key foreign key relationships include:
- BOM_DEPARTMENTS: Via DEPARTMENT_ID.
- BOM_OPERATION_SEQUENCES: Via OPERATION_SEQUENCE_ID.
- WIP_DISCRETE_JOBS and WIP_REPETITIVE_SCHEDULES: Via WIP_ENTITY_ID and REPETITIVE_SCHEDULE_ID.
- Self-Referential Relationships: To define the operation sequence network (PREVIOUS_OPERATION_SEQ_NUM, NEXT_OPERATION_SEQ_NUM).
- Transaction Interfaces: WIP_MOVE_TXN_INTERFACE references it for from/to operation validation.
- Component Tables: WIP_OPERATION_RESOURCES, WIP_SUB_OPERATION_RESOURCES, and WIP_REQUIREMENT_OPERATIONS all use its primary key to attach detailed resource and material data.
- External Integration: Referenced by JAI_PO_OSP_LINES for outside processing.
-
Table: WIP_OPERATIONS
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_OPERATIONS, object_name:WIP_OPERATIONS, status:VALID, product: WIP - Work in Process , description: Operations necessary for jobs and schedules , implementation_dba_data: WIP.WIP_OPERATIONS ,
-
Table: WIP_OPERATIONS
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_OPERATIONS, object_name:WIP_OPERATIONS, status:VALID, product: WIP - Work in Process , description: Operations necessary for jobs and schedules , implementation_dba_data: WIP.WIP_OPERATIONS ,
-
APPS.AHL_COMPLETIONS_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.M4R_7B5_OSFM_PKG dependencies on WIP_OPERATIONS
12.1.1
-
APPS.EAM_OTL_TIMECARD_PUB dependencies on WIP_OPERATIONS
12.1.1
-
APPS.CSD_HV_WIP_JOB_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_JSI_VALIDATOR dependencies on WIP_OPERATIONS
12.1.1
-
APPS.EAM_ACTIVITYUTILITIES_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.EAM_OP_COMP_UTILITY_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WPS_SUPPLY_DEMAND dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WS_LABOR_METRIC_PUB dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WIPDJDSP_XMLP_PKG dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WS_DL_UTIL dependencies on WIP_OPERATIONS
12.1.1
-
APPS.CSTPSMUT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WSM_WIP_LOT_TXN_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_OP_RESOURCES_UTILITIES dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WSMPWROT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.QA_SOLUTION_DISPOSITION_PKG dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WPS_COMMON dependencies on WIP_OPERATIONS
12.1.1
-
APPS.OPI_EDW_OPI_JOB_RSRC_F_C dependencies on WIP_OPERATIONS
12.1.1
-
APPS.EAM_TEXT_UTIL dependencies on WIP_OPERATIONS
12.1.1
-
APPS.INV_INVTOPKL_XMLP_PKG dependencies on WIP_OPERATIONS
12.1.1
-
APPS.PJM_TRANSFER_CHARGES_PKG dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WMS_WIP_INTEGRATION dependencies on WIP_OPERATIONS
12.1.1
-
APPS.BOM_DEPARTMENT_RESOURCES_PKG dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WS_UTIL dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_MASSLOAD_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.AHL_PP_RESRC_ASSIGN_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.INV_SHORTCHECKEXEC_PVT dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WS_PTPKPI_UTIL dependencies on WIP_OPERATIONS
12.1.1
-
APPS.WIP_WS_SKILL_CHECK_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.AHL_PRD_WORKORDER_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.EAM_DOWNTIME_PUB dependencies on WIP_OPERATIONS
12.2.2
-
APPS.EAM_WO_NETWORK_DEFAULT_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.INV_TXN_MANAGER_GRP dependencies on WIP_OPERATIONS
12.2.2
-
APPS.EAM_RES_USAGE_VALIDATE_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WMA_COMPLETION dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WIP_JOB_DTLS_SUBSTITUTIONS dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WIP_OPERATIONS_PKG dependencies on WIP_OPERATIONS
12.2.2
-
APPS.MRP_RESCHEDULE_CMRO_WO_PS dependencies on WIP_OPERATIONS
12.2.2
-
APPS.EAM_WORKORDER_UTIL_PKG dependencies on WIP_OPERATIONS
12.2.2
-
APPS.INV_WIP_PICKING_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WSM_SERIAL_SUPPORT_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WIP_DEFAULT_RES dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WSM_JOBCOPIES_PVT dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WPS_COMMON dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WIP_BFLPROC_PRIV dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WIP_WS_UTIL dependencies on WIP_OPERATIONS
12.2.2
-
APPS.WIP_MASSLOAD_PUB dependencies on WIP_OPERATIONS
12.2.2
-
APPS.AHL_PP_RESRC_ASSIGN_PVT dependencies on WIP_OPERATIONS
12.2.2