Search Results existing_flag
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
LEDGER_ID/LEDGER_NAME(aliased fromSET_OF_BOOKS_ID/SET_OF_BOOKS_NAME): accounting ledger context, enabling multi-ledger reporting.LEGAL_ENTITY_ID,OPERATING_UNIT_ID,ORGANIZATION_ID: organizational hierarchy for drill-down from legal entity to inventory organization.DEPARTMENT_ID/DEPARTMENT_CODE: the manufacturing department in which resources were applied.RESOURCE_ID/RESOURCE_CODE: the specific resource whose utilization is measured.LOCATION_ID,AREA_CODE,COUNTRY_CODE,REGION_CODE: geographic attributes for regional analysis.TRANSACTION_DATE: the date on which utilization occurred.CATEGORY_ID/CATEGORY_NAME: product category grouping.INVENTORY_ITEM_ID/INVENTORY_ITEM_NAME: the assembled item context; the column matched by the user's search term.ACTUAL_HOURS(fromNVL(APPLIED_HOURS_UTZ, 0)) andAVAILABLE_HOURS: the numerator and denominator for utilization percentage calculations.PERIOD_SET_NAME,PERIOD_YEAR,PERIOD_QUARTER,PERIOD_MONTH: accounting period dimensions sourced fromYEAR,QUARTER, andMONTH.
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_NAMEto compare performance across product families. - Geographic analysis: grouping by
COUNTRY_CODEorREGION_CODEfor multi-site capacity reporting. - Utilization ratio: computing
ACTUAL_HOURS / AVAILABLE_HOURSper 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.
-
View: WIP_BIS_UTZ_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_BIS_UTZ_CAT_V, object_name:WIP_BIS_UTZ_CAT_V, status:VALID, product: WIP - Work in Process , description: Resource Utilization with Product Category and Inventory Item , implementation_dba_data: APPS.WIP_BIS_UTZ_CAT_V ,
-
View: WIP_BIS_UTZ_CAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_BIS_UTZ_CAT_V, object_name:WIP_BIS_UTZ_CAT_V, status:VALID, product: WIP - Work in Process , description: Resource Utilization with Product Category and Inventory Item , implementation_dba_data: APPS.WIP_BIS_UTZ_CAT_V ,
-
View: WIP_BIS_UTZ_CATNOITEM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_BIS_UTZ_CATNOITEM_V, object_name:WIP_BIS_UTZ_CATNOITEM_V, status:VALID, product: WIP - Work in Process , description: Resource Utilization including Product Category without Inventory Item , implementation_dba_data: APPS.WIP_BIS_UTZ_CATNOITEM_V ,
-
View: WIP_BIS_UTZ_NOCAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_BIS_UTZ_NOCAT_V, object_name:WIP_BIS_UTZ_NOCAT_V, status:VALID, product: WIP - Work in Process , description: Resource Utilization including Inventory Item without Product Category , implementation_dba_data: APPS.WIP_BIS_UTZ_NOCAT_V ,
-
View: WIP_BIS_UTZ_NOCAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_BIS_UTZ_NOCAT_V, object_name:WIP_BIS_UTZ_NOCAT_V, status:VALID, product: WIP - Work in Process , description: Resource Utilization including Inventory Item without Product Category , implementation_dba_data: APPS.WIP_BIS_UTZ_NOCAT_V ,
-
View: WIP_BIS_UTZ_CATNOITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_BIS_UTZ_CATNOITEM_V, object_name:WIP_BIS_UTZ_CATNOITEM_V, status:VALID, product: WIP - Work in Process , description: Resource Utilization including Product Category without Inventory Item , implementation_dba_data: APPS.WIP_BIS_UTZ_CATNOITEM_V ,