Search Results original_rsrc_usage




Overview

GME_BATCH_STEP_RESOURCES_V is a supplementary view owned by the APPS schema in Oracle EBS 12.1.1 and 12.2.2, defined in the Process Manufacturing Process Execution (GME) module. It is built on the gme_batch_step_resources base table and exposes resource assignments at the batch step level, joined to the resource master to supply descriptive text. The view adds display-formatted date columns derived through FND_DATE and FND_TIMEZONES, making it suitable for operational reporting, batch execution inquiries, and integration extracts where resource consumption, capacity limits, and scheduling data are needed for a manufacturing batch.

Because the view is marked VALID and its referenced objects include package calls (FND_DATE, FND_TIMEZONES), consumers should treat it as a reporting and inquiry layer rather than a transactional interface. The presence of the MIN_CAPACITY and MAX_CAPACITY columns is directly relevant to users searching on "min_capacity," as these fields express the lower and upper capacity bounds defined for a resource within a batch step.

Underlying Base Objects

The view is defined over the following documented base objects:

The join condition is CRM.RESOURCES = GBSR.RESOURCES, meaning every row returns a batch step resource record enriched with its master resource description. Four derived date columns are produced by wrapping PLAN_START_DATE, ACTUAL_START_DATE, PLAN_CMPLT_DATE, and ACTUAL_CMPLT_DATE in FND_DATE.DATE_TO_DISPLAYDT using the server time zone code.

Key Columns

Common Use Cases and Queries

Typical scenarios include batch resource inquiry screens, capacity validation reports, and extract programs feeding scheduling or cost analysis. The MIN_CAPACITY column is frequently queried to identify resources whose lower capacity bound must be respected during execution.

Example: retrieve capacity-bound resources for a batch.

  • SELECT BATCH_ID, RESOURCES, RESOURCE_DESC, MIN_CAPACITY, MAX_CAPACITY, CAPACITY_UM
  • FROM APPS.GME_BATCH_STEP_RESOURCES_V
  • WHERE BATCH_ID = :p_batch_id
  • ORDER BY BATCHSTEP_ID;

Example: compare planned and actual usage with capacity limits.

  • SELECT BATCHSTEP_RESOURCE_ID, RESOURCES, PLAN_RSRC_USAGE, ACTUAL_RSRC_USAGE, MIN_CAPACITY, MAX_CAPACITY
  • FROM APPS.GME_BATCH_STEP_RESOURCES_V
  • WHERE ORGANIZATION_ID = :p_org_id
  • AND ACTUAL_RSRC_USAGE > MIN_CAPACITY;

Because the view calls FND_DATE and FND_TIMEZONES per row, queries spanning large batch ranges should be filtered on BATCH_ID or ORGANIZATION_ID to limit the display-date conversion overhead.