Search Results test_class
Overview
The GMD_QC_E_TEST_INSTANCE_V view is a public Oracle E-Business Suite database object owned by the APPS schema and registered as VALID in the ETRM 12.2.2 inventory. It belongs to the GMD product family — Process Manufacturing Product Development — which encompasses Oracle Quality, quality test definitions, results capture, and specification management for process manufacturing organizations.
The view presents a denormalized, reporting-friendly projection of quality test results. Rather than requiring report authors and integrators to join the raw results table to the test definition table, the lookup-driven test type view, and the test methods table independently, GMD_QC_E_TEST_INSTANCE_V exposes the resolved result row alongside the human-readable test code, description, class, lookup meaning, and method code. It is intended for read-only consumption — typically by Oracle Discoverer worksheets, Oracle Reports, BI Publisher data templates, OBIEE repositories, or custom PL/SQL and interface programs that need to surface quality test instance data without re-implementing the canonical join logic.
The name itself reflects its purpose: it identifies a specific test instance tied to an UPDATE_INSTANCE_ID, which is the key by which results captured against a particular quality instance (such as a batch, lot, or sample) are correlated.
Underlying Base Objects
The view is defined over four documented base objects:
- GMD_RESULTS (SYNONYM) — the driving results table. Each row represents a captured test result, keyed by
TEST_IDandTEST_METHOD_ID, and associated with an update instance. - GMD_QC_TESTS (SYNONYM) — the quality test definition table, supplying
TEST_CODE,TEST_DESC,TEST_CLASS, andTEST_TYPE. - FND_LOOKUP_VALUES_VL (VIEW) — the Foundation lookup view, filtered to
LOOKUP_TYPE = 'GMD_QC_TEST_TYPE', used to translate the internal test type code into its displayedMEANING. - GMD_TEST_METHODS_B (SYNONYM) — the test methods base table, supplying the
TEST_METHOD_CODE.
Joins are performed on RSLT.TEST_ID = TEST.TEST_ID and RSLT.TEST_METHOD_ID = TESTMETHODS.TEST_METHOD_ID. The view text uses SELECT DISTINCT, indicating that the results table may contain multiple rows per test/method combination and that deduplication is intentional.
Key Columns
- TEST_ID — Primary identifier of the quality test definition underlying the result row; also the view's ORDER BY key.
- UPDATE_INSTANCE_ID — Identifier of the quality instance (for example, a specific lot, batch, or sample) against which the result was captured.
- TEST_CODE — Short alphanumeric code of the quality test, commonly the field users search on.
- TEST_DESC — Descriptive name of the test.
- TEST_CLASS — Classification grouping applied to the test.
- TEST_TYPE — Resolved lookup meaning for the test type (LOOKUP_TYPE
GMD_QC_TEST_TYPE), presented in the user's display language via the VL lookup view. - EXPRESSION — The calculation or expression associated with the test, where defined.
- TEST_METHOD_CODE — Code of the analytical or inspection method used to obtain the result.
Common Use Cases and Queries
Typical scenarios include quality result reporting by instance, test definition listings, and integration extracts that need resolved test type meanings rather than internal lookup codes.
Search for a specific test by code:
SELECT test_id, update_instance_id, test_code, test_desc, test_type, test_method_code
FROM apps.gmd_qc_e_test_instance_v
WHERE test_code = 'PH';
List all tests captured for a given instance:
SELECT test_code, test_desc, test_class, test_type, expression, test_method_code
FROM apps.gmd_qc_e_test_instance_v
WHERE update_instance_id = :instance_id
ORDER BY test_code;
Because the view returns only test definition and method attributes — not the numeric result value itself — reports requiring the actual measured result must join back to GMD_RESULTS on TEST_ID and UPDATE_INSTANCE_ID. All queries should be issued with the APPS schema or through a synonym, and the view should be treated as read-only in all integrations.
-
View: GMD_QC_E_TEST_INSTANCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_TEST_INSTANCE_V, object_name:GMD_QC_E_TEST_INSTANCE_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_TEST_INSTANCE_V ,
-
View: GMD_QC_E_TEST_INSTANCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_TEST_INSTANCE_V, object_name:GMD_QC_E_TEST_INSTANCE_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_TEST_INSTANCE_V ,
-
Table: GMD_TEST_CLASSES_B
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_CLASSES_B, object_name:GMD_TEST_CLASSES_B, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Test Classes , implementation_dba_data: GMD.GMD_TEST_CLASSES_B ,
-
Table: GMD_TEST_CLASSES_B
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_CLASSES_B, object_name:GMD_TEST_CLASSES_B, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Test Classes , implementation_dba_data: GMD.GMD_TEST_CLASSES_B ,
-
Table: GMD_TEST_CLASSES_TL
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_CLASSES_TL, object_name:GMD_TEST_CLASSES_TL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality test classes translation , implementation_dba_data: GMD.GMD_TEST_CLASSES_TL ,
-
Table: GMD_TEST_CLASSES_TL
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_CLASSES_TL, object_name:GMD_TEST_CLASSES_TL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality test classes translation , implementation_dba_data: GMD.GMD_TEST_CLASSES_TL ,
-
View: GMD_TEST_CLASSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_TEST_CLASSES_VL, object_name:GMD_TEST_CLASSES_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Test Classes , implementation_dba_data: APPS.GMD_TEST_CLASSES_VL ,
-
View: GMD_TEST_CLASSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_TEST_CLASSES_VL, object_name:GMD_TEST_CLASSES_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Test Classes , implementation_dba_data: APPS.GMD_TEST_CLASSES_VL ,
-
View: GMD_QC_TESTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_TESTS_VL, object_name:GMD_QC_TESTS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Manangement Tests View , implementation_dba_data: APPS.GMD_QC_TESTS_VL ,
-
View: GMD_QC_TESTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_TESTS_VL, object_name:GMD_QC_TESTS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Manangement Tests View , implementation_dba_data: APPS.GMD_QC_TESTS_VL ,
-
View: GMD_QC_E_SPEC_TESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_SPEC_TESTS_V, object_name:GMD_QC_E_SPEC_TESTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_SPEC_TESTS_V ,
-
View: GMD_QC_E_COMPOSITE_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_COMPOSITE_RESULTS_V, object_name:GMD_QC_E_COMPOSITE_RESULTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_COMPOSITE_RESULTS_V ,
-
View: GMD_QC_E_COMPOSITE_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_COMPOSITE_RESULTS_V, object_name:GMD_QC_E_COMPOSITE_RESULTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_COMPOSITE_RESULTS_V ,
-
View: GMD_QC_E_SPEC_TESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_SPEC_TESTS_V, object_name:GMD_QC_E_SPEC_TESTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_SPEC_TESTS_V ,
-
View: GMD_QC_E_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_RESULTS_V, object_name:GMD_QC_E_RESULTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_RESULTS_V ,
-
View: GMD_QC_E_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_RESULTS_V, object_name:GMD_QC_E_RESULTS_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_RESULTS_V ,