Search Results restrict_subinventories_code
Overview
WIP_EAM_REQUIREMENTS_ALL_V is a reporting view owned by the APPS schema in Oracle E-Business Suite (validated for 12.1.1 and 12.2.2). It resides in the WIP – Work in Process product and, in the EAM (Enterprise Asset Management) context, presents every material requirement associated with a work order. Unlike the base transactional table WIP_REQUIREMENT_OPERATIONS, this view joins item master attributes, department information, routing operation data, and lookup meanings into a single denormalized row per requirement, making it suitable for direct reporting, BI Publisher layouts, and integration extracts without the need for multiple joins.
The view is of particular interest to users searching on inventory_asset_flag, because that attribute is projected directly from MTL_SYSTEM_ITEMS_KFV. Consumers therefore see, in one row, the material requirement quantity alongside the asset/non-asset classification of the item being consumed, which drives capitalization logic and asset accounting in EAM work orders.
Underlying Base Objects
The documented base objects for the view are:
- WIP_REQUIREMENT_OPERATIONS (SYNONYM) – the primary driver, supplying requirement quantities, dates, and supply information.
- MTL_SYSTEM_ITEMS_KFV (SYNONYM) – the key-flexfield item definition, source of CONCATENATED_SEGMENTS, descriptions, UOM, and INVENTORY_ASSET_FLAG.
- WIP_OPERATIONS (SYNONYM) – supplies routing operation details, joined with an outer (+) to retain requirements not tied to a routing operation.
- BOM_DEPARTMENTS (SYNONYM) – source of DEPARTMENT_CODE.
- MFG_LOOKUPS (VIEW) – resolves WIP_SUPPLY_TYPE into WIP_SUPPLY_MEANING.
- EAM_MATERIAL_ALLOCQTY_PKG (PACKAGE) – a PL/SQL package invoked inline to compute allocated and open quantities.
- EAM_DIRECT_ITEM_RECS_V (VIEW) and FND_GLOBAL (PACKAGE) – supporting objects referenced by the definition and session context.
The join enforces that the item exists in the item master and has NVL(STOCK_ENABLED_FLAG,'N') = 'Y'.
Key Columns
- INVENTORY_ITEM_ID, ORGANIZATION_ID, WIP_ENTITY_ID, OPERATION_SEQ_NUM – the requirement's identifying keys.
- CONCATENATED_SEGMENTS, ITEM_DESCRIPTION, ITEM_PRIMARY_UOM_CODE – item flexfield, description, and UOM.
- INVENTORY_ASSET_FLAG – indicates whether the item is an asset (Y/N); central to asset accounting.
- LOCATION_CONTROL_CODE, RESTRICT_LOCATORS_CODE, RESTRICT_SUBINVENTORIES_CODE – inventory controls for the item.
- REQUIRED_QUANTITY, QUANTITY_ISSUED, QUANTITY_OPEN, QUANTITY_ALLOCATED, QUANTITY_PER_ASSEMBLY – demand and fulfillment quantities; QUANTITY_OPEN nets issued and allocated amounts via EAM_MATERIAL_ALLOCQTY_PKG.
- DATE_REQUIRED, MPS_REQUIRED_QUANTITY, MPS_DATE_REQUIRED – scheduling columns.
- WIP_SUPPLY_TYPE, WIP_SUPPLY_MEANING, SUPPLY_SUBINVENTORY, SUPPLY_LOCATOR_ID – supply source information.
- ROUTING_EXISTS_FLAG, FIRST_UNIT_START_DATE, LAST_UNIT_COMPLETION_DATE – routing context.
Common Use Cases and Queries
Typical uses include open-material reports by work order, asset versus non-asset consumption analysis, and feeds into costing or procurement.
- List all asset-flagged requirements for an organization.
- Compute outstanding demand per work order.
- Join to WIP entities for scheduling reports.
Sample SQL:
SELECT wip_entity_id, operation_seq_num, concatenated_segments, inventory_asset_flag, required_quantity, quantity_issued, quantity_open FROM apps.wip_eam_requirements_all_v WHERE organization_id = :org_id AND inventory_asset_flag = 'Y' ORDER BY wip_entity_id, operation_seq_num;SELECT wip_entity_id, SUM(quantity_open) open_qty FROM apps.wip_eam_requirements_all_v WHERE organization_id = :org_id GROUP BY wip_entity_id;
-
View: WIP_EAM_REQUIREMENTS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_REQUIREMENTS_ALL_V, object_name:WIP_EAM_REQUIREMENTS_ALL_V, status:VALID, product: WIP - Work in Process , description: This view provides all materials for a work order , implementation_dba_data: APPS.WIP_EAM_REQUIREMENTS_ALL_V ,
-
View: WIP_EAM_REQUIREMENTS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_REQUIREMENTS_ALL_V, object_name:WIP_EAM_REQUIREMENTS_ALL_V, status:VALID, product: WIP - Work in Process , description: This view provides all materials for a work order , implementation_dba_data: APPS.WIP_EAM_REQUIREMENTS_ALL_V ,
-
View: WIP_REQUIREMENT_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REQUIREMENT_OPERATIONS_V, object_name:WIP_REQUIREMENT_OPERATIONS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_REQUIREMENT_OPERATIONS , implementation_dba_data: APPS.WIP_REQUIREMENT_OPERATIONS_V ,
-
View: WIP_REQUIREMENT_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REQUIREMENT_OPERATIONS_V, object_name:WIP_REQUIREMENT_OPERATIONS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_REQUIREMENT_OPERATIONS , implementation_dba_data: APPS.WIP_REQUIREMENT_OPERATIONS_V ,