Search Results inventory_item_name




Overview

The APPS.WIP_BIS_UTZ_CAT_V view is a Business Intelligence System (BIS) reporting object within the Oracle E-Business Suite Work in Process (WIP) module. Its documented purpose is to present resource utilization data aggregated by product category and inventory item, enabling analysis of manufacturing resource consumption against available capacity. The view exposes pre-joined dimensional attributes—such as ledger, legal entity, operating unit, organization, department, resource, location, and period—alongside utilization metrics, making it suitable for direct consumption by BI Publisher reports, Oracle Discoverer workbooks, and custom OBIEE or analytical dashboards. Because it is owned by the APPS schema and marked VALID, it is intended as a supported reporting interface rather than a transactional table.

In the context of a search for inventory_item_name, this view is particularly relevant: it is one of the few standardized WIP BIS objects that carries both INVENTORY_ITEM_ID and INVENTORY_ITEM_NAME at the resource-utilization grain, allowing item-level attribution of labor or machine hours without additional joins to MTL_SYSTEM_ITEMS.

Underlying Base Objects

The documented ETRM metadata (12.2.2) identifies a single referenced base object: WIP_BIS_PROD_INDICATORS, accessed through a synonym. The view definition selects from that object with the filter predicate EXISTING_FLAG = 1, restricting output to currently valid production indicator rows. No additional joins are declared in the view text documented for 12.1.1 / 12.2.2; the denormalized dimensional columns are materialized within the production indicators object itself. This design means the view acts as a filtered, presentation-ready projection rather than a complex join construct, which keeps query performance predictable and makes the view safe for high-concurrency reporting.

Key Columns

Common Use Cases and Queries

Typical usage centers on resource efficiency and capacity analysis. A common pattern filters by organization and period, then aggregates hours by resource or item:

  • Item-level utilization: SELECT INVENTORY_ITEM_NAME, RESOURCE_CODE, SUM(ACTUAL_HOURS) ACT_HRS, SUM(AVAILABLE_HOURS) AVL_HRS FROM APPS.WIP_BIS_UTZ_CAT_V WHERE ORGANIZATION_ID = :org AND PERIOD_YEAR = :yr GROUP BY INVENTORY_ITEM_NAME, RESOURCE_CODE;
  • Category roll-up: grouping by CATEGORY_NAME to compare performance across product families.
  • Geographic analysis: grouping by COUNTRY_CODE or REGION_CODE for multi-site capacity reporting.
  • Utilization ratio: computing ACTUAL_HOURS / AVAILABLE_HOURS per resource to identify bottlenecks.

Because the view is a filtered projection over WIP_BIS_PROD_INDICATORS, queries should always constrain on organization and period dimensions to limit scan volume. This view does not expose transactional WIP move or completion detail; for those, the underlying WIP transaction tables must be queried separately.