Search Results gem_lookups
Overview
GEM_LOOKUPS is a read-only database view owned by the APPS schema in Oracle E-Business Suite. It belongs to the GMA product family — Process Manufacturing Systems (OPM) — and is documented as a consolidated "View of all OPM Lookups." Its purpose is to expose reference and validation data that Oracle Process Manufacturing uses throughout its forms, concurrent programs, and integrations, without requiring callers to query the underlying Oracle Common Application Components (FND) lookup table directly.
In EBS reporting and integration scenarios, GEM_LOOKUPS functions as a filtered, language-aware projection of lookup values. Rather than retrieving every lookup defined anywhere in the applications, it restricts output to lookup types belonging to the OPM application range, making it a convenient and safe source for process manufacturing reference data. Its status is VALID in both the 12.1.1 and 12.2.2 releases, and the documented view text is consistent across those versions.
Underlying Base Objects
The view is defined over a single base object: FND_LOOKUP_VALUES, referenced through a synonym in the APPS schema. FND_LOOKUP_VALUES is the standard Oracle Applications table that stores all lookup codes, their meanings, descriptions, effective dates, and enabled status, keyed by lookup type and language.
GEM_LOOKUPS does not join or aggregate; it is a simple restricted projection. Three predicates define its scope:
- Language filtering —
LANGUAGE = USERENV('LANG')returns lookup descriptions in the session's current language, so reports automatically reflect the user's assigned language. - Application scoping —
VIEW_APPLICATION_ID BETWEEN 550 AND 559limits results to the application ID range assigned to the OPM/GMA product family. - Security group —
SECURITY_GROUP_ID = 0returns only the standard, non-seeded-alternate lookup values.
Key Columns
The view exposes seven columns, all drawn from FND_LOOKUP_VALUES:
- LOOKUP_TYPE — The lookup category (for example, a quality or inventory-related type). Used to group related codes.
- LOOKUP_CODE — The stored value referenced by OPM transactions and concurrent programs. This is the code persisted on transactional records.
- MEANING — The user-facing, translatable label corresponding to the code.
- DESCRIPTION — Optional extended text describing the lookup value.
- ENABLED_FLAG — 'Y' or 'N'; indicates whether the value is currently active for selection.
- START_DATE_ACTIVE — The date from which the lookup value becomes valid.
- END_DATE_ACTIVE — The date on which the lookup value expires; null when open-ended.
Common Use Cases and Queries
Typical uses include building reporting LOVs, cross-referencing stored codes to their meanings, validating integration payloads, and auditing which OPM lookups are currently enabled.
Listing all active OPM lookups for a specific type:
SELECT lookup_code, meaning, description FROM apps.gem_lookups WHERE lookup_type = :p_type AND enabled_flag = 'Y' AND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, TRUNC(SYSDATE)) AND NVL(end_date_active, TRUNC(SYSDATE));
Resolving a stored code to its meaning for a report join:
SELECT t.transaction_id, t.status_code, l.meaning AS status_meaning FROM opm_transactions t, apps.gem_lookups l WHERE l.lookup_type = 'OPM_STATUS' AND l.lookup_code = t.status_code;
Because the view already applies language and application filters, queries written against GEM_LOOKUPS avoid the pitfalls of unfiltered FND_LOOKUP_VALUES access and remain portable across EBS 12.1.1 and 12.2.2.
-
View: GEM_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMA.GEM_LOOKUPS, object_name:GEM_LOOKUPS, status:VALID, product: GMA - Process Manufacturing Systems , description: View of all OPM Lookups , implementation_dba_data: APPS.GEM_LOOKUPS ,
-
View: GEM_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMA.GEM_LOOKUPS, object_name:GEM_LOOKUPS, status:VALID, product: GMA - Process Manufacturing Systems , description: View of all OPM Lookups , implementation_dba_data: APPS.GEM_LOOKUPS ,
-
VIEW: APPS.PMITS_ITEM_MASTER_V
12.2.2
-
VIEW: APPS.PMITS_ITEM_MASTER_V
12.1.1
-
VIEW: APPS.GME_MATERIAL_DETAILS_V
12.2.2
-
VIEW: APPS.GME_STEP_MATERIAL_DETAILS_V
12.2.2
-
VIEW: APPS.GME_MATERIAL_DETAILS_V
12.1.1
-
VIEW: APPS.GME_STEP_MATERIAL_DETAILS_V
12.1.1
-
VIEW: APPS.GMD_QC_RESULTS_TREE_V
12.2.2
-
VIEW: APPS.GMD_QC_RESULTS_TREE_V
12.1.1
-
View: PMITS_ITEM_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_ITEM_MASTER_V, object_name:PMITS_ITEM_MASTER_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This is a view on top of OPM Item Master table. It contains all information relating to an item, such as lot/sublot control, unit of measure information, and all class and type designations. , implementation_dba_data: APPS.PMITS_ITEM_MASTER_V ,
-
VIEW: APPS.PMITS_WAREHOUSE_MASTER_V
12.1.1
-
VIEW: APPS.PMITS_WAREHOUSE_MASTER_V
12.2.2
-
View: GME_MATERIAL_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_MATERIAL_DETAILS_V, object_name:GME_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: A supplementary view based on table gme_material_details. , implementation_dba_data: APPS.GME_MATERIAL_DETAILS_V ,
-
VIEW: APPS.IC_ITEM_HIERARCHY_V
12.2.2
-
VIEW: APPS.IC_ITEM_HIERARCHY_V
12.1.1
-
View: PMITS_ITEM_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_ITEM_MASTER_V, object_name:PMITS_ITEM_MASTER_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This is a view on top of OPM Item Master table. It contains all information relating to an item, such as lot/sublot control, unit of measure information, and all class and type designations. , implementation_dba_data: APPS.PMITS_ITEM_MASTER_V ,
-
View: GME_MATERIAL_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_MATERIAL_DETAILS_V, object_name:GME_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: A supplementary view based on table gme_material_details. , implementation_dba_data: APPS.GME_MATERIAL_DETAILS_V ,
-
View: PMITS_QC_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_RESULTS_V, object_name:PMITS_QC_RESULTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Using this view users can access Quality control Results and Associated spec and test level min and max allowed values , implementation_dba_data: APPS.PMITS_QC_RESULTS_V ,
-
View: GME_STEP_MATERIAL_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_STEP_MATERIAL_DETAILS_V, object_name:GME_STEP_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: This view is used to retrieve Step Level Material Requirements for ERES event XML generation. , implementation_dba_data: APPS.GME_STEP_MATERIAL_DETAILS_V ,
-
View: PMITS_QC_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_RESULTS_V, object_name:PMITS_QC_RESULTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Using this view users can access Quality control Results and Associated spec and test level min and max allowed values , implementation_dba_data: APPS.PMITS_QC_RESULTS_V ,
-
VIEW: APPS.PMITS_QC_ALL_SPEC_VRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_ALL_SPEC_VRS_V, object_name:PMITS_QC_ALL_SPEC_VRS_V, status:VALID,
-
VIEW: APPS.PMITS_QC_SAMPLES_V
12.2.2
-
View: GME_STEP_MATERIAL_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_STEP_MATERIAL_DETAILS_V, object_name:GME_STEP_MATERIAL_DETAILS_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: This view is used to retrieve Step Level Material Requirements for ERES event XML generation. , implementation_dba_data: APPS.GME_STEP_MATERIAL_DETAILS_V ,
-
VIEW: APPS.PMITS_QC_SAMPLES_V
12.1.1
-
VIEW: APPS.PMITS_QC_ALL_SPEC_VRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_ALL_SPEC_VRS_V, object_name:PMITS_QC_ALL_SPEC_VRS_V, status:VALID,
-
View: PMITS_QC_SPEC_TESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_SPEC_TESTS_V, object_name:PMITS_QC_SPEC_TESTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Using this view user can access tests associated with a spec. it also provides reference information defined in test , implementation_dba_data: APPS.PMITS_QC_SPEC_TESTS_V ,
-
APPS.GMD_QCRCOA03_XMLP_PKG SQL Statements
12.2.2
-
APPS.GMD_QCRCOA03_XMLP_PKG SQL Statements
12.1.1
-
View: PMITS_QC_SPEC_TESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_SPEC_TESTS_V, object_name:PMITS_QC_SPEC_TESTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Using this view user can access tests associated with a spec. it also provides reference information defined in test , implementation_dba_data: APPS.PMITS_QC_SPEC_TESTS_V ,
-
View: PMITS_FORMULA_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_FORMULA_MASTER_V, object_name:PMITS_FORMULA_MASTER_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: GMD Formula Master View , implementation_dba_data: APPS.PMITS_FORMULA_MASTER_V ,
-
View: PMITS_QC_ALL_SPEC_VRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_ALL_SPEC_VRS_V, object_name:PMITS_QC_ALL_SPEC_VRS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This view gives Information about Spec Validity Rules defined in OPM QC Module , implementation_dba_data: APPS.PMITS_QC_ALL_SPEC_VRS_V ,
-
View: PMITS_QC_ALL_SPEC_VRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_ALL_SPEC_VRS_V, object_name:PMITS_QC_ALL_SPEC_VRS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This view gives Information about Spec Validity Rules defined in OPM QC Module , implementation_dba_data: APPS.PMITS_QC_ALL_SPEC_VRS_V ,
-
APPS.GMD_QCR03USR_XMLP_PKG SQL Statements
12.2.2
-
View: PMITS_FORMULA_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_FORMULA_MASTER_V, object_name:PMITS_FORMULA_MASTER_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: GMD Formula Master View , implementation_dba_data: APPS.PMITS_FORMULA_MASTER_V ,
-
APPS.GMD_QCR03USR_XMLP_PKG SQL Statements
12.1.1
-
APPS.GML_ORUARPJ_XMLP_PKG SQL Statements
12.1.1
-
APPS.GML_ORUARPJ_XMLP_PKG SQL Statements
12.2.2
-
APPS.GMD_QCR02USR_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.PMITS_ROUTING_DETAIL_V
12.1.1
-
VIEW: APPS.PMITS_ROUTING_DETAIL_V
12.2.2
-
View: IC_ITEM_HIERARCHY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ITEM_HIERARCHY_V, object_name:IC_ITEM_HIERARCHY_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: Used by Item Activation Workflow , implementation_dba_data: APPS.IC_ITEM_HIERARCHY_V ,
-
APPS.GMD_QCR02USR_XMLP_PKG SQL Statements
12.2.2
-
View: IC_ITEM_HIERARCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ITEM_HIERARCHY_V, object_name:IC_ITEM_HIERARCHY_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: Used by Item Activation Workflow , implementation_dba_data: APPS.IC_ITEM_HIERARCHY_V ,
-
APPS.GML_GMLUNALC_XMLP_PKG SQL Statements
12.1.1
-
View: PMITS_WAREHOUSE_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_WAREHOUSE_MASTER_V, object_name:PMITS_WAREHOUSE_MASTER_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: PMI Warehouse Master view , implementation_dba_data: APPS.PMITS_WAREHOUSE_MASTER_V ,
-
VIEW: APPS.PMIFV_BATCH_STATUS_V
12.2.2
-
View: PMITS_QC_SAMPLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_SAMPLES_V, object_name:PMITS_QC_SAMPLES_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This view Provide Sample information , implementation_dba_data: APPS.PMITS_QC_SAMPLES_V ,
-
View: PMITS_WAREHOUSE_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_WAREHOUSE_MASTER_V, object_name:PMITS_WAREHOUSE_MASTER_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: PMI Warehouse Master view , implementation_dba_data: APPS.PMITS_WAREHOUSE_MASTER_V ,
-
View: PMITS_QC_SAMPLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_QC_SAMPLES_V, object_name:PMITS_QC_SAMPLES_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This view Provide Sample information , implementation_dba_data: APPS.PMITS_QC_SAMPLES_V ,