Search Results serialization_start_op
Overview
The view APPS.WIP_OPEN_DISCRETE_JOBS_VAL_V is a Work in Process (WIP) reporting object that exposes open discrete jobs within an Oracle E-Business Suite environment. Registered in the APPS schema with a status of VALID, it is delivered for use in both release 12.1.1 and 12.2.2. Its stated purpose is the presentation of open discrete jobs — records representing manufacturing work orders that have been released to the shop floor but not yet closed. In the terminology of EBS validation views, the _VAL_V suffix signals that the object is intended to support value-set, lookup, and reference validation, making it a candidate data source for list-of-values queries, concurrent program parameters, and integration extracts where a compact set of open jobs is required.
Underlying Base Objects
The view is defined over two documented base objects, both exposed through APPS synonyms: WIP_DISCRETE_JOBS and WIP_ENTITIES. The join is an equi-join on WIP_ENTITY_ID, with WIP_ENTITIES supplying the entity name and entity type while WIP_DISCRETE_JOBS contributes the job-level attributes. The critical filter is J.STATUS_TYPE IN (1, 3, 4, 6), which restricts the result set to open job statuses — unreleased, released, complete, and on hold — and excludes closed, cancelled, and pending-close jobs. Because it is a simple two-table validation view with no aggregation, it inherits minimal performance overhead and is safe to query directly from reports, forms, and PL/SQL validation logic.
Key Columns
WIP_ENTITY_ID— Primary key of the job; joins back toWIP_ENTITIES,WIP_DISCRETE_JOBS, and transaction tables.WIP_ENTITY_NAME— User-visible discrete job number or name.DESCRIPTION,ORGANIZATION_ID,ENTITY_TYPE,JOB_TYPE— Job context, including the inventory organization and whether the entity is a standard or non-standard discrete job.SCHEDULED_START_DATE,SCHEDULED_COMPLETION_DATE— Planned shop floor dates used for capacity and scheduling reporting.PRIMARY_ITEM_ID,START_QUANTITY,BOM_REVISION— The assembly being built, the quantity started, and the bill revision.STATUS_TYPE— Numeric job status; the view permits values 1, 3, 4, and 6 only.COMPLETION_SUBINVENTORY,COMPLETION_LOCATOR_ID— Default completion destination.JOB_LOT_NUMBER— Alias forJ.LOT_NUMBER, the lot associated with the job header.PROJECT_ID,TASK_ID— Project and task references for project-driven manufacturing.SERIALIZATION_START_OP— The operation sequence at which serial number assignment begins for the job. This column is the most directly relevant field for the search term serialization_start_op, and it governs serialization behavior during move and completion transactions.
Common Use Cases and Queries
Typical applications include open job list-of-values on transactional forms, shop floor dispatch reports, and integration extracts feeding MES or scheduling systems. A representative query retrieving jobs that have a defined serialization start operation is shown below.
- Validate a discrete job number entered by a user against open jobs in a specific organization.
- Extract all open jobs and their serialization start operation for serial-tracked assemblies.
- Report scheduled start and completion dates for released but incomplete work orders.
SELECT wip_entity_name,
description,
organization_id,
scheduled_start_date,
scheduled_completion_date,
start_quantity,
serialization_start_op
FROM apps.wip_open_discrete_jobs_val_v
WHERE organization_id = :p_org_id
AND status_type IN (1,3,4,6)
AND serialization_start_op IS NOT NULL
ORDER BY scheduled_start_date;
Because the view already enforces the open-status filter, consumers should not re-apply status predicates unless a narrower subset is required. As with all EBS validation views, it should be referenced through the APPS synonym and never queried against the underlying tables with hard-coded schema prefixes.
-
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_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 ,
-
View: WIP_JOBS_RESERVATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOBS_RESERVATIONS_V, object_name:WIP_JOBS_RESERVATIONS_V, status:VALID, product: WIP - Work in Process , description: Data for Jobs eligible for reservations , implementation_dba_data: APPS.WIP_JOBS_RESERVATIONS_V ,
-
View: WIP_JOBS_RESERVATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOBS_RESERVATIONS_V, object_name:WIP_JOBS_RESERVATIONS_V, status:VALID, product: WIP - Work in Process , description: Data for Jobs eligible for reservations , implementation_dba_data: APPS.WIP_JOBS_RESERVATIONS_V ,
-
View: WIP_RES_IMM_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_IMM_DISPATCH_V, object_name:WIP_RES_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource immediate dispatch list , implementation_dba_data: APPS.WIP_RES_IMM_DISPATCH_V ,
-
View: WIP_DEPT_IMM_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_IMM_DISPATCH_V, object_name:WIP_DEPT_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department immediate dispatch list , implementation_dba_data: APPS.WIP_DEPT_IMM_DISPATCH_V ,
-
View: WIP_DEPT_IMM_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_IMM_DISPATCH_V, object_name:WIP_DEPT_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department immediate dispatch list , implementation_dba_data: APPS.WIP_DEPT_IMM_DISPATCH_V ,
-
View: WIP_RES_IMM_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_IMM_DISPATCH_V, object_name:WIP_RES_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource immediate dispatch list , implementation_dba_data: APPS.WIP_RES_IMM_DISPATCH_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_INST_EMP_IMM_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_IMM_DISPATCH_V, object_name:WIP_INST_EMP_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance immediate dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_IMM_DISPATCH_V ,
-
View: WIP_INST_EQP_IMM_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_IMM_DISPATCH_V, object_name:WIP_INST_EQP_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance immediate dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_IMM_DISPATCH_V ,
-
View: WIP_INST_EQP_IMM_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_IMM_DISPATCH_V, object_name:WIP_INST_EQP_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance immediate dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_IMM_DISPATCH_V ,
-
View: WIP_INST_EMP_IMM_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_IMM_DISPATCH_V, object_name:WIP_INST_EMP_IMM_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance immediate dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_IMM_DISPATCH_V ,
-
View: WIP_DEPT_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department upstream dispatch list , implementation_dba_data: APPS.WIP_DEPT_UPS_DISPATCH_V ,
-
View: WIP_RES_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource upstream dispatch list , implementation_dba_data: APPS.WIP_RES_UPS_DISPATCH_V ,
-
View: WIP_DEPT_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department upstream dispatch list , implementation_dba_data: APPS.WIP_DEPT_UPS_DISPATCH_V ,
-
View: WIP_INST_EMP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_UPS_DISPATCH_V ,
-
View: WIP_INST_EQP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_UPS_DISPATCH_V ,
-
View: WIP_INST_EQP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_UPS_DISPATCH_V ,
-
View: WIP_RES_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource upstream dispatch list , implementation_dba_data: APPS.WIP_RES_UPS_DISPATCH_V ,
-
View: WIP_INST_EMP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_UPS_DISPATCH_V ,