Search Results entity_description




Overview

The WIP_REP_OPEN_ALLOCATIONS_V view is a reporting and integration object delivered in the APPS schema of Oracle E-Business Suite (validated against 12.1.1 and 12.2.2). It exposes open allocations for repetitive schedules within the Work in Process (WIP) module. In repetitive manufacturing, a schedule represents an ongoing production commitment across a line rather than a discrete job. This view consolidates the schedule header, its primary item, its line assignment, and the outstanding material requirements driven by those schedules so that planners, shop-floor users, and external systems can identify allocations that have not yet been fully satisfied.

Its principal role is to present, in a single denormalized result set, the repetitive schedules that are still active (status values 3 and 4, resolved through the WIP_JOB_STATUS lookup) together with the earliest date on which material is required. This makes the view suitable for supply/demand analysis, component shortage identification, and integration feeds that need an at-a-glance picture of open repetitive allocations.

Underlying Base Objects

The view is defined over a set of WIP and inventory base objects, joined to reconcile the schedule, its item, its routing requirements, and its line context. Documented referenced objects include:

The joins enforce organization consistency across the item, entity, and translation tables, and require the translation language to match the session language via USERENV('LANG').

Key Columns

Common Use Cases and Queries

Typical usage centers on identifying open repetitive allocations with outstanding material demand, often filtered by organization, line, or earliest requirement date.

  • Listing open allocations by organization: SELECT wip_entity_name, primary_item, status, first_open_requirements_date FROM wip_rep_open_allocations_v WHERE organization_id = :org ORDER BY first_open_requirements_date;
  • Finding component shortages by line: SELECT line_code, wip_entity_name, primary_item, total_quantity FROM wip_rep_open_allocations_v WHERE line_code = :line;
  • Feeding integration extracts that require item, UOM, and schedule status: SELECT wip_entity_id, primary_item, primary_uom_code, status, start_date, completion_date FROM wip_rep_open_allocations_v;

Because the view already restricts to active repetitive statuses and applies the count-point filter (per Bug 5504661), consumers can use it directly without re-implementing WIP allocation logic, making it a reliable source for repetitive-manufacturing reporting and downstream integration.