Search Results assembly_description
Overview
WSM_DISCRETE_JOBS_V is an APPS-owned database view in Oracle E-Business Suite (validated in 12.1.1 and 12.2.2) belonging to the WSM — Shop Floor Management product family. It presents a consolidated, denormalized read model of discrete manufacturing jobs. Rather than forcing a report or integration to join the three WIP tables (WIP_ENTITIES, WIP_DISCRETE_JOBS, and their lookups) manually, the view surfaces the job identifier, job name, status, item assembly, and scheduling dates in a single queryable object. It is a convenience layer for shop-floor reporting, dashboarding, and inbound/outbound interfaces that need job header information without navigating the full WIP schema. The view text explicitly exposes the assembly item description, which is a common search target for users reconciling job output to item master records.
Underlying Base Objects
The view is defined over the following documented base objects, all referenced through APPS synonyms or, in one case, a view:
- WIP_DISCRETE_JOBS — the primary driver table holding the discrete job header (status type, primary item, dates, organization).
- WIP_ENTITIES — supplies the human-readable WIP_ENTITY_NAME associated to the job.
- MTL_SYSTEM_ITEMS — supplies the assembly description (MSI.DESCRIPTION) for the primary item.
- MFG_LOOKUPS (documented as a VIEW) — outer-joined twice as LU1 (lookup type WIP_JOB_STATUS) and LU2 (lookup type WIP_SUPPLY), providing decoded status and supply-type meanings.
- MTL_SECONDARY_INVENTORIES — outer-joined (MSUB) for the completion subinventory.
- WIP_LINES — outer-joined (WL) for the production line.
- WIP_SCHEDULE_GROUPS — outer-joined (WSG) for schedule group context.
- MTL_KANBAN_CARDS — outer-joined (KC) for kanban sourcing information.
All joins use the (+) outer-join syntax, indicating the view is intentionally permissive—jobs without a matching line, schedule group, subinventory, or kanban card are still returned. The join between WDJ.PRIMARY_ITEM_ID / WDJ.ORGANIZATION_ID and MTL_SYSTEM_ITEMS is outer-joined to the item master.
Key Columns
- ROW_ID — the WIP_DISCRETE_JOBS rowid, suitable for update/delete targeting.
- WIP_ENTITY_ID — the primary key linking the job across the WIP schema.
- WIP_ENTITY_NAME — the user-visible job or assembly name.
- STATUS_TYPE — the lookup code for job status.
- STATUS_TYPE_DISP — the decoded status meaning from MFG_LOOKUPS, ideal for display and filtering.
- PRIMARY_ITEM_ID — the inventory item identifier of the assembly.
- ASSEMBLY_DESCRIPTION — the description of the assembly item from MTL_SYSTEM_ITEMS; this is the column users search for when matching job output to item definitions.
- SCHEDULED_START_DATE / SCHEDULED_COMPLETION_DATE — the job scheduling window.
- ORGANIZATION_ID — the inventory organization owning the job, essential for multi-org security and filtering.
Common Use Cases and Queries
Typical applications include shop-floor status boards, job scheduling reports, and integration extracts that feed MES or planning systems. The view is frequently queried to list released or unreleased jobs with their decoded status and assembly description:
SELECT WIP_ENTITY_NAME,
STATUS_TYPE_DISP,
PRIMARY_ITEM_ID,
ASSEMBLY_DESCRIPTION,
SCHEDULED_START_DATE,
SCHEDULED_COMPLETION_DATE
FROM APPS.WSM_DISCRETE_JOBS_V
WHERE ORGANIZATION_ID = :p_org_id
AND STATUS_TYPE_DISP = 'Released'
ORDER BY SCHEDULED_START_DATE;
To find jobs for a specific assembly by description, filter on ASSEMBLY_DESCRIPTION or join on PRIMARY_ITEM_ID. Practitioners should note that because the item master join is outer, jobs with an orphaned item reference will return a null ASSEMBLY_DESCRIPTION; such rows warrant data-cleansing review. Additionally, since MFG_LOOKUPS is a view, ensure the correct lookup types (WIP_JOB_STATUS, WIP_SUPPLY) are populated in the target environment to avoid null status displays. The view is read-only by nature; DML should be directed at WIP_DISCRETE_JOBS through the WIP APIs or forms.
-
View: WSM_DISCRETE_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_DISCRETE_JOBS_V, object_name:WSM_DISCRETE_JOBS_V, status:VALID, product: WSM - Shop Floor Management , implementation_dba_data: APPS.WSM_DISCRETE_JOBS_V ,
-
View: WSM_DISCRETE_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_DISCRETE_JOBS_V, object_name:WSM_DISCRETE_JOBS_V, status:VALID, product: WSM - Shop Floor Management , implementation_dba_data: APPS.WSM_DISCRETE_JOBS_V ,
-
View: ICX_EDM_WIP_JOB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_WIP_JOB_V, object_name:ICX_EDM_WIP_JOB_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related WIP Job View , implementation_dba_data: APPS.ICX_EDM_WIP_JOB_V ,
-
View: ICX_EDM_WIP_JOB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_WIP_JOB_V, object_name:ICX_EDM_WIP_JOB_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related WIP Job View , implementation_dba_data: APPS.ICX_EDM_WIP_JOB_V ,
-
VIEW: APPS.WSM_DISCRETE_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_DISCRETE_JOBS_V, object_name:WSM_DISCRETE_JOBS_V, status:VALID,
-
VIEW: APPS.WSM_DISCRETE_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_DISCRETE_JOBS_V, object_name:WSM_DISCRETE_JOBS_V, status:VALID,
-
VIEW: APPS.WSM_DISCRETE_JOBS_V
12.1.1
-
VIEW: APPS.ICX_EDM_WIP_JOB_V
12.1.1
-
VIEW: APPS.ICX_EDM_WIP_JOB_V
12.2.2
-
VIEW: APPS.WSM_DISCRETE_JOBS_V
12.2.2
-
VIEW: APPS.WIP_OPEN_FLOW_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPEN_FLOW_SCHEDULES_V, object_name:WIP_OPEN_FLOW_SCHEDULES_V, status:VALID,
-
View: WIP_OPEN_FLOW_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPEN_FLOW_SCHEDULES_V, object_name:WIP_OPEN_FLOW_SCHEDULES_V, status:VALID, product: WIP - Work in Process , description: This view is used to retrieve open flow schedules. , implementation_dba_data: APPS.WIP_OPEN_FLOW_SCHEDULES_V ,
-
View: WIP_OPEN_FLOW_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPEN_FLOW_SCHEDULES_V, object_name:WIP_OPEN_FLOW_SCHEDULES_V, status:VALID, product: WIP - Work in Process , description: This view is used to retrieve open flow schedules. , implementation_dba_data: APPS.WIP_OPEN_FLOW_SCHEDULES_V ,
-
VIEW: APPS.WIP_OPEN_FLOW_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPEN_FLOW_SCHEDULES_V, object_name:WIP_OPEN_FLOW_SCHEDULES_V, status:VALID,
-
VIEW: APPS.PJM_PROJECT_WIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_V, object_name:PJM_PROJECT_WIP_V, status:VALID,
-
VIEW: APPS.ICX_EDM_WIP_JOB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_WIP_JOB_V, object_name:ICX_EDM_WIP_JOB_V, status:VALID,
-
VIEW: APPS.MTL_MFG_BATCHES_SECURITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_SECURITY_V, object_name:MTL_MFG_BATCHES_SECURITY_V, status:VALID,
-
VIEW: APPS.WIP_OPEN_FLOW_SCHEDULES_V
12.1.1
-
VIEW: APPS.ICX_EDM_WIP_JOB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_WIP_JOB_V, object_name:ICX_EDM_WIP_JOB_V, status:VALID,
-
VIEW: APPS.WIP_OPEN_FLOW_SCHEDULES_V
12.2.2
-
VIEW: APPS.PJM_PROJECT_WIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_V, object_name:PJM_PROJECT_WIP_V, status:VALID,
-
VIEW: APPS.WSM_DISCRETE_JOBS_LOTATTR_V
12.1.1
-
View: MTL_MFG_BATCHES_SECURITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_SECURITY_V, object_name:MTL_MFG_BATCHES_SECURITY_V, status:VALID, product: INV - Inventory , description: View of gme batches with securities for genealogy , implementation_dba_data: APPS.MTL_MFG_BATCHES_SECURITY_V ,
-
View: MTL_MFG_BATCHES_SECURITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_SECURITY_V, object_name:MTL_MFG_BATCHES_SECURITY_V, status:VALID, product: INV - Inventory , description: View of gme batches with securities for genealogy , implementation_dba_data: APPS.MTL_MFG_BATCHES_SECURITY_V ,
-
View: MTL_MFG_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_V, object_name:MTL_MFG_BATCHES_V, status:VALID, product: INV - Inventory , description: View of gme batches for Genealogy , implementation_dba_data: APPS.MTL_MFG_BATCHES_V ,
-
View: MTL_MFG_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_V, object_name:MTL_MFG_BATCHES_V, status:VALID, product: INV - Inventory , description: View of gme batches for Genealogy , implementation_dba_data: APPS.MTL_MFG_BATCHES_V ,
-
VIEW: APPS.WSM_DISCRETE_JOBS_LOTATTR_V
12.2.2
-
View: PJM_PROJECT_WIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_V, object_name:PJM_PROJECT_WIP_V, status:VALID, product: PJM - Project Manufacturing , description: Project related WIP job information for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_WIP_V ,
-
View: PJM_PROJECT_WIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_V, object_name:PJM_PROJECT_WIP_V, status:VALID, product: PJM - Project Manufacturing , description: Project related WIP job information for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_WIP_V ,
-
VIEW: APPS.WSM_DISCRETE_JOBS_LOTATTR_V
12.2.2
owner:APPS, object_type:VIEW, object_name:WSM_DISCRETE_JOBS_LOTATTR_V, status:VALID,
-
VIEW: APPS.MTL_MFG_BATCHES_V
12.2.2
-
VIEW: APPS.MTL_MFG_BATCHES_SECURITY_V
12.2.2
-
VIEW: APPS.MTL_MFG_BATCHES_V
12.1.1
-
VIEW: APPS.MTL_MFG_BATCHES_SECURITY_V
12.1.1
-
VIEW: APPS.WSM_DISCRETE_JOBS_LOTATTR_V
12.1.1
owner:APPS, object_type:VIEW, object_name:WSM_DISCRETE_JOBS_LOTATTR_V, status:VALID,
-
VIEW: APPS.WIP_ICX_OSP_WORKBENCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_OSP_WORKBENCH_V, object_name:WIP_ICX_OSP_WORKBENCH_V, status:VALID,
-
VIEW: APPS.MTL_MFG_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_V, object_name:MTL_MFG_BATCHES_V, status:VALID,
-
VIEW: APPS.WIP_ICX_OSP_WORKBENCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_OSP_WORKBENCH_V, object_name:WIP_ICX_OSP_WORKBENCH_V, status:VALID,
-
VIEW: APPS.MTL_MFG_BATCHES_SECURITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_SECURITY_V, object_name:MTL_MFG_BATCHES_SECURITY_V, status:VALID,
-
VIEW: APPS.MTL_MFG_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MFG_BATCHES_V, object_name:MTL_MFG_BATCHES_V, status:VALID,
-
View: WIP_ICX_OSP_WORKBENCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_OSP_WORKBENCH_V, object_name:WIP_ICX_OSP_WORKBENCH_V, status:VALID, product: WIP - Work in Process , description: WIP outside processing purchase orders information , implementation_dba_data: APPS.WIP_ICX_OSP_WORKBENCH_V ,
-
View: WIP_ICX_OSP_WORKBENCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_OSP_WORKBENCH_V, object_name:WIP_ICX_OSP_WORKBENCH_V, status:VALID, product: WIP - Work in Process , description: WIP outside processing purchase orders information , implementation_dba_data: APPS.WIP_ICX_OSP_WORKBENCH_V ,
-
APPS.INV_LABEL_PVT9 SQL Statements
12.1.1
-
APPS.INV_LABEL_PVT9 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INV_LABEL_PVT9
12.1.1
-
PACKAGE BODY: APPS.INV_LABEL_PVT9
12.2.2
-
eTRM - WSM Tables and Views
12.1.1
description: Sector Extensions associated with a subinventory in an OSFM organization. ,
-
eTRM - WSM Tables and Views
12.2.2
description: Sector Extensions associated with a subinventory in an OSFM organization. ,
-
eTRM - PJM Tables and Views
12.2.2
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - PJM Tables and Views
12.1.1
description: Change History of Serial Number - Model/Unit Number Associations ,