Search Results scale_type_disp




Overview

APPS.PMITS_OPERATION_RESOURCES_V is a Business Intelligence System (BIS) view in the Oracle E-Business Suite Process Manufacturing (OPM/Process Manufacturing) module. It presents operation resource information — the resources assigned to routing operations, together with their usage, capacity, cost, and scaling attributes — in a denormalized, reporting-friendly format. In Oracle EBS 12.1.1 and 12.2.2 the view is owned by the APPS schema and registered under FND Design Data as PMI.PMITS_OPERATION_RESOURCES_V with a status of VALID. Because it is a BIS view, its purpose is to support operational reporting, analytics, and downstream integrations that need to consume process manufacturing resource data without navigating the underlying transactional tables directly. The view is not a transactional object; no DML should be issued against it.

Underlying Base Objects

The documented view metadata for 12.2.2 lists a single referenced base object: DUAL (SYNONYM). This indicates the view definition is constructed largely through expressions, constants, or inline constructs rather than a straightforward join across multiple documented process manufacturing tables. In practice, PMITS_OPERATION_RESOURCES_V sits in front of OPM operation-resource domain data (routing operations and their resources) and exposes it through the PMITS (Process Manufacturing Intelligence) naming convention. The RESOURCES column is the resource identifier, and OPRN_LINE_ID anchors each row to an operation line. The DUAL reference confirms the view is not defined as a simple select over a single large table; the underlying logic is encapsulated by Oracle and the columns below are the stable, documented interface.

Key Columns

Common Use Cases and Queries

Typical scenarios include routing cost analysis, capacity planning, and resource utilization reporting. The SCALE_TYPE_DISP column is commonly selected to present scale type in business terms rather than as a numeric code. A representative query:

SELECT resources,
       resource_desc,
       oprn_line_id,
       resource_usage,
       usage_um,
       scale_type_disp,
       prim_rsrc_ind_disp,
       min_capacity,
       max_capacity
FROM   apps.pmits_operation_resources_v
WHERE  delete_mark = 0
ORDER  BY resources;

A filtered variant for primary resources on a given routing operation:

SELECT oprn_line_id,
       resources,
       resource_count,
       scale_type_disp,
       cost_cmpntcls_code
FROM   apps.pmits_operation_resources_v
WHERE  prim_rsrc_ind = 1
AND    delete_mark = 0;

All queries should qualify the APPS schema, apply the DELETE_MARK = 0 predicate to exclude soft-deleted rows, and treat the view as read-only.