Search Results first_open_requirements_date
Overview
The WIP_JOB_OPEN_ALLOCATIONS_V view is a reporting object in the Oracle E-Business Suite Work in Process (WIP) module, owned by the APPS schema and carrying a VALID status. Its stated purpose is to expose open allocations for jobs — that is, discrete work order requirements that remain unsatisfied because the required material quantity exceeds the quantity already issued or otherwise supplied. A key detail is the view's status filter: it restricts results to jobs whose STATUS_TYPE IN (3, 4), which correspond to Released and Complete job statuses in the WIP_JOB_STATUS lookup. Only discrete jobs (ENTITY_TYPE = 1) with genuine outstanding material demand, and with no supply subinventory assigned, appear in the result set. The view further intersects each requirement with its parent operation and applies a count point filter (COUNT_POINT_TYPE IN (1, 2) or NULL), so only requirements tied to counting operations are surfaced. The view is a read-only construct intended for reports, dashboards, integration extracts, and ad hoc analysis rather than transactional processing.
Underlying Base Objects
The view is defined over ten documented base objects, joined in a single flat query. The driving table is WIP_DISCRETE_JOBS, linked to WIP_ENTITIES on WIP_ENTITY_ID to obtain the job name and organization context. The requirement side is driven by WIP_REQUIREMENT_OPERATIONS, which supplies required quantity, issued quantity, supply subinventory, and the requirement's transaction identifiers. WIP_OPERATIONS is outer-joined to capture the count point type for each operation sequence. MTL_SYSTEM_ITEMS_KFV is outer-joined on both INVENTORY_ITEM_ID and ORGANIZATION_ID to resolve the primary item's concatenated segments and description. MFG_LOOKUPS is joined to translate STATUS_TYPE into a readable status meaning via the WIP_JOB_STATUS lookup type. WIP_LINES, WIP_SCHEDULE_GROUPS, and WIP_PARAMETERS provide supplementary job attributes — line code, schedule group name, and the organization-level WIP parameter row that must exist for the job. A correlated subquery against MTL_TXN_REQUEST_LINES nets off pending move-order demand when evaluating whether a requirement is genuinely open. Except for MFG_LOOKUPS, the referenced objects are resolved through synonyms in the APPS schema.
Key Columns
WIP_ENTITY_NAME,ORGANIZATION_ID,WIP_ENTITY_ID— Identity and organizational context of the job.JOB_DESCRIPTION— Description of the discrete job, sourced fromWIP_DISCRETE_JOBS.PRIMARY_ITEMandPRIMARY_ITEM_DESCRIPTION— Concatenated segments and description of the job's assembly.STATUS_TYPEandSTATUS— Numeric status code and its decoded meaning (Released or Complete).FIRST_OPEN_REQUIREMENTS_DATE— The earliestDATE_REQUIREDacross open requirements, derived via MIN.START_DATE/COMPLETION_DATE— Scheduled start and completion dates of the job.END_ITEM_UNIT_NUMBER,LINE_CODE,SCHEDULE_GROUP_NAME,BUILD_SEQUENCE— Production line, scheduling, and build-sequencing attributes.PROJECT_ID/TASK_ID— Project and task context where project manufacturing applies.
Common Use Cases and Queries
Typical uses include material shortage reporting, open-requirement aging, and feeding downstream planning extracts. Because the view aggregates with DISTINCT and MIN, it returns one row per job/item combination rather than one row per requirement, so it is suited to headline shortage reporting rather than line-level detail. A representative query follows:
SELECT wip_entity_name,
job_description,
primary_item,
status,
first_open_requirements_date
FROM apps.wip_job_open_allocations_v
WHERE organization_id = :org_id
AND first_open_requirements_date < SYSDATE
ORDER BY first_open_requirements_date;
The view can also be joined back to jobs or items for drill-down reports, or filtered by line_code and schedule_group_name for shop-floor execution reviews. Because it targets only Released and Complete discrete jobs with unmet, non-subinventoried demand, it should not be used as a substitute for the full WIP_REQUIREMENT_OPERATIONS table when complete requirement history is required.
-
View: WIP_JOB_OPEN_ALLOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_OPEN_ALLOCATIONS_V, object_name:WIP_JOB_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for jobs , implementation_dba_data: APPS.WIP_JOB_OPEN_ALLOCATIONS_V ,
-
View: WIP_REP_OPEN_ALLOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REP_OPEN_ALLOCATIONS_V, object_name:WIP_REP_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for repetitive schedules , implementation_dba_data: APPS.WIP_REP_OPEN_ALLOCATIONS_V ,
-
View: WIP_LOTJOB_OPEN_ALLOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_LOTJOB_OPEN_ALLOCATIONS_V, object_name:WIP_LOTJOB_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for lot-based jobs , implementation_dba_data: APPS.WIP_LOTJOB_OPEN_ALLOCATIONS_V ,
-
View: WIP_REP_OPEN_ALLOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REP_OPEN_ALLOCATIONS_V, object_name:WIP_REP_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for repetitive schedules , implementation_dba_data: APPS.WIP_REP_OPEN_ALLOCATIONS_V ,
-
View: WIP_LOTJOB_OPEN_ALLOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_LOTJOB_OPEN_ALLOCATIONS_V, object_name:WIP_LOTJOB_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for lot-based jobs , implementation_dba_data: APPS.WIP_LOTJOB_OPEN_ALLOCATIONS_V ,
-
View: WIP_JOB_OPEN_ALLOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_OPEN_ALLOCATIONS_V, object_name:WIP_JOB_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for jobs , implementation_dba_data: APPS.WIP_JOB_OPEN_ALLOCATIONS_V ,