Search Results gmd_composite_results
Overview
GMD_COMPOSITE_RESULTS is a table in the GMD schema belonging to the Oracle Process Manufacturing (OPM) Product Development module, which encompasses Quality Management functionality. The table stores OPM Quality Composite results — aggregated statistical summaries derived from multiple individual test results that are combined into a single representative composite value. Composite testing is used in process manufacturing when a meaningful quality assessment requires statistical consolidation across samples, lots, or time periods rather than evaluation of a single measurement.
Under the heuristic Data Vault classification mined from the foreign key structure, GMD_COMPOSITE_RESULTS is modeled as a standalone object. No parent tables reference it through inbound foreign keys in the documented relationship data; instead, it acts as a referenced parent for downstream tables. In Data Vault terms this suggests a hub-like posture, where COMPOSITE_RESULT_ID serves as the durable business key anchor. The table exists in both Oracle EBS 12.1.1 and 12.2.2, with a documented physical schema of 59 columns in the 12.2.2 ETRM reference.
Key Information Stored
The surrogate primary key is COMPOSITE_RESULT_ID, enforced by the unique index GMD_COMPOSITE_RESULTS_PK. A second unique index, GMD_COMPOSITE_RESULTS_U1, covers (COMPOSITE_SPEC_DISP_ID, TEST_ID) and represents the principal business-key candidate: a composite result is uniquely identified by the combination of the composite specification/display context and the specific quality test performed.
- COMPOSITE_RESULT_ID — surrogate primary key and the FK target for dependent tables.
- TEST_ID — the quality test definition to which the composite statistics apply.
- COMPOSITE_SPEC_DISP_ID — specification display context; together with TEST_ID forms the unique business key.
- MEAN, MODE_NUM, MEDIAN_NUM, STANDARD_DEVIATION, RANGE — numeric statistical aggregates over the underlying sample set.
- LOW_NUM, HIGH_NUM — lower and upper numeric bounds observed or permitted.
- MODE_CHAR, MEDIAN_CHAR, LOW_CHAR, HIGH_CHAR — character-domain counterparts for text-valued test results.
- SAMPLE_TOTAL, SAMPLE_CNT_USED — total samples considered versus samples actually included in the composite calculation.
- IN_SPEC_IND — indicator of whether the composite falls within specification limits.
- NON_VALIDATED_RESULT — flag for results that have not completed validation workflow.
- PARENT_COMPOSITE_RESULT_ID — self-referencing link supporting hierarchical or nested composite structures.
- WF_RESPONSE, VALUE_IN_REPORT_PRECISION — workflow response state and reporting precision control.
- DELETE_MARK — soft-delete indicator consistent with OPM conventions.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE30 — the standard Oracle extensibility block (31 columns) for customer-defined descriptive flexfield data.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
The most frequent access pattern is retrieval of composite statistics for a given test and specification context, typically for quality reporting, certificate-of-analysis generation, or laboratory dashboarding. A representative query joins the composite to its test definition:
SELECT cr.composite_result_id, cr.test_id, cr.mean,
cr.standard_deviation, cr.sample_total, cr.in_spec_ind
FROM gmd_composite_results cr
WHERE cr.composite_spec_disp_id = :spec_disp_id
AND cr.delete_mark = 0;
A second common pattern resolves the U1 business key directly, retrieving the single composite row for a spec/test pair. Out-of-specification monitoring queries filter on IN_SPEC_IND and NON_VALIDATED_RESULT to isolate results requiring investigation or workflow action. Hierarchical reporting walks PARENT_COMPOSITE_RESULT_ID to reconstruct nested composite relationships. Batch or lot-level trending reports aggregate MEAN and STANDARD_DEVIATION over time to detect process drift, and the attribute flexfield columns support customer-specific reporting extensions without schema modification.
Related Objects
- GMD_COMPOSITE_RESULT_ASSOC — references GMD_COMPOSITE_RESULTS via COMPOSITE_RESULT_ID; stores the association between a composite result and its constituent source results.
- GMD_UOM_CONVERSIONS — references COMPOSITE_RESULT_ID; holds unit-of-measure conversion data tied to composite result values.
- GMD_COMPOSITE_RESULTS_PK — primary key unique index on COMPOSITE_RESULT_ID.
- GMD_COMPOSITE_RESULTS_U1 — unique index on (COMPOSITE_SPEC_DISP_ID, TEST_ID), the business-key candidate.
- GMD specification and test definition tables — provide the TEST_ID and COMPOSITE_SPEC_DISP_ID context that scopes each composite record.
Because the documented schema is largely standalone, integrations should treat GMD_COMPOSITE_RESULTS as an authoritative parent record, with GMD_COMPOSITE_RESULT_ASSOC and GMD_UOM_CONVERSIONS as the primary dependent children when tracing composite results across the OPM Quality data model.
-
Table: GMD_COMPOSITE_RESULTS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_COMPOSITE_RESULTS, object_name:GMD_COMPOSITE_RESULTS, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Composite results , implementation_dba_data: GMD.GMD_COMPOSITE_RESULTS ,
-
Table: GMD_COMPOSITE_RESULTS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_COMPOSITE_RESULTS, object_name:GMD_COMPOSITE_RESULTS, status:VALID, product: GMD - Process Manufacturing Product Development , description: OPM Quality Composite results , implementation_dba_data: GMD.GMD_COMPOSITE_RESULTS ,
-
APPS.GMD_COMPOSITE_RESULTS_PVT SQL Statements
12.1.1
-
APPS.GMD_COMPOSITE_RESULTS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMD_COMPOSITE_RESULTS_PVT
12.2.2
-
PACKAGE BODY: APPS.GMD_COMPOSITE_RESULTS_PVT
12.1.1
-
PACKAGE: APPS.GMD_COMPOSITE_RESULTS_PVT
12.1.1
-
PACKAGE: APPS.GMD_COMPOSITE_RESULTS_PVT
12.2.2
-
VIEW: APPS.GMD_COMPOSITE_RESULTS_DFV
12.1.1
-
VIEW: APPS.GMD_COMPOSITE_RESULTS_DFV
12.2.2
-
SYNONYM: APPS.GMD_COMPOSITE_RESULTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMD_COMPOSITE_RESULTS, status:VALID,
-
SYNONYM: APPS.GMD_COMPOSITE_RESULTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMD_COMPOSITE_RESULTS, status:VALID,
-
APPS.GMD_RESULT_TRANSFER_GRP SQL Statements
12.1.1
-
VIEW: GMD.GMD_COMPOSITE_RESULTS#
12.2.2
owner:GMD, object_type:VIEW, object_name:GMD_COMPOSITE_RESULTS#, status:VALID,
-
APPS.GMD_RESULT_TRANSFER_GRP SQL Statements
12.2.2
-
PACKAGE: APPS.GMD_COMPOSITE_RESULTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMD_COMPOSITE_RESULTS_PVT, status:VALID,
-
SYNONYM: APPS.GMD_COMP_RESULTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMD_COMP_RESULTS, status:VALID,
-
VIEW: GMD.GMD_COMPOSITE_RESULTS#
12.2.2
-
SYNONYM: APPS.GMD_COMP_RESULTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMD_COMP_RESULTS, status:VALID,
-
PACKAGE BODY: APPS.GMD_COMPOSITE_RESULTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COMPOSITE_RESULTS_PVT, status:VALID,
-
PACKAGE: APPS.GMD_COMPOSITE_RESULTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMD_COMPOSITE_RESULTS_PVT, status:VALID,
-
VIEW: APPS.GMD_COMPOSITE_RESULTS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:GMD_COMPOSITE_RESULTS_DFV, status:VALID,
-
PACKAGE: APPS.GMD_COA_DATA_OM_NEW
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMD_COA_DATA_OM_NEW, status:VALID,
-
PACKAGE BODY: APPS.GMD_COMPOSITE_RESULTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_COMPOSITE_RESULTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.GMD_QUALITY_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_QUALITY_GRP, status:VALID,
-
VIEW: APPS.GMD_COMPOSITE_RESULTS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:GMD_COMPOSITE_RESULTS_DFV, status:VALID,
-
PACKAGE: APPS.GMD_COA_DATA_OM_NEW
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMD_COA_DATA_OM_NEW, status:VALID,
-
VIEW: APPS.GMD_QC_E_COMPOSITE_RESULTS_V
12.1.1
-
VIEW: APPS.GMD_QC_E_COMPOSITE_RESULTS_V
12.2.2
-
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_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_RESULT_TRANSFER_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULT_TRANSFER_GRP, status:VALID,
-
PACKAGE BODY: APPS.GMD_DISP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_DISP_PUB, status:VALID,
-
TABLE: GMD.GMD_COMPOSITE_RESULTS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_COMPOSITE_RESULTS, object_name:GMD_COMPOSITE_RESULTS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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,
-
TABLE: GMD.GMD_COMPOSITE_RESULTS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_COMPOSITE_RESULTS, object_name:GMD_COMPOSITE_RESULTS, status:VALID,
-
PACKAGE BODY: APPS.GMD_RESULT_TRANSFER_GRP
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMD_RESULTS_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULTS_GRP, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.GMD_RESULT_TRANSFER_GRP
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMD_RESULTS_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMD_RESULTS_GRP, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
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 ,