Search Results qa_results_pk




Overview

QA.QA_RESULTS is the central transactional repository for quality results data in Oracle E-Business Suite Quality (QA). Each row records the outcome of an inspection, test, or data-collection event executed against a quality plan, associating the captured readings with the transaction, item, organization, and business entity that produced them. The table is populated when a collection plan is executed in Oracle Quality — from receiving inspections, work-in-process checks, discrete and process manufacturing operations, service and repair events, or ad hoc data collection — and it is the principal source for quality analytics, nonconformance tracking, and disposition processing.

Given the extensive foreign-key footprint spanning manufacturing, purchasing, order management, service, and customer master tables, the object behaves as a broad integration fact. Mined from its FK structure, the heuristic Data Vault classification is satellite-leaning; a modeling exercise would typically treat QA_RESULTS as a satellite (or a link-satellite combination) attached to the collection plan and occurrence business keys, with numerous secondary links to the referenced operational entities. This is a suggestion rather than a documented Oracle construct.

Key Information Stored

QA_RESULTS is a wide table of 236 documented columns in release 12.2.2. The surrogate primary key is QA_RESULTS_PK, defined over (COLLECTION_ID, OCCURRENCE). Two unique indexes act as business-key candidates: QA_RESULTS_U1 (PLAN_ID, COLLECTION_ID, OCCURRENCE) and QA_RESULTS_U2 (PLAN_ID, OCCURRENCE). PLAN_ID therefore anchors a result to the collection plan, while OCCURRENCE distinguishes repeated executions of the same plan.

Common Use Cases and Queries

The dominant reporting use is quality performance analysis: first-pass yield, defect Pareto, and nonconformance aging. Because flexible values are stored generically, queries join QA_RESULTS to the collection-plan metadata (QA_RESULTS_VIEW definitions via QA_PLANS) to resolve CHARACTERn columns to named collection elements.

  • Result counts by plan and organization for a date range.
  • Nonconformance extracts filtered on NONCONFORMANCE_SOURCE, NONCONFORM_SEVERITY, and DATE_OPENED.
  • Disposition aging: SELECT COLLECTION_ID, OCCURRENCE, DAYS_TO_CLOSE FROM QA.QA_RESULTS WHERE DATE_CLOSED IS NULL AND DATE_OPENED < SYSDATE - 30;
  • Receiving inspection traceability joining VENDOR_ID, RECEIPT_NUM, and PO_HEADER_ID.
  • WIP defect analysis joining WIP_ENTITY_ID and LINE_ID to WIP_ENTITIES and WIP_LINES.

Queries should be restricted by PLAN_ID and organization to exploit QA_RESULTS_U1/U2 rather than scanning the full table.

Related Objects

  • Table: QA_RESULTS 12.1.1

    owner:QA,  object_type:TABLE,  fnd_design_data:QA.QA_RESULTS,  object_name:QA_RESULTS,  status:VALID,  product: QA - Qualitydescription: Quality Results data repository ,  implementation_dba_data: QA.QA_RESULTS

  • Table: QA_RESULTS 12.2.2

    owner:QA,  object_type:TABLE,  fnd_design_data:QA.QA_RESULTS,  object_name:QA_RESULTS,  status:VALID,  product: QA - Qualitydescription: Quality Results data repository ,  implementation_dba_data: QA.QA_RESULTS

  • eTRM - QA Tables and Views 12.1.1

    description: Define information on applicability of a collection plan for a Quality Collection transaction , 

  • eTRM - QA Tables and Views 12.2.2

    description: Define information on applicability of a collection plan for a Quality Collection transaction , 

  • eTRM - QA Tables and Views 12.1.1

    description: Define information on applicability of a collection plan for a Quality Collection transaction , 

  • eTRM - QA Tables and Views 12.2.2

    description: Define information on applicability of a collection plan for a Quality Collection transaction ,