Search Results wip_net_available_view
Overview
WIP_NET_AVAILABLE_VIEW is an Oracle E-Business Suite database view owned by the APPS schema and delivered as part of the Work in Process (WIP) product. Its stated purpose is to report "Job/schedule material requirement subinventory quantities" — that is, it consolidates, by organization and inventory item, the material requirements raised against jobs and repetitive schedules together with the on-hand quantities held in the subinventories that supply them. The view therefore acts as a net availability reporting layer that joins shop-floor demand (WIP requirement operations) to inventory supply (on-hand quantity detail) and classifies that supply by subinventory availability type (nettable versus non-nettable).
In Oracle EBS 12.1.1 and 12.2.2 the view is delivered in VALID status and is intended for reporting and integration consumers rather than for online transaction processing. Because it aggregates at the organization/item level and includes item descriptive attributes, buyer information, and planner codes, it is suited to inquiries that support material availability analysis, shortage investigation, and planning review. It exposes no maintenance interface; all data originates in transactional WIP and inventory tables, making it read-only by nature.
Underlying Base Objects
The view is defined over a documented set of base objects spanning manufacturing lookups, inventory, WIP, and human resources:
WIP_REQUIREMENT_OPERATIONS— the primary demand source, supplying required quantity, quantity issued, and open requirement counts per job or schedule operation.MTL_ONHAND_QUANTITIES_DETAIL— the supply source, providing primary transaction quantities used to compute nettable, non-nettable, and total on-hand.MTL_SECONDARY_INVENTORIES— suppliesAVAILABILITY_TYPE, which drives the nettable versus non-nettable split.MTL_SYSTEM_ITEMS_B— the item master, providing organization, inventory item, description, and planner code.MTL_ITEM_FLEXFIELDS— supplies the concatenated item number.MTL_EMPLOYEES_VIEW— provides buyer employee number and full name, resolved indirectly through HR packages (HR_GENERAL,HR_PERSON_NAME,HR_SECURITY), which also enforce HR security on employee data access.MFG_LOOKUPS— supplies the meaning of the planning make/buy code.WIP_DISCRETE_JOBSandWIP_REPETITIVE_SCHEDULES— referenced context objects linking requirements to discrete jobs and repetitive schedules.
In the delivered 12.2.2 installation, several of these are referenced through synonyms, but they resolve to the standard MTL and WIP base tables.
Key Columns
The view exposes the following principal columns:
ORGANIZATION_ID,INVENTORY_ITEM_ID— the reporting grain (organization and item).ITEM_NUMBER,DESCRIPTION,PLANNER_CODE— item identification and planning attributes.BUYER_EMPLOYEE_NUM,BUYER_NAME— buyer identification from the employee view.PLANNING_MAKE_BUY_CODE— decoded meaning of the make/buy planning attribute.NO_OF_OPEN_REQUIREMENTS— count of distinct open WIP requirement operations.REQUIRED_QUANTITY,QUANTITY_ISSUED,QUANTITY_OPEN— demand side, normalized by the count of on-hand detail rows to avoid double counting.NETTABLE_QUANTITY_ON_HAND— on-hand in subinventories with availability type 1.NONNETTABLE_QUANTITY_ON_HAND— on-hand in subinventories with availability type 2.TOTAL_QUANTITY_ON_HAND— sum of all primary transaction quantities.NET_AVAILABLE_QUANTITY— nettable on-hand adjusted by the difference between quantity issued and quantity required.
Common Use Cases and Queries
Typical uses include material shortage review, subinventory availability analysis, and feeding custom reports or interfaces that require a job-versus-stock position.
- Total net availability per item in an organization.
- Items where open requirements exceed nettable on-hand.
- Buyer- or planner-based material position reporting.
Sample query:
SELECT organization_id, inventory_item_id, item_number, planner_code,
REQUIRED_QUANTITY, QUANTITY_ISSUED, QUANTITY_OPEN,
NETTABLE_QUANTITY_ON_HAND, NET_AVAILABLE_QUANTITY
FROM apps.wip_net_available_view
WHERE organization_id = :org_id
AND NET_AVAILABLE_QUANTITY < REQUIRED_QUANTITY
ORDER BY planner_code, item_number;
Because the view performs aggregation with outer-join-like normalization (DECODE(COUNT(...),0,1,...)), consumers should apply filters on ORGANIZATION_ID to keep result sets manageable.
-
View: WIP_NET_AVAILABLE_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_NET_AVAILABLE_VIEW, object_name:WIP_NET_AVAILABLE_VIEW, status:VALID, product: WIP - Work in Process , description: Job/schedule material requirement subinventory quantities , implementation_dba_data: APPS.WIP_NET_AVAILABLE_VIEW ,
-
View: WIP_NET_AVAILABLE_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_NET_AVAILABLE_VIEW, object_name:WIP_NET_AVAILABLE_VIEW, status:VALID, product: WIP - Work in Process , description: Job/schedule material requirement subinventory quantities , implementation_dba_data: APPS.WIP_NET_AVAILABLE_VIEW ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.WIP_NET_AVAILABLE_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_NET_AVAILABLE_VIEW, object_name:WIP_NET_AVAILABLE_VIEW, status:VALID,
-
VIEW: APPS.WIP_NET_AVAILABLE_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_NET_AVAILABLE_VIEW, object_name:WIP_NET_AVAILABLE_VIEW, status:VALID,
-
SYNONYM: APPS.WIP_REPETITIVE_SCHEDULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_REPETITIVE_SCHEDULES, status:VALID,
-
SYNONYM: APPS.WIP_REPETITIVE_SCHEDULES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_REPETITIVE_SCHEDULES, status:VALID,
-
SYNONYM: APPS.MTL_ONHAND_QUANTITIES_DETAIL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ONHAND_QUANTITIES_DETAIL, status:VALID,
-
VIEW: APPS.MTL_EMPLOYEES_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EMPLOYEES_VIEW, object_name:MTL_EMPLOYEES_VIEW, status:VALID,
-
VIEW: APPS.MTL_EMPLOYEES_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EMPLOYEES_VIEW, object_name:MTL_EMPLOYEES_VIEW, status:VALID,
-
SYNONYM: APPS.MTL_ONHAND_QUANTITIES_DETAIL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ONHAND_QUANTITIES_DETAIL, status:VALID,
-
SYNONYM: APPS.WIP_REQUIREMENT_OPERATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID,
-
SYNONYM: APPS.WIP_REQUIREMENT_OPERATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_REQUIREMENT_OPERATIONS, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
SYNONYM: APPS.WIP_DISCRETE_JOBS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_DISCRETE_JOBS, status:VALID,
-
SYNONYM: APPS.MTL_SECONDARY_INVENTORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SECONDARY_INVENTORIES, status:VALID,
-
SYNONYM: APPS.WIP_DISCRETE_JOBS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_DISCRETE_JOBS, status:VALID,
-
SYNONYM: APPS.MTL_SECONDARY_INVENTORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SECONDARY_INVENTORIES, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.1.1