Search Results assembly_primary_uom
Overview
APPS.WIP_OSP_REQS_POS_V is a VALID Oracle E-Business Suite view owned by the APPS schema and registered under FND Design Data as WIP.WIP_OSP_REQS_POS_V. It consolidates Outside Processing (OSP) supply information sourced from both Purchasing and iProcurement requisitioning so that shop-floor users can review and revise the dates on which OSP components and services are expected to arrive for a discrete job or repetitive schedule. The view is documented as Oracle Internal Use Only; Oracle does not support direct access to application data through this object except from standard Oracle Applications programs. Its internal view type indicates it is intended to be consumed by Oracle's own OSP scheduling and rescheduling flows rather than by customer-written reports.
The view answers a specific operational question: for a given WIP entity, which purchase orders, releases, requisitions, and requisition lines are supplying the outside-processed operation, what quantity is still pending, and what are the current versus required need-by and promised dates? Because it unions requisition-based demand with purchase-order-based demand, the PO_REQ_TYPE column is the discriminator that distinguishes a purchase order row from a requisition row.
Underlying Base Objects
The documented metadata lists the following referenced base objects: BOM_CALENDAR_DATES, BOM_STANDARD_OPERATIONS, FND_GLOBAL (package), MTL_PARAMETERS, MTL_SYSTEM_ITEMS, PO_DISTRIBUTIONS_ALL, PO_DOCUMENT_TYPES_ALL, PO_HEADERS_ALL, PO_LINES_ALL, PO_LINE_LOCATIONS_ALL, PO_LOOKUP_CODES (view), PO_RELEASES_ALL, PO_REQUISITION_HEADERS_ALL, PO_REQUISITION_LINES_ALL, WIP_ENTITIES, WIP_OPERATIONS, WIP_OPERATION_RESOURCES, and the WIP_OSP package.
Purchasing supply is assembled from PO_HEADERS_ALL, PO_LINES_ALL, PO_LINE_LOCATIONS_ALL, PO_RELEASES_ALL, and PO_DISTRIBUTIONS_ALL, with PO_DOCUMENT_TYPES_ALL supplying document classification. Requisition supply is assembled from PO_REQUISITION_HEADERS_ALL and PO_REQUISITION_LINES_ALL. Shop-floor context comes from WIP_ENTITIES, WIP_OPERATIONS, and WIP_OPERATION_RESOURCES, tied to BOM_STANDARD_OPERATIONS and BOM_CALENDAR_DATES. MTL_SYSTEM_ITEMS and MTL_PARAMETERS provide item and organization attributes, PO_LOOKUP_CODES resolves approval-status codes, and FND_GLOBAL along with the WIP_OSP package supplies session context and business logic.
Key Columns
- PO_REQ_TYPE (VARCHAR2, 25) — indicates whether the row represents a purchase order or a requisition; this is the primary row-type discriminator.
- PO_NUMBER / REQ_NUMBER — the human-readable purchase order or requisition document number.
- APPROVAL_STATUS / APPROVAL_STATUS_CODE — the approval state of the underlying document.
- OLD_NEED_BY_DATE, OLD_PROMISED_DATE, NEW_NEED_BY_DATE — current need-by date, supplier-promised date, and the revised date required on the shop floor.
- ASSEMBLY_QTY_PENDING / ASSEMBLY_PRIMARY_UOM — outstanding quantity expressed in terms of the end assembly, with its unit of measure.
- OSP_ITEM_ID, OSP_ITEM_QTY_ORDERED, OSP_ITEM_UOM — the outside-processed item and the quantity/UOM ordered.
- WIP_ENTITY_ID, REPETITIVE_SCHEDULE_ID, ORGANIZATION_ID — the WIP job or repetitive schedule and the inventory organization.
- OPERATION_SEQ_NUM, RESOURCE_SEQ_NUM, OPERATION_CODE — routing operation and resource identifying where the OSP service is consumed.
- PO_HEADER_ID, PO_RELEASE_ID, PO_LINE_ID, LINE_LOCATION_ID, PO_DISTRIBUTION_ID, REQUISITION_HEADER_ID, REQUISITION_LINE_ID, ORG_ID — foreign-key identifiers and the operating unit.
- CREATION_DATE — standard WHO column.
Common Use Cases and Queries
Typical usage centers on rescheduling OSP deliveries against shop-floor demand and on listing all requisition-sourced versus purchase-order-sourced supply for a job. A representative query filtering by requisition documents follows:
SELECT po_number, po_req_type, req_number,
approval_status, old_need_by_date,
new_need_by_date, assembly_qty_pending,
operation_seq_num, wip_entity_id
FROM apps.wip_osp_reqs_pos_v
WHERE wip_entity_id = :p_wip_entity_id
AND organization_id = :p_org_id
AND po_req_type = 'REQUISITION'
ORDER BY operation_seq_num, old_need_by_date;
Substituting po_req_type = 'PURCHASE ORDER' isolates firm purchasing supply; omitting the predicate returns the complete supply picture. Because the view is flagged internal, production use should be restricted to Oracle-supported OSP flows, and any custom consumption should be validated against the corresponding public APIs.
-
APPS.QA_SS_OSP SQL Statements
12.1.1
-
APPS.QA_SS_OSP SQL Statements
12.2.2
-
VIEW: APPS.WIP_OSP_REQS_POS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OSP_REQS_POS_V, object_name:WIP_OSP_REQS_POS_V, status:VALID,
-
VIEW: APPS.WIP_OSP_REQS_POS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OSP_REQS_POS_V, object_name:WIP_OSP_REQS_POS_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.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,
-
PACKAGE BODY: APPS.QA_SS_OSP
12.1.1
-
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 ,
-
PACKAGE BODY: APPS.QA_SS_OSP
12.2.2
-
View: WIP_OSP_REQS_POS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OSP_REQS_POS_V, object_name:WIP_OSP_REQS_POS_V, status:VALID, product: WIP - Work in Process , description: Requisitions and purchase orders information for a job or repetitive schedule , implementation_dba_data: APPS.WIP_OSP_REQS_POS_V ,
-
View: WIP_OSP_REQS_POS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OSP_REQS_POS_V, object_name:WIP_OSP_REQS_POS_V, status:VALID, product: WIP - Work in Process , description: Requisitions and purchase orders information for a job or repetitive schedule , implementation_dba_data: APPS.WIP_OSP_REQS_POS_V ,
-
APPS.QA_SS_OSP dependencies on WIP_ICX_OSP_WORKBENCH_V
12.2.2
-
APPS.QA_SS_OSP dependencies on WIP_ICX_OSP_WORKBENCH_V
12.1.1
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2