Search Results nonnettable_quantity_on_hand
Overview
APPS.WIP_NET_AVAILABLE_VIEW is an internal Oracle Applications view owned by the APPS schema (FND Design Data: WIP.WIP_NET_AVAILABLE_VIEW, object type VIEW, status VALID). It presents a consolidated material-availability picture for components used on discrete jobs and repetitive schedules, combining item master attributes, buyer and planner information, open work-in-process (WIP) demand, and on-hand balances. It is used primarily by Oracle Work in Process and related planning and shop-floor programs to determine whether sufficient nettable material exists to satisfy open component requirements.
The view carries an explicit Oracle Internal Use Only warning: Oracle Corporation does not support access to applications data through this object except from standard Oracle Applications programs. The view is documented with the object type "Internal" and referenced by design data in the WIP product family. In EBS 12.1.1 and 12.2.2 the definition is stable and is not intended as a public integration interface; customers who query it directly must accept that its columns and logic may change without notice. The column NONNETTABLE_QUANTITY_ON_HAND — the term the user searched for — reports component quantity residing in subinventories flagged as nonnettable, i.e. stock that is physically present but excluded from netting against requirements by Oracle planning and WIP logic.
Underlying Base Objects
The view is defined over a mix of base tables (referenced through APPS synonyms), views, and HR packages. The documented referenced objects are: HR_GENERAL (PACKAGE), HR_PERSON_NAME (PACKAGE), HR_SECURITY (PACKAGE), MFG_LOOKUPS (VIEW), MTL_EMPLOYEES_VIEW (VIEW), MTL_ITEM_FLEXFIELDS (VIEW), MTL_ONHAND_QUANTITIES_DETAIL (SYNONYM), MTL_SECONDARY_INVENTORIES (SYNONYM), MTL_SYSTEM_ITEMS_B (SYNONYM), WIP_DISCRETE_JOBS (SYNONYM), WIP_REPETITIVE_SCHEDULES (SYNONYM), and WIP_REQUIREMENT_OPERATIONS (SYNONYM).
The demand side derives from WIP_DISCRETE_JOBS, WIP_REPETITIVE_SCHEDULES, and WIP_REQUIREMENT_OPERATIONS, which together supply the count of open requirements, required quantity, issued quantity, and open quantity per component. The supply side derives from MTL_ONHAND_QUANTITIES_DETAIL joined with MTL_SECONDARY_INVENTORIES, so that on-hand quantities can be split into nettable and nonnettable portions based on the subinventory's netting attribute. Item and organization context come from MTL_SYSTEM_ITEMS_B and MTL_ITEM_FLEXFIELDS; buyer and planner display values are resolved through MTL_EMPLOYEES_VIEW and the HR packages (HR_GENERAL, HR_PERSON_NAME, HR_SECURITY), which also enforce HR security on employee-related columns. MFG_LOOKUPS supplies decoded lookup meanings.
Key Columns
- ORGANIZATION_ID – organization (inventory) identifier for the component row.
- INVENTORY_ITEM_ID – inventory item identifier of the component.
- ITEM_NUMBER – concatenated item segments (VARCHAR2 40).
- DESCRIPTION – item description (VARCHAR2 240).
- BUYER_EMPLOYEE_NUM / BUYER_NAME – buyer's employee number and full name.
- PLANNER_CODE – planner code assigned to the item.
- PLANNING_MAKE_BUY_CODE – indicates whether the item is planned as manufactured or purchased.
- NO_OF_OPEN_REQUIREMENTS – count of active jobs/schedules requiring the component.
- REQUIRED_QUANTITY – total required quantity across those jobs/schedules.
- QUANTITY_ISSUED – total quantity already issued to those jobs/schedules.
- QUANTITY_OPEN – total open (unissued) requirement quantity.
- NETTABLE_QUANTITY_ON_HAND – on-hand quantity in nettable subinventories.
- NONNETTABLE_QUANTITY_ON_HAND – on-hand quantity in nonnettable subinventories.
- TOTAL_QUANTITY_ON_HAND – total on-hand quantity for the component.
- NET_AVAILABLE_QUANTITY – nettable quantity on hand less quantity open.
Common Use Cases and Queries
Typical usage is diagnostic: identifying components whose nettable supply cannot cover open WIP demand, or quantifying how much of a component's stock sits in nonnettable subinventories and is therefore unavailable for netting. The latter directly answers the "nonnettable_quantity_on_hand" search, since that column isolates stock in subinventories excluded from netting.
Sample query — components with shortfalls, showing where stock is held:
SELECT organization_id, inventory_item_id, item_number, planner_code,nettable_quantity_on_hand, nonnettable_quantity_on_hand,total_quantity_on_hand, quantity_open, net_available_quantityFROM apps.wip_net_available_viewWHERE organization_id = :org_idAND net_available_quantity < 0ORDER BY net_available_quantity;
Sample query — items with material trapped in nonnettable subinventories:
SELECT item_number, nonnettable_quantity_on_hand, nettable_quantity_on_handFROM apps.wip_net_available_viewWHERE organization_id = :org_idAND nonnettable_quantity_on_hand > 0ORDER BY nonnettable_quantity_on_hand DESC;
Because the object is Oracle Internal Use Only and its definition may change between point releases, such queries should be treated as diagnostic rather than as a supported integration interface; where a supported substitute exists, standard WIP and Inventory inquiry windows or documented public APIs should be preferred.
-
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: WIP_CUR_NET_AVAILABLE_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_NET_AVAILABLE_VIEW, object_name:WIP_CUR_NET_AVAILABLE_VIEW, status:VALID, product: WIP - Work in Process , description: Current job/schedule material requirement subinventory quantities , implementation_dba_data: APPS.WIP_CUR_NET_AVAILABLE_VIEW ,
-
VIEW: APPS.WIP_SUB_LOC_NET_AVAIL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_SUB_LOC_NET_AVAIL_VIEW, status:VALID,
-
VIEW: APPS.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, status:VALID,
-
View: WIP_SUB_LOC_NET_AVAIL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_SUB_LOC_NET_AVAIL_VIEW, status:VALID, product: WIP - Work in Process , description: Job/schedule material requirement supply subinventory/locator quantities , implementation_dba_data: APPS.WIP_SUB_LOC_NET_AVAIL_VIEW ,
-
VIEW: APPS.WIP_CUR_NET_AVAILABLE_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_NET_AVAILABLE_VIEW, object_name:WIP_CUR_NET_AVAILABLE_VIEW, status:VALID,
-
View: WIP_SUB_LOC_NET_AVAIL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_SUB_LOC_NET_AVAIL_VIEW, status:VALID, product: WIP - Work in Process , description: Job/schedule material requirement supply subinventory/locator quantities , implementation_dba_data: APPS.WIP_SUB_LOC_NET_AVAIL_VIEW ,
-
VIEW: APPS.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, status:VALID,
-
View: WIP_CUR_NET_AVAILABLE_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_NET_AVAILABLE_VIEW, object_name:WIP_CUR_NET_AVAILABLE_VIEW, status:VALID, product: WIP - Work in Process , description: Current job/schedule material requirement subinventory quantities , implementation_dba_data: APPS.WIP_CUR_NET_AVAILABLE_VIEW ,
-
VIEW: APPS.WIP_CUR_NET_AVAILABLE_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_NET_AVAILABLE_VIEW, object_name:WIP_CUR_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,
-
VIEW: APPS.WIP_NET_AVAILABLE_VIEW
12.2.2
-
VIEW: APPS.WIP_SUB_LOC_NET_AVAIL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_SUB_LOC_NET_AVAIL_VIEW, status:VALID,
-
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 ,
-
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_CUR_SUB_LOC_NET_AVAIL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, status:VALID, product: WIP - Work in Process , description: Current job/schedule material requirement supply subinventory/locator quantities , implementation_dba_data: APPS.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW ,
-
View: WIP_CUR_SUB_LOC_NET_AVAIL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, object_name:WIP_CUR_SUB_LOC_NET_AVAIL_VIEW, status:VALID, product: WIP - Work in Process , description: Current job/schedule material requirement supply subinventory/locator quantities , implementation_dba_data: APPS.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW ,
-
VIEW: APPS.WIP_NET_AVAILABLE_VIEW
12.1.1
-
VIEW: APPS.WIP_SUB_LOC_NET_AVAIL_VIEW
12.1.1
-
VIEW: APPS.WIP_CUR_NET_AVAILABLE_VIEW
12.1.1
-
VIEW: APPS.WIP_SUB_LOC_NET_AVAIL_VIEW
12.2.2
-
VIEW: APPS.WIP_CUR_NET_AVAILABLE_VIEW
12.2.2
-
VIEW: APPS.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW
12.1.1
-
VIEW: APPS.WIP_CUR_SUB_LOC_NET_AVAIL_VIEW
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2