Search Results operation_no
Overview
APPS.GME_BATCH_STEP_ACTIVITIES_V is a reporting and inquiry view within the Oracle E-Business Suite Process Manufacturing (OPM/GME) schema. It exposes batch step activity records—the individual activities executed as part of a batch step—joined with their parent batch step attributes and the descriptive text of the associated activity. The view presents both the raw date columns and timezone-converted display variants, which allows Forms, OAF pages, and concurrent programs to render dates consistently against the server timezone.
The view belongs to the family of GME_BATCH_STEP_* objects and is frequently used in batch execution, work-in-process (WIP), and shop-floor reporting where the sequence of activities performed at each operation must be reconstructed. Because it is a view, it imposes no additional storage and inherits the transactional behavior of the underlying base table. The operation_vers column, surfaced from GME_BATCH_STEPS_V, makes this view particularly relevant when activity records must be correlated to a specific routing operation and version combination.
Underlying Base Objects
The view is defined over three source objects joined on common keys, plus supporting packages:
- GME_BATCH_STEP_ACTIVITIES (SYNONYM) — the driving base table holding one row per activity instance within a batch step. Supplies BATCH_ID, ACTIVITY, BATCHSTEP_ID, OPRN_LINE_ID, the plan and actual start/complete dates, activity factors, and various indicator flags.
- GME_BATCH_STEPS_V (VIEW) — supplies parent step context: BATCHSTEP_NO, OPERATION_NO, and the
operation_versvalue. - GMD_ACTIVITIES_VL (VIEW) — the activity validation view, joined on ACTIVITY to provide ACTIVITY_DESC for display.
- FND_DATE (PACKAGE) — used via DATE_TO_DISPLAYDT to derive timezone-adjusted display dates.
- FND_TIMEZONES (PACKAGE) — returns the server timezone code passed to FND_DATE.
- FND_MESSAGE (PACKAGE) — referenced package supporting message translation semantics.
The join conditions are: GBSA.BATCHSTEP_ID = GBS.BATCHSTEP_ID and FAM.ACTIVITY = GBSA.ACTIVITY.
Key Columns
- BATCH_ID — identifier of the parent batch.
- ACTIVITY — the activity code executed; with ACTIVITY_DESC joined from GMD_ACTIVITIES_VL for a readable description.
- BATCHSTEP_ID / BATCHSTEP_ACTIVITY_ID — parent step identifier and unique activity-instance identifier.
- OPRN_LINE_ID — foreign key to the operation line on the routing.
- OFFSET_INTERVAL — interval offset used in scheduling logic.
- PLAN_START_DATE, ACTUAL_START_DATE, PLAN_CMPLT_DATE, ACTUAL_CMPLT_DATE — scheduled and actual activity timestamps; duplicated as timezone display columns via FND_DATE.DATE_TO_DISPLAYDT.
- PLAN_ACTIVITY_FACTOR / ACTUAL_ACTIVITY_FACTOR — scaling factors applied to activity quantities.
- SEQUENCE_DEPENDENT_IND, MAX_BREAK, BREAK_IND, MATERIAL_IND — processing indicators governing sequencing, breaks, and material handling.
- DELETE_MARK, TEXT_CODE — soft-delete flag and free-text reference.
- BATCHSTEP_NO — step sequence number within the batch.
- OPERATION_NO — operation number on the routing.
- OPERATION_VERS — operation version, joined from GME_BATCH_STEPS_V, qualifying the routing operation definition.
Common Use Cases and Queries
Typical scenarios include shop-floor dashboards showing activities per operation version, variance analysis between planned and actual activity dates, and integration extracts correlating batch activities to operation lines.
- List activities for a batch, including operation version:
SELECT batch_id, batchstep_no, operation_no, operation_vers, activity, activity_desc, actual_start_date, actual_cmplt_date FROM apps.gme_batch_step_activities_v WHERE batch_id = :p_batch_id ORDER BY batchstep_no, activity; - Find activities for a specific operation and version:
SELECT batch_id, batchstep_activity_id, activity, plan_activity_factor FROM apps.gme_batch_step_activities_v WHERE operation_no = :p_opno AND operation_vers = :p_vers;
- Compare planned versus actual completion:
SELECT batch_id, activity, plan_cmplt_date, actual_cmplt_date FROM apps.gme_batch_step_activities_v WHERE actual_cmplt_date > plan_cmplt_date;
Because DELETE_MARK is exposed, queries should typically filter NVL(delete_mark,0)=0 to exclude logically deleted activity rows.
-
VIEW: APPS.GME_BATCH_STEP_ACTIVITIES_V
12.1.1
-
View: GME_BATCH_STEPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEPS_V, object_name:GME_BATCH_STEPS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view based on table gme_batch_steps , implementation_dba_data: APPS.GME_BATCH_STEPS_V ,
-
View: GME_BATCH_STEP_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEP_ACTIVITIES_V, object_name:GME_BATCH_STEP_ACTIVITIES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view based on table gme_batch_step_activities , implementation_dba_data: APPS.GME_BATCH_STEP_ACTIVITIES_V ,
-
VIEW: APPS.GME_BATCH_STEP_ACTIVITIES_V
12.2.2
-
View: PMI_EDW_BTCH_QC_F_IV
12.1.1
product: PMI - Process Manufacturing Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: PMI_EDW_BTCH_QC_F_IV
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: GME_BATCH_STEP_ACTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEP_ACTIVITIES_V, object_name:GME_BATCH_STEP_ACTIVITIES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view based on table gme_batch_step_activities , implementation_dba_data: APPS.GME_BATCH_STEP_ACTIVITIES_V ,
-
View: GME_BATCH_STEPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEPS_V, object_name:GME_BATCH_STEPS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view based on table gme_batch_steps , implementation_dba_data: APPS.GME_BATCH_STEPS_V ,
-
VIEW: APPS.GME_BATCH_STEPS_V
12.2.2
-
VIEW: APPS.GME_BATCH_STEPS_V
12.1.1
-
VIEW: APPS.PMIFV_BTCH_QCRSLT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BTCH_QCRSLT_V, object_name:PMIFV_BTCH_QCRSLT_V, status:VALID,
-
VIEW: APPS.PMIFV_BTCH_QCRSLT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BTCH_QCRSLT_V, object_name:PMIFV_BTCH_QCRSLT_V, status:VALID,
-
View: PMI_EDW_BTCH_QC_F_FCV
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: PMI_EDW_BTCH_QC_F_FCV
12.1.1
product: PMI - Process Manufacturing Intelligence , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GME_BATCH_STEP_ACTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEP_ACTIVITIES_V, object_name:GME_BATCH_STEP_ACTIVITIES_V, status:VALID,
-
VIEW: APPS.GME_BATCH_STEPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEPS_V, object_name:GME_BATCH_STEPS_V, status:VALID,
-
VIEW: APPS.GME_BATCH_STEP_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEP_ACTIVITIES_V, object_name:GME_BATCH_STEP_ACTIVITIES_V, status:VALID,
-
VIEW: APPS.GME_BATCH_STEPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_BATCH_STEPS_V, object_name:GME_BATCH_STEPS_V, status:VALID,
-
View: PMIFV_BTCH_QCRSLT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BTCH_QCRSLT_V, object_name:PMIFV_BTCH_QCRSLT_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Batch QC Results , implementation_dba_data: APPS.PMIFV_BTCH_QCRSLT_V ,
-
View: PMIFV_BTCH_QCRSLT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_BTCH_QCRSLT_V, object_name:PMIFV_BTCH_QCRSLT_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Batch QC Results , implementation_dba_data: APPS.PMIFV_BTCH_QCRSLT_V ,
-
APPS.GMO_CBR_GRP SQL Statements
12.1.1
-
APPS.GMO_CBR_GRP SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMP_LEAD_TIME_CALCULATOR_PKG
12.2.2
-
PACKAGE BODY: APPS.GMP_LEAD_TIME_CALCULATOR_PKG
12.1.1
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_STEPS_V
12.2.2
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_HEADER
12.2.2
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_STEPS_V
12.1.1
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_HEADER_VW
12.1.1
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_HEADER_VW
12.2.2
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_HEADER
12.1.1
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_STEPS
12.2.2
-
APPS.GMO_CBR_GRP dependencies on GME_BATCH_STEPS
12.1.1
-
PACKAGE BODY: APPS.GMO_CBR_GRP
12.1.1
-
PACKAGE BODY: APPS.GMO_CBR_GRP
12.2.2
-
PACKAGE BODY: APPS.GMP_APS_DS_PULL
12.1.1
-
PACKAGE BODY: APPS.GMP_APS_DS_PULL
12.2.2
-
eTRM - GME Tables and Views
12.2.2
description: PM Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GME Tables and Views
12.1.1
description: PM Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - PMI Tables and Views
12.1.1
-
eTRM - PMI Tables and Views
12.2.2