Search Results sample_inv_trans_ind
Overview
GMD_COM_SPEC_VRS_VL is an APPS-owned database view in Oracle E-Business Suite that consolidates the base columns of all Specification Validity Rules tables used by GMD - Process Manufacturing Product Development. Specification validity rules determine the conditions under which a quality specification applies to a material, lot, organization, or other qualifying attribute, including date ranges, sampling plans, and certificate of analysis (COA) behavior. Because the individual source tables are structured around different specification "types" (inventory, WIP, customer, supplier, stability, and monitoring), this view presents them through a single, uniform column projection so that reporting, integration, and inquiry screens can query specification validity rules without hard-coding each underlying table.
The view text demonstrates this consolidation explicitly: the first branch selects from GMD_INVENTORY_SPEC_VRS with a literal SPEC_TYPE of 'I' and real values for the inventory-specific columns (PARENT_LOT_NUMBER, LOT_NUMBER, SUBINVENTORY, LOCATOR_ID), while subsequent UNION ALL branches select from other specification validity tables with those same columns typed as NULL. This pattern produces a superset row shape across all validity rule types.
Underlying Base Objects
The documented base objects referenced by APPS.GMD_COM_SPEC_VRS_VL are the following synonyms, each resolving to its corresponding specification validity rules table in the GMD schema:
- GMD_INVENTORY_SPEC_VRS
- GMD_WIP_SPEC_VRS
- GMD_CUSTOMER_SPEC_VRS
- GMD_SUPPLIER_SPEC_VRS
- GMD_STABILITY_SPEC_VRS
- GMD_MONITORING_SPEC_VRS
The view is therefore a UNION-based aggregation layered over six base tables. The literal SPEC_TYPE column is the discriminator that identifies which source table a given row originated from. Columns not applicable to a particular source table are projected as strongly typed NULLs, for example TO_NUMBER(NULL) for numeric attributes and NULL for character attributes, to satisfy the datatype compatibility required by the UNION ALL.
Key Columns
The following columns are central to interpreting and querying the view:
- SPEC_VR_ID - Primary key of the specification validity rule record.
- SPEC_ID - Identifier of the parent specification to which the validity rule belongs.
- ORGANIZATION_ID - Inventory organization in which the rule applies.
- SPEC_TYPE - Literal discriminator ('I', 'W', and values for the remaining branches) indicating the originating specification validity rule table.
- PARENT_LOT_NUMBER / LOT_NUMBER - Lot and parent lot to which an inventory specification rule is scoped; populated only for inventory-type rows.
- SUBINVENTORY / LOCATOR_ID - Subinventory and locator qualifiers for inventory specification rules.
- SPEC_VR_STATUS / START_DATE / END_DATE - Rule status and effective date range.
- SAMPLING_PLAN_ID - Sampling plan associated with the rule.
- IN_SPEC_LOT_STATUS_ID / OUT_OF_SPEC_LOT_STATUS_ID - Lot statuses to apply based on specification outcome.
- COA_TYPE / COA_AT_SHIP_IND / COA_AT_INVOICE_IND / COA_REQ_FROM_SUPL_IND - Certificate of analysis generation rules.
- DELETE_MARK, TEXT_CODE, CREATION_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_DATE - Standard conformance and audit columns.
Common Use Cases and Queries
The view is typically used to report on specification applicability across specification types, and to trace which validity rule governs a given inventory lot. A common query identifies parent lot scoping, which aligns to the "parent_lot_number" search term:
- Listing all validity rules for an organization: SELECT * FROM APPS.GMD_COM_SPEC_VRS_VL WHERE ORGANIZATION_ID = :org_id AND DELETE_MARK = 0.
- Filtering to inventory-scoped rules with a parent lot: SELECT SPEC_VR_ID, SPEC_ID, PARENT_LOT_NUMBER, LOT_NUMBER FROM APPS.GMD_COM_SPEC_VRS_VL WHERE SPEC_TYPE = 'I' AND PARENT_LOT_NUMBER IS NOT NULL.
Because PARENT_LOT_NUMBER and LOT_NUMBER are populated only in the inventory branch and NULL elsewhere, queries referencing them should generally also constrain SPEC_TYPE. The view supports ETL extraction and validation tooling that must navigate specification validity rules uniformly across all GMD specification domains.
-
View: GMD_COM_SPEC_VRS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_COM_SPEC_VRS_VL, object_name:GMD_COM_SPEC_VRS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: View of base columns of all Specification Validity Rules tables , implementation_dba_data: APPS.GMD_COM_SPEC_VRS_VL ,
-
View: GMD_COM_SPEC_VRS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_COM_SPEC_VRS_VL, object_name:GMD_COM_SPEC_VRS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , description: View of base columns of all Specification Validity Rules tables , implementation_dba_data: APPS.GMD_COM_SPEC_VRS_VL ,
-
View: GMD_SPECIFICATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_SPECIFICATIONS_VL, object_name:GMD_SPECIFICATIONS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_SPECIFICATIONS_VL ,
-
View: GMD_SPECIFICATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_SPECIFICATIONS_VL, object_name:GMD_SPECIFICATIONS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_SPECIFICATIONS_VL ,
-
View: GMD_SPEC_SUMMARY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_SPEC_SUMMARY, object_name:GMD_SPEC_SUMMARY, status:VALID, product: GMD - Process Manufacturing Product Development , description: View for Summary of Specifications , implementation_dba_data: APPS.GMD_SPEC_SUMMARY ,
-
View: GMD_SPEC_SUMMARY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_SPEC_SUMMARY, object_name:GMD_SPEC_SUMMARY, status:VALID, product: GMD - Process Manufacturing Product Development , description: View for Summary of Specifications , implementation_dba_data: APPS.GMD_SPEC_SUMMARY ,
-
View: GMD_QC_E_ALL_SPEC_VRS_DISP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_ALL_SPEC_VRS_DISP_V, object_name:GMD_QC_E_ALL_SPEC_VRS_DISP_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_ALL_SPEC_VRS_DISP_V ,
-
View: GMD_QC_E_ALL_SPEC_VRS_DISP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_QC_E_ALL_SPEC_VRS_DISP_V, object_name:GMD_QC_E_ALL_SPEC_VRS_DISP_V, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_QC_E_ALL_SPEC_VRS_DISP_V ,
-
View: GMD_ALL_SPEC_VRS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_ALL_SPEC_VRS_VL, object_name:GMD_ALL_SPEC_VRS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_ALL_SPEC_VRS_VL ,
-
View: GMD_ALL_SPEC_VRS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_ALL_SPEC_VRS_VL, object_name:GMD_ALL_SPEC_VRS_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_ALL_SPEC_VRS_VL ,