Search Results gmd_test_methods_b
Overview
GMD_TEST_METHODS_B is the base table in the Oracle E-Business Suite Process Manufacturing Product Development module (GMD) that stores OPM Quality Test Method definitions. A test method describes a specific quality procedure — its code, the quantity of sample it consumes, the unit of measure, its expected duration, and any associated resource, kit, or text requirements. Test methods are the building blocks of quality specifications: specifications select tests, and tests reference the test method that governs how the measurement is performed. Within Oracle EBS 12.1.1 and 12.2.2, this table is therefore a foundational quality configuration object for process manufacturing organizations, and it is explicitly edition-enabled in 12.2.2, as evidenced by the ZD_EDITION_NAME column participating in both unique indexes.
From a heuristic Data Vault perspective, the ETRM relationship mining classifies this object as standalone — it owns its own business key and is not treated as an association table. A reasonable modeling suggestion is to treat GMD_TEST_METHODS_B as a hub-like reference for test methods, with the descriptive columns (quantities, durations, UOM, attributes) forming satellite-type content. This is a suggestion only, derived from the FK topology, not an enforced Oracle design.
Key Information Stored
The table exposes 56 documented columns. The most significant are:
- TEST_METHOD_ID — the surrogate primary key, defined by GMD_TEST_METHODS_B_PK together with ZD_EDITION_NAME.
- TEST_METHOD_CODE — the user-facing business key, enforced by the unique index GMD_TEST_METHODS_B_U1 (TEST_METHOD_CODE, ZD_EDITION_NAME). This is the value users search on and the value referenced by child tables.
- TEST_QTY and TEST_QTY_UOM/TEST_UOM — the sample quantity consumed and its unit of measure.
- TEST_DURATION, DAYS, HOURS, MINUTES, SECONDS — the expected elapsed time for the test, stored both as a consolidated duration and in component units.
- TEST_REPLICATE and DISPLAY_PRECISION — the number of replicates to run and the numeric precision for displaying results.
- RESOURCES — resource or equipment requirements for performing the method.
- TEST_KIT_ITEM_ID, TEST_KIT_INV_ITEM_ID, and TEST_KIT_ORGANIZATION_ID — the inventory item and organization identifying a test kit associated with the method.
- TEXT_CODE — identifies attached descriptive text (procedure narrative).
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE30 — the standard EBS extensibility flexfield block.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — the mandatory Who-column audit set.
- DELETE_MARK, MIGRATED_IND, ZD_EDITION_NAME — logical deletion, migration, and Editioning flags.
Common Use Cases and Queries
The primary scenario is retrieving and validating test method definitions for specification and quality result processing. A typical lookup by business key is:
SELECT test_method_id, test_method_code, test_qty, test_uom, display_precision FROM gmd_test_methods_b WHERE test_method_code = :p_code AND NVL(delete_mark, 0) = 0;
Reporting scenarios include listing methods with their durations or resource requirements for laboratory workload planning, and joining results back to methods to analyze outcome trends:
SELECT r.test_method_id, m.test_method_code, COUNT(*) FROM gmd_results r, gmd_test_methods_b m WHERE r.test_method_id = m.test_method_id GROUP BY r.test_method_id, m.test_method_code;
Extensibility reporting frequently queries the ATTRIBUTE columns for customer-specific data captured during implementation.
Related Objects
Four documented foreign keys establish the dependency footprint of this table, each joining on TEST_METHOD_ID:
- GMD_QC_TESTS_B — quality test definitions (TEST_METHOD_ID → GMD_TEST_METHODS_B).
- GMD_SPEC_TESTS_B — specification test assignments (TEST_METHOD_ID → GMD_TEST_METHODS_B).
- GMD_RESULTS — captured quality results (TEST_METHOD_ID → GMD_TEST_METHODS_B).
- GMD_MASS_RESULTS_GT — global temporary table of mass result processing (TEST_METHOD_ID → GMD_TEST_METHODS_B).
Because these children retain the surrogate TEST_METHOD_ID rather than the code, the unique index GMD_TEST_METHODS_B_U1 is the mechanism that guarantees TEST_METHOD_CODE remains unambiguous per edition. Deletion should be handled through DELETE_MARK rather than physical removal, given the referential dependency from results and specification data.
-
Table: GMD_TEST_METHODS_B
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_METHODS_B, object_name:GMD_TEST_METHODS_B, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Test Methods , implementation_dba_data: GMD.GMD_TEST_METHODS_B ,
-
Table: GMD_TEST_METHODS_B
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_METHODS_B, object_name:GMD_TEST_METHODS_B, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Test Methods , implementation_dba_data: GMD.GMD_TEST_METHODS_B ,
-
VIEW: APPS.GMD_TEST_METHODS_B_DFV
12.1.1
-
TRIGGER: APPS.GMD_TEST_METHODS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:GMD_TEST_METHODS_B+, status:VALID,
-
VIEW: GMD.GMD_TEST_METHODS_B#
12.2.2
owner:GMD, object_type:VIEW, object_name:GMD_TEST_METHODS_B#, status:VALID,
-
SYNONYM: APPS.GMD_TEST_METHODS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMD_TEST_METHODS_B, status:VALID,
-
VIEW: APPS.GMD_TEST_METHODS_B_DFV
12.2.2
-
VIEW: APPS.GMD_QC_E_TEST_INSTANCE_V
12.2.2
-
TRIGGER: APPS.GMD_TEST_METHODS_B+
12.2.2
-
SYNONYM: APPS.GMD_TEST_METHODS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMD_TEST_METHODS_B, status:VALID,
-
VIEW: APPS.GMD_QC_E_TEST_INSTANCE_V
12.1.1
-
VIEW: APPS.GMD_TEST_METHODS_VL
12.1.1
-
VIEW: APPS.GMD_TEST_METHODS_VL
12.2.2
-
APPS.GMD_QC_TESTS_GRP SQL Statements
12.2.2
-
VIEW: GMD.GMD_TEST_METHODS_B#
12.2.2
-
APPS.GMD_TEST_METHODS_PVT SQL Statements
12.1.1
-
FUNCTION: APPS.GMD_TEST_METHODS_B=
12.2.2
-
PACKAGE BODY: APPS.GMD_TEST_METHODS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_TEST_METHODS_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.GMD_TEST_METHODS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:GMD_TEST_METHODS_B=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
APPS.GMD_QC_TESTS_GRP SQL Statements
12.1.1
-
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 ,
-
PACKAGE BODY: APPS.GMD_TEST_METHODS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_TEST_METHODS_PVT, status:VALID,
-
VIEW: APPS.GMD_TEST_METHODS_B_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:GMD_TEST_METHODS_B_DFV, status:VALID,
-
VIEW: APPS.GMD_TEST_METHODS_B_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:GMD_TEST_METHODS_B_DFV, status:VALID,
-
APPS.GMD_TEST_METHODS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMD_QC_TESTS_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QC_TESTS_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_QC_TESTS_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QC_TESTS_GRP, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMD_QC_MIG12
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QC_MIG12, status:VALID,
-
PACKAGE BODY: APPS.GMD_COA_DATA_OM_NEW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COA_DATA_OM_NEW, status:VALID,
-
PACKAGE BODY: APPS.GMD_QC_MIG12
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QC_MIG12, status:VALID,
-
PACKAGE BODY: APPS.GMD_RESULT_TRANSFER_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULT_TRANSFER_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_SPEC_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_SPEC_GRP, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.GMD_SPEC_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_SPEC_GRP, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.GMD_COA_DATA_OM_NEW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COA_DATA_OM_NEW, status:VALID,
-
View: GMD_TEST_METHODS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_TEST_METHODS_VL, object_name:GMD_TEST_METHODS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM QC Test Methods , implementation_dba_data: APPS.GMD_TEST_METHODS_VL ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMD_RESULT_TRANSFER_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULT_TRANSFER_GRP, status:VALID,
-
TABLE: GMD.GMD_TEST_METHODS_B
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_METHODS_B, object_name:GMD_TEST_METHODS_B, status:VALID,
-
TABLE: GMD.GMD_TEST_METHODS_B
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_METHODS_B, object_name:GMD_TEST_METHODS_B, status:VALID,
-
View: GMD_TEST_METHODS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_TEST_METHODS_VL, object_name:GMD_TEST_METHODS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM QC Test Methods , implementation_dba_data: APPS.GMD_TEST_METHODS_VL ,
-
PACKAGE BODY: APPS.GMD_RESULTS_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULTS_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_SAMPLES_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_SAMPLES_GRP, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMD_SAMPLES_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_SAMPLES_GRP, status:VALID,