Search Results gmd_ss_variants_pk
Overview
GMD_SS_VARIANTS is a table within the Oracle E-Business Suite Process Manufacturing Product Development (GMD) module. It stores Stability Study Variants, which represent distinct configurations or execution paths of a stability study. A stability study defines how a product's characteristics change over time under defined storage conditions; a variant captures one particular arrangement of storage plan, sampling cadence, resource assignment, and specification defaults within that study. Each row therefore records a single schedulable variant belonging to a parent stability study.
The table resides in the GMD schema and is identified in ETRM 12.2.2 documentation as a VALID object with 63 columns. Under the heuristic Data Vault classification derived from foreign key mining, GMD_SS_VARIANTS is characterized as standalone, meaning it does not function cleanly as a hub, link, or pure satellite on its own. In modeling terms, it can be treated as a disconnected entity whose relationships are carried by its own foreign key references to parent studies, storage plans, and sampling events, rather than by an intermediate link table.
Key Information Stored
The primary key is the surrogate identifier VARIANT_ID, enforced by the unique index GMD_SS_VARIANTS_PK. No alternate unique index is documented, so business-key uniqueness on VARIANT_NO (the user-facing variant number) is not independently enforced at the database level.
- VARIANT_ID – surrogate primary key.
- VARIANT_NO – user-visible variant number.
- SS_ID – foreign key to GMD_STABILITY_STUDIES_B, the owning stability study.
- STORAGE_PLAN_DETAIL_ID – foreign key to GMD_STORAGE_PLAN_DETAILS, defining storage conditions.
- SAMPLING_EVENT_ID – foreign key to GMD_SAMPLING_EVENTS, tying the variant to a sampling event.
- SCHEDULED_START_DATE and ACTUAL_END_DATE – variant scheduling window.
- SAMPLES_PER_TIME_POINT and RETAINED_SAMPLES – sampling volume rules.
- SAMPLE_QTY, SAMPLE_QTY_UOM, SAMPLE_QUANTITY_UOM – quantity and unit of measure for samples.
- DEFAULT_SPEC_ID and STORAGE_SPEC_ID – specification defaults.
- STORAGE_WHSE_CODE, STORAGE_LOCATION, STORAGE_SUBINVENTORY, STORAGE_ORGANIZATION_ID, STORAGE_LOCATOR_ID, STORAGE_DATE – physical storage placement.
- PACKAGE_ID, TEXT_CODE, RESOURCES, RESOURCE_INSTANCE_ID – packaging and resource context.
- MATERIAL_SOURCE_ID – source material reference.
- MIGRATED_IND and DELETE_MARK – migration status and soft-delete flag.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–30 – DFF extensibility, plus standard WHO audit columns.
Common Use Cases and Queries
Typical reporting joins variants to their parent study and storage plan to produce stability schedules.
- List variants for a study:
SELECT v.variant_no, v.scheduled_start_date FROM gmd_ss_variants v WHERE v.ss_id = :study_id; - Join to storage conditions:
SELECT v.variant_no, d.* FROM gmd_ss_variants v, gmd_storage_plan_details d WHERE v.storage_plan_detail_id = d.storage_plan_detail_id; - Trace samples per variant:
SELECT s.sample_no, v.variant_no FROM gmd_samples s, gmd_ss_variants v WHERE s.variant_id = v.variant_id; - Active-only listing using
DELETE_MARK = 0.
Related Objects
- GMD_STABILITY_STUDIES_B – parent study; join on SS_ID.
- GMD_STORAGE_PLAN_DETAILS – storage condition definition; join on STORAGE_PLAN_DETAIL_ID.
- GMD_SAMPLING_EVENTS – sampling event; join on SAMPLING_EVENT_ID and VARIANT_ID.
- GMD_SAMPLES – samples generated for the variant; join on VARIANT_ID.
- GMD_SS_TIME_POINTS – time-point schedule per variant; join on VARIANT_ID.
- GMD_SS_STORAGE_HISTORY – storage history per variant; join on VARIANT_ID.
-
INDEX: GMD.GMD_SS_VARIANTS_PK
12.2.2
owner:GMD, object_type:INDEX, object_name:GMD_SS_VARIANTS_PK, status:VALID,
-
Table: GMD_SS_VARIANTS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SS_VARIANTS, object_name:GMD_SS_VARIANTS, status:VALID, product: GMD - Process Manufacturing Product Development , description: Stability Study Variants , implementation_dba_data: GMD.GMD_SS_VARIANTS ,
-
Table: GMD_SS_VARIANTS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SS_VARIANTS, object_name:GMD_SS_VARIANTS, status:VALID, product: GMD - Process Manufacturing Product Development , description: Stability Study Variants , implementation_dba_data: GMD.GMD_SS_VARIANTS ,
-
INDEX: GMD.GMD_SS_VARIANTS_PK
12.1.1
owner:GMD, object_type:INDEX, object_name:GMD_SS_VARIANTS_PK, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: GMD.GMD_SS_VARIANTS
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SS_VARIANTS, object_name:GMD_SS_VARIANTS, status:VALID,
-
TABLE: GMD.GMD_SS_VARIANTS
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_SS_VARIANTS, object_name:GMD_SS_VARIANTS, status:VALID,
-
eTRM - GMD Tables and Views
12.2.2
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GMD Tables and Views
12.1.1
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GMD Tables and Views
12.1.1
description: QC Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GMD Tables and Views
12.2.2
description: QC Module Text Lines. Descriptive text for all tables in this module. ,