Search Results gmd_spec_results
Overview
GMD_SPEC_RESULTS is a table in the GMD schema (Process Manufacturing Product Development) that stores OPM Quality Specification Results. It records the outcome of evaluating quality specifications against actual analytical or operational results within Oracle E-Business Suite Process Manufacturing. The table is classified as VALID in the ETRM metadata for releases 12.1.1 and 12.2.2 and is central to quality data capture, specification conformance analysis, and disposition reporting. Its documented physical schema comprises 15 columns.
The heuristic Data Vault classification mined from the foreign-key structure is standalone. This suggests that GMD_SPEC_RESULTS is modeled as its own independent entity rather than as a satellite hanging off a parent hub, despite carrying a composite primary-key structure. Modelers may therefore treat it as a fact-like table that links specification display events to individual results, with no documented outbound FK dependencies in the provided metadata.
Key Information Stored
The primary key, GMD_SPEC_RESULTS_PK, is a composite surrogate key defined over the columns EVENT_SPEC_DISP_ID and RESULT_ID. The same pair is also the sole documented unique index and therefore the only business-key candidate identified in the ETRM metadata.
- EVENT_SPEC_DISP_ID — Identifies the specification display event (the quality event/context under which the specification was surfaced); first component of the composite primary key.
- RESULT_ID — Identifies the individual specification result; second component of the composite primary key.
- VALUE_IN_REPORT_PRECISION — The evaluated value rendered at the precision defined for the specification report.
- IN_SPEC_IND — Indicator of whether the result falls within specification limits.
- EVALUATION_IND — Indicator of the evaluation state of the result.
- ACTION_CODE — Code describing the action applied to the result (for example, accept, reject, or re-test disposition).
- ADDITIONAL_TEST_IND — Indicates whether additional testing is required for the result.
- WF_RESPONSE — Stores the workflow response associated with the result, supporting Oracle Workflow-driven quality approvals.
- UPDATE_INSTANCE_ID — Links the row to a particular update instance, supporting change tracking across quality data maintenance.
- DELETE_MARK — Standard soft-delete flag; zero indicates an active row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS WHO columns providing audit lineage.
Common Use Cases and Queries
Typical usage centers on quality disposition reporting, in-specification yield analysis, and investigation of results flagged for additional testing. A representative query retrieving in-specification outcomes for a given event is:
SELECT EVENT_SPEC_DISP_ID, RESULT_ID, VALUE_IN_REPORT_PRECISION, ACTION_CODE FROM GMD.GMD_SPEC_RESULTS WHERE EVENT_SPEC_DISP_ID = :event_id AND IN_SPEC_IND = 'Y' AND NVL(DELETE_MARK, 0) = 0;- Out-of-specification exception reports: filter on
IN_SPEC_IND = 'N'and group byEVENT_SPEC_DISP_IDto quantify conformance failures. - Workflow backlog monitoring: select rows where
WF_RESPONSEis null orACTION_CODEis unresolved to surface pending quality approvals. - Audit and change tracking: join on
UPDATE_INSTANCE_IDto correlate result changes with maintenance events. - Re-test planning: query
ADDITIONAL_TEST_IND = 'Y'to produce worklists for additional analytical testing.
All queries should exclude soft-deleted rows via DELETE_MARK unless historical reconstruction is required.
Related Objects
The metadata identifies GMD_SPEC_RESULTS as standalone, with no mined FK relationships from this table to parents. The following objects are the most significant functional associates based on the GMD quality specification domain and the documented join columns:
- GMD_SPEC_RESULTS_PK — Non-clustered primary-key constraint/index on (EVENT_SPEC_DISP_ID, RESULT_ID).
- Event specification display tables (GMD_SPEC_DISP family, referenced via EVENT_SPEC_DISP_ID) — Supply the event-level context for each result.
- Result definition tables (referenced via RESULT_ID) — Define the specification test/result attribute being evaluated.
- Oracle Workflow runtime tables (WF_*), via WF_RESPONSE — Support notification and approval routing for quality results.
- Update instance / audit tracking objects, via UPDATE_INSTANCE_ID — Provide change-version context.
Because the object is documented as standalone, integrators should not assume referential constraints on the two key columns; joins to specification display and result master tables are application-enforced and should be validated with outer joins when data quality is uncertain.
-
Table: GMD_SPEC_RESULTS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SPEC_RESULTS, object_name:GMD_SPEC_RESULTS, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Specification Results , implementation_dba_data: GMD.GMD_SPEC_RESULTS ,
-
Table: GMD_SPEC_RESULTS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SPEC_RESULTS, object_name:GMD_SPEC_RESULTS, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Specification Results , implementation_dba_data: GMD.GMD_SPEC_RESULTS ,
-
PACKAGE BODY: APPS.GMD_SPEC_RESULTS_PVT
12.1.1
-
APPS.GMD_SPEC_RESULTS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMD_SPEC_RESULTS_PVT
12.2.2
-
APPS.GMD_SPEC_RESULTS_PVT SQL Statements
12.2.2
-
VIEW: GMD.GMD_SPEC_RESULTS#
12.2.2
owner:GMD, object_type:VIEW, object_name:GMD_SPEC_RESULTS#, status:VALID,
-
PACKAGE: APPS.GMD_SPEC_RESULTS_PVT
12.2.2
-
PACKAGE: APPS.GMD_SPEC_RESULTS_PVT
12.1.1
-
VIEW: GMD.GMD_SPEC_RESULTS#
12.2.2
-
SYNONYM: APPS.GMD_SPEC_RESULTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMD_SPEC_RESULTS, status:VALID,
-
SYNONYM: APPS.GMD_SPEC_RESULTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMD_SPEC_RESULTS, status:VALID,
-
APPS.GMD_RESULTS_PUB SQL Statements
12.1.1
-
TABLE: GMD.GMD_SPEC_RESULTS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SPEC_RESULTS, object_name:GMD_SPEC_RESULTS, status:VALID,
-
TABLE: GMD.GMD_SPEC_RESULTS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SPEC_RESULTS, object_name:GMD_SPEC_RESULTS, status:VALID,
-
APPS.GMD_RESULTS_GRP SQL Statements
12.2.2
-
PACKAGE: APPS.GMD_RESULTS_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMD_RESULTS_PUB, status:VALID,
-
APPS.GMD_RESULTS_GRP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMD_SPEC_RESULTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_SPEC_RESULTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.GMD_SPEC_RESULTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_SPEC_RESULTS_PVT, status:VALID,
-
PACKAGE: APPS.GMD_SPEC_RESULTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMD_SPEC_RESULTS_PVT, status:VALID,
-
PACKAGE: APPS.GMD_SPEC_RESULTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMD_SPEC_RESULTS_PVT, status:VALID,
-
PACKAGE: APPS.GMD_RESULTS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMD_RESULTS_PUB, status:VALID,
-
PACKAGE BODY: APPS.GMD_MASS_RESULTS_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_MASS_RESULTS_GRP, status:VALID,
-
VIEW: APPS.GMD_QC_RESULTS_TREE_V
12.1.1
-
PACKAGE BODY: APPS.GMD_COA_DATA_NEW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COA_DATA_NEW, status:VALID,
-
VIEW: APPS.PMIFV_BTCH_QCRSLT_V
12.2.2
-
APPS.GMD_RESULTS_PUB SQL Statements
12.2.2
-
VIEW: APPS.PMIFV_BTCH_QCRSLT_V
12.1.1
-
PACKAGE BODY: APPS.GMD_MASS_RESULTS_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_MASS_RESULTS_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_RESULTS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULTS_PUB, status:VALID,
-
VIEW: APPS.GMD_QC_RESULTS_TREE_V
12.2.2
-
PACKAGE BODY: APPS.GMD_QUALITY_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QUALITY_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_QUALITY_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QUALITY_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_COA_DATA_NEW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COA_DATA_NEW, status:VALID,
-
PACKAGE BODY: APPS.GMI_GMILTGEN_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_GMILTGEN_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMI_GMILTGEN_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_GMILTGEN_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMD_RESULTS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULTS_PUB, status:VALID,
-
PACKAGE BODY: APPS.GMD_DISP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_DISP_PUB, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.GMD_RESULT_TRANSFER_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULT_TRANSFER_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_COA_DATA_OM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COA_DATA_OM, status:VALID,
-
VIEW: APPS.PMIFV_QCRESULT_V
12.1.1
-
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_RESULT_TRANSFER_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULT_TRANSFER_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_COA_DATA_OM
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COA_DATA_OM, 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: APPS.PMIFV_QCRESULT_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMD_QC_MIGRATE_TO_1151J
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QC_MIGRATE_TO_1151J, status:VALID,