Search Results WIP_DISCRETE_JOBS
Overview
The WIP_DISCRETE_JOBS table is the central transactional repository for discrete manufacturing jobs within Oracle E-Business Suite Work in Process (WIP) module. It stores the master definition and current status of every discrete job created in the system, which represents a specific production order for a standard item. This table is fundamental to the manufacturing execution lifecycle, tracking a job from its creation and release through to its completion and closure. Its integrity is maintained by the primary key constraint WIP_DISCRETE_JOBS_PK on the WIP_ENTITY_ID column, ensuring each job has a unique identifier. The table's extensive foreign key relationships with core inventory, bill of material, and general ledger tables underscore its critical role in integrating manufacturing operations with financial and supply chain management.
Key Information Stored
The table's columns can be categorized into several key functional areas. The primary identifier is WIP_ENTITY_ID, which is the unique system-generated key for the job. Essential descriptive and control columns include ORGANIZATION_ID, PRIMARY_ITEM_ID, JOB_NAME, DESCRIPTION, and STATUS_TYPE, which defines the job's current state (e.g., Unreleased, Released, Complete, On Hold, Cancelled). Manufacturing execution data is captured through fields like START_QUANTITY, QUANTITY_COMPLETED, QUANTITY_SCRAPPED, and SCHEDULED_START_DATE. The table also holds critical references to product definitions via BOM_REVISION, ROUTING_REVISION, COMMON_BOM_SEQUENCE_ID, and COMMON_ROUTING_SEQUENCE_ID. A significant portion of the table's structure is dedicated to financial integration, storing the general ledger accounts for cost accumulation and variance posting, such as MATERIAL_ACCOUNT, RESOURCE_ACCOUNT, OVERHEAD_ACCOUNT, and their corresponding variance accounts (e.g., MATERIAL_VARIANCE_ACCOUNT).
Common Use Cases and Queries
This table is central to operational reporting, performance analysis, and data extraction. Common queries involve retrieving a list of active jobs, analyzing job status, and calculating work-in-process valuations. A fundamental query to list all released jobs for a specific organization would filter on STATUS_TYPE and ORGANIZATION_ID. For cost analysis, a join with the GL_CODE_COMBINATIONS table on the material and resource account columns allows for the reconciliation of WIP balances. Technical integrations often query this table to validate job existence or to extract job details for interfacing with external MES systems. A typical pattern for job summary reporting involves joining WIP_DISCRETE_JOBS with MTL_SYSTEM_ITEMS_B on PRIMARY_ITEM_ID and ORGANIZATION_ID to include item details.
SELECT wdj.JOB_NAME,
wdj.DESCRIPTION,
msi.CONCATENATED_SEGMENTS ITEM,
wdj.STATUS_TYPE,
wdj.START_QUANTITY,
wdj.QUANTITY_COMPLETED
FROM WIP.WIP_DISCRETE_JOBS wdj,
INV.MTL_SYSTEM_ITEMS_B msi
WHERE wdj.ORGANIZATION_ID = msi.ORGANIZATION_ID
AND wdj.PRIMARY_ITEM_ID = msi.INVENTORY_ITEM_ID
AND wdj.ORGANIZATION_ID = :p_org_id
AND wdj.STATUS_TYPE IN (3, 4) -- Released, Complete
ORDER BY wdj.SCHEDULED_START_DATE;
Related Objects
As indicated by its foreign keys, WIP_DISCRETE_JOBS has deep dependencies across multiple EBS modules. Its primary relationships are with Inventory (MTL_SYSTEM_ITEMS_B, MTL_ITEM_REVISIONS_B, MTL_RTG_ITEM_REVISIONS, MTL_SECONDARY_LOCATORS), Bills of Material (BOM_STRUCTURES_B, BOM_OPERATIONAL_ROUTINGS), and General Ledger (GL_CODE_COMBINATIONS, referenced by numerous accounting columns). Transactional child tables, such as WIP_TRANSACTIONS and WIP_OPERATIONS, record the material and resource movements against the job master record defined here. For programmatic interaction, the Oracle-supplied WIP_JOB package provides public APIs for creating, updating, and managing discrete jobs, which internally manipulate this table. Key views like WIP_DISCRETE_JOBS_V provide application-level abstractions of the underlying table data.
-
Table: WIP_DISCRETE_JOBS
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_DISCRETE_JOBS, object_name:WIP_DISCRETE_JOBS, status:VALID, product: WIP - Work in Process , description: Discrete jobs , implementation_dba_data: WIP.WIP_DISCRETE_JOBS ,
-
Table: WIP_DISCRETE_JOBS
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_DISCRETE_JOBS, object_name:WIP_DISCRETE_JOBS, status:VALID, product: WIP - Work in Process , description: Discrete jobs , implementation_dba_data: WIP.WIP_DISCRETE_JOBS ,
-
View: WIP_ENTITY_COMMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ENTITY_COMMENTS_V, object_name:WIP_ENTITY_COMMENTS_V, status:VALID, product: WIP - Work in Process , description: Attachments to WIP entities , implementation_dba_data: APPS.WIP_ENTITY_COMMENTS_V ,
-
View: WIP_ENTITY_COMMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ENTITY_COMMENTS_V, object_name:WIP_ENTITY_COMMENTS_V, status:VALID, product: WIP - Work in Process , description: Attachments to WIP entities , implementation_dba_data: APPS.WIP_ENTITY_COMMENTS_V ,
-
View: WIP_EAM_WORK_ORDER_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDER_DTLS_V, object_name:WIP_EAM_WORK_ORDER_DTLS_V, status:VALID, product: WIP - Work in Process , description: Detailed information for maintenance work orders , implementation_dba_data: APPS.WIP_EAM_WORK_ORDER_DTLS_V ,
-
View: WIP_EAM_WORK_ORDER_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDER_DTLS_V, object_name:WIP_EAM_WORK_ORDER_DTLS_V, status:VALID, product: WIP - Work in Process , description: Detailed information for maintenance work orders , implementation_dba_data: APPS.WIP_EAM_WORK_ORDER_DTLS_V ,
-
View: WIP_MATERIAL_SHORTAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_MATERIAL_SHORTAGES_V, object_name:WIP_MATERIAL_SHORTAGES_V, status:VALID, product: WIP - Work in Process , description: Material shortage data , implementation_dba_data: APPS.WIP_MATERIAL_SHORTAGES_V ,
-
View: WIP_MATERIAL_SHORTAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_MATERIAL_SHORTAGES_V, object_name:WIP_MATERIAL_SHORTAGES_V, status:VALID, product: WIP - Work in Process , description: Material shortage data , implementation_dba_data: APPS.WIP_MATERIAL_SHORTAGES_V ,
-
View: WIP_EAM_CST_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_CST_HEADER_V, object_name:WIP_EAM_CST_HEADER_V, status:VALID, product: WIP - Work in Process , description: Cost information for EAM work orders , implementation_dba_data: APPS.WIP_EAM_CST_HEADER_V ,
-
View: WIP_EAM_CST_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_CST_HEADER_V, object_name:WIP_EAM_CST_HEADER_V, status:VALID, product: WIP - Work in Process , description: Cost information for EAM work orders , implementation_dba_data: APPS.WIP_EAM_CST_HEADER_V ,
-
Table: WIP_DJ_CLOSE_TEMP
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_DJ_CLOSE_TEMP, object_name:WIP_DJ_CLOSE_TEMP, status:VALID, product: WIP - Work in Process , description: Temporary information on jobs being closed , implementation_dba_data: WIP.WIP_DJ_CLOSE_TEMP ,
-
Table: WIP_DJ_CLOSE_TEMP
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_DJ_CLOSE_TEMP, object_name:WIP_DJ_CLOSE_TEMP, status:VALID, product: WIP - Work in Process , description: Temporary information on jobs being closed , implementation_dba_data: WIP.WIP_DJ_CLOSE_TEMP ,
-
Table: WIP_SO_ALLOCATIONS
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_SO_ALLOCATIONS, object_name:WIP_SO_ALLOCATIONS, status:VALID, product: WIP - Work in Process , description: Allocations of job assemblies to sales orders , implementation_dba_data: WIP.WIP_SO_ALLOCATIONS ,
-
Table: WIP_EAM_WORK_REQUESTS
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_EAM_WORK_REQUESTS, object_name:WIP_EAM_WORK_REQUESTS, status:VALID, product: WIP - Work in Process , description: Table for work request information , implementation_dba_data: WIP.WIP_EAM_WORK_REQUESTS ,
-
Table: WIP_EAM_WORK_REQUESTS
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_EAM_WORK_REQUESTS, object_name:WIP_EAM_WORK_REQUESTS, status:VALID, product: WIP - Work in Process , description: Table for work request information , implementation_dba_data: WIP.WIP_EAM_WORK_REQUESTS ,
-
Table: WIP_SO_ALLOCATIONS
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_SO_ALLOCATIONS, object_name:WIP_SO_ALLOCATIONS, status:VALID, product: WIP - Work in Process , description: Allocations of job assemblies to sales orders , implementation_dba_data: WIP.WIP_SO_ALLOCATIONS ,
-
Table: WIP_PERIOD_BALANCES
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_PERIOD_BALANCES, object_name:WIP_PERIOD_BALANCES, status:VALID, product: WIP - Work in Process , description: Job and schedule charges, by accounting period , implementation_dba_data: WIP.WIP_PERIOD_BALANCES ,
-
Table: WIP_PERIOD_BALANCES
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_PERIOD_BALANCES, object_name:WIP_PERIOD_BALANCES, status:VALID, product: WIP - Work in Process , description: Job and schedule charges, by accounting period , implementation_dba_data: WIP.WIP_PERIOD_BALANCES ,
-
Table: WIP_SHOP_FLOOR_STATUSES
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_SHOP_FLOOR_STATUSES, object_name:WIP_SHOP_FLOOR_STATUSES, status:VALID, product: WIP - Work in Process , description: Statuses assigned to particular jobs and schedules , implementation_dba_data: WIP.WIP_SHOP_FLOOR_STATUSES ,
-
Table: WIP_TRANSACTION_ACCOUNTS
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_TRANSACTION_ACCOUNTS, object_name:WIP_TRANSACTION_ACCOUNTS, status:VALID, product: WIP - Work in Process , description: Debits and credits due to resource transactions , implementation_dba_data: WIP.WIP_TRANSACTION_ACCOUNTS ,
-
Table: WIP_SHOP_FLOOR_STATUSES
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_SHOP_FLOOR_STATUSES, object_name:WIP_SHOP_FLOOR_STATUSES, status:VALID, product: WIP - Work in Process , description: Statuses assigned to particular jobs and schedules , implementation_dba_data: WIP.WIP_SHOP_FLOOR_STATUSES ,
-
Table: WIP_TRANSACTION_ACCOUNTS
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_TRANSACTION_ACCOUNTS, object_name:WIP_TRANSACTION_ACCOUNTS, status:VALID, product: WIP - Work in Process , description: Debits and credits due to resource transactions , implementation_dba_data: WIP.WIP_TRANSACTION_ACCOUNTS ,
-
View: WIP_ON_DISCRETE_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ON_DISCRETE_JOBS_V, object_name:WIP_ON_DISCRETE_JOBS_V, status:VALID, product: WIP - Work in Process , description: AK Job Composition View , implementation_dba_data: APPS.WIP_ON_DISCRETE_JOBS_V ,
-
View: WIP_EAM_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_ENTITIES_V, object_name:WIP_EAM_ENTITIES_V, status:VALID, product: WIP - Work in Process , description: EAM work order information , implementation_dba_data: APPS.WIP_EAM_ENTITIES_V ,
-
View: WIP_EAM_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_ENTITIES_V, object_name:WIP_EAM_ENTITIES_V, status:VALID, product: WIP - Work in Process , description: EAM work order information , implementation_dba_data: APPS.WIP_EAM_ENTITIES_V ,
-
Table: WIP_JOB_SCHEDULE_INTERFACE
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE, object_name:WIP_JOB_SCHEDULE_INTERFACE, status:VALID, product: WIP - Work in Process , description: Requests to create or modify jobs and schedules , implementation_dba_data: WIP.WIP_JOB_SCHEDULE_INTERFACE ,
-
Table: WIP_JOB_SCHEDULE_INTERFACE
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE, object_name:WIP_JOB_SCHEDULE_INTERFACE, status:VALID, product: WIP - Work in Process , description: Requests to create or modify jobs and schedules , implementation_dba_data: WIP.WIP_JOB_SCHEDULE_INTERFACE ,
-
View: WIP_DISCRETE_JOBS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DISCRETE_JOBS_ALL_V, object_name:WIP_DISCRETE_JOBS_ALL_V, status:VALID, product: WIP - Work in Process , description: Summary discrete job data , implementation_dba_data: APPS.WIP_DISCRETE_JOBS_ALL_V ,
-
View: WIP_ON_DISCRETE_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ON_DISCRETE_JOBS_V, object_name:WIP_ON_DISCRETE_JOBS_V, status:VALID, product: WIP - Work in Process , description: AK Job Composition View , implementation_dba_data: APPS.WIP_ON_DISCRETE_JOBS_V ,
-
View: WIP_DISCRETE_JOBS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DISCRETE_JOBS_ALL_V, object_name:WIP_DISCRETE_JOBS_ALL_V, status:VALID, product: WIP - Work in Process , description: Summary discrete job data , implementation_dba_data: APPS.WIP_DISCRETE_JOBS_ALL_V ,
-
View: WIP_EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDERS_V, object_name:WIP_EAM_WORK_ORDERS_V, status:VALID, product: WIP - Work in Process , description: Maintenance Work Orders , implementation_dba_data: APPS.WIP_EAM_WORK_ORDERS_V ,
-
View: WIP_ACTIVE_DISCRETE_JOBS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ACTIVE_DISCRETE_JOBS_VAL_V, object_name:WIP_ACTIVE_DISCRETE_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Active discrete jobs , implementation_dba_data: APPS.WIP_ACTIVE_DISCRETE_JOBS_VAL_V ,
-
View: WIP_ACTIVE_DISCRETE_JOBS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ACTIVE_DISCRETE_JOBS_VAL_V, object_name:WIP_ACTIVE_DISCRETE_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Active discrete jobs , implementation_dba_data: APPS.WIP_ACTIVE_DISCRETE_JOBS_VAL_V ,
-
View: WIP_TXN_DISCRETE_JOBS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_TXN_DISCRETE_JOBS_VAL_V, object_name:WIP_TXN_DISCRETE_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Released and complete discrete jobs , implementation_dba_data: APPS.WIP_TXN_DISCRETE_JOBS_VAL_V ,
-
View: WIP_OPEN_DISCRETE_JOBS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPEN_DISCRETE_JOBS_VAL_V, object_name:WIP_OPEN_DISCRETE_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Open discrete jobs , implementation_dba_data: APPS.WIP_OPEN_DISCRETE_JOBS_VAL_V ,
-
Table: WIP_REQUIREMENT_OPERATIONS
12.2.2
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_REQUIREMENT_OPERATIONS, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID, product: WIP - Work in Process , description: Components required by jobs and schedules , implementation_dba_data: WIP.WIP_REQUIREMENT_OPERATIONS ,
-
Table: WIP_REQUIREMENT_OPERATIONS
12.1.1
owner:WIP, object_type:TABLE, fnd_design_data:WIP.WIP_REQUIREMENT_OPERATIONS, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID, product: WIP - Work in Process , description: Components required by jobs and schedules , implementation_dba_data: WIP.WIP_REQUIREMENT_OPERATIONS ,
-
View: WIP_TXN_DISCRETE_JOBS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_TXN_DISCRETE_JOBS_VAL_V, object_name:WIP_TXN_DISCRETE_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Released and complete discrete jobs , implementation_dba_data: APPS.WIP_TXN_DISCRETE_JOBS_VAL_V ,
-
View: WIP_DISCRETE_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DISCRETE_JOBS_V, object_name:WIP_DISCRETE_JOBS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_DISCRETE_JOBS , implementation_dba_data: APPS.WIP_DISCRETE_JOBS_V ,
-
View: WIP_DISCRETE_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DISCRETE_JOBS_V, object_name:WIP_DISCRETE_JOBS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_DISCRETE_JOBS , implementation_dba_data: APPS.WIP_DISCRETE_JOBS_V ,
-
View: WIP_OSP_JOBS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OSP_JOBS_VAL_V, object_name:WIP_OSP_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Active jobs with outside processing resources , implementation_dba_data: APPS.WIP_OSP_JOBS_VAL_V ,
-
View: WIP_OSP_JOBS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OSP_JOBS_VAL_V, object_name:WIP_OSP_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Active jobs with outside processing resources , implementation_dba_data: APPS.WIP_OSP_JOBS_VAL_V ,
-
View: WIP_OPEN_DISCRETE_JOBS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPEN_DISCRETE_JOBS_VAL_V, object_name:WIP_OPEN_DISCRETE_JOBS_VAL_V, status:VALID, product: WIP - Work in Process , description: Open discrete jobs , implementation_dba_data: APPS.WIP_OPEN_DISCRETE_JOBS_VAL_V ,
-
View: WIP_EAM_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDERS_V, object_name:WIP_EAM_WORK_ORDERS_V, status:VALID, product: WIP - Work in Process , description: Maintenance Work Orders , implementation_dba_data: APPS.WIP_EAM_WORK_ORDERS_V ,
-
View: WIP_CUMULATIVE_SCRAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUMULATIVE_SCRAP_V, object_name:WIP_CUMULATIVE_SCRAP_V, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIP_CUMULATIVE_SCRAP_V ,
-
View: WIP_CUMULATIVE_SCRAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUMULATIVE_SCRAP_V, object_name:WIP_CUMULATIVE_SCRAP_V, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIP_CUMULATIVE_SCRAP_V ,
-
View: WIPFV_WIP_RESERVATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIPFV_WIP_RESERVATIONS, object_name:WIPFV_WIP_RESERVATIONS, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIPFV_WIP_RESERVATIONS ,
-
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 ,
-
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 ,
-
View: WIPFV_WIP_RESERVATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIPFV_WIP_RESERVATIONS, object_name:WIPFV_WIP_RESERVATIONS, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIPFV_WIP_RESERVATIONS ,