Search Results qa_car_types_pk
Overview
The QA_CAR_TYPES table is a reference data table within the Oracle E-Business Suite (EBS) Quality Assurance (QA) module. As documented in the ETRM, its stated purpose is to be used in future functionality related to Corrective Action Requests (CARs). In the context of quality management, a CAR is a formal process initiated to address and rectify a non-conformance or defect. This table is designed to categorize or classify different types of these corrective actions. Its role is foundational, providing a controlled list of CAR types that can be associated with specific quality actions and plans, thereby enforcing data integrity and standardization for future corrective action workflows.
Key Information Stored
The primary data stored in this table is the unique identifier and, by inference, a descriptive name for each corrective action type. While the full column list is not detailed in the provided excerpt, the metadata explicitly identifies the primary key column.
- CAR_TYPE_ID: This is the primary key column for the table, as defined by the QA_CAR_TYPES_PK constraint. It stores a unique numeric or alphanumeric identifier for each distinct type of corrective action. This ID is referenced by foreign keys in related transactional tables.
- Typically, a table of this nature would also include columns such as NAME, DESCRIPTION, ENABLED_FLAG, and CREATION_DATE. However, based solely on the provided metadata, CAR_TYPE_ID is the only confirmed column.
Common Use Cases and Queries
Given its status as a reference table for future functionality, direct transactional use in standard processes may be limited in current deployments. Its primary use cases involve setup, maintenance, and reporting on the classification of corrective actions.
- Setup and Administration: Quality administrators would populate this table with valid CAR types (e.g., 'Supplier Corrective Action', 'Internal Process Correction', 'Customer Complaint Resolution') during application implementation.
- Data Validation: The table's primary key ensures that any CAR_TYPE_ID referenced in transactional tables like QA_CHAR_ACTIONS must exist in QA_CAR_TYPES, preventing invalid data entry.
- Reporting and Analysis: Queries often join this table to transactional data to report on corrective actions by type. A fundamental query pattern is:
SELECT act.*, type.meaning FROM qa_char_actions act, qa_car_types type WHERE act.car_type_id = type.car_type_id;
Related Objects
The QA_CAR_TYPES table has defined relationships with key transactional tables in the Quality module, as specified by its foreign key constraints.
- QA_CHAR_ACTIONS: This table stores quality actions for collection plan elements. It references QA_CAR_TYPES via the foreign key column QA_CHAR_ACTIONS.CAR_TYPE_ID, classifying the action with a specific CAR type.
- QA_PLAN_CHAR_ACTIONS: This table defines the actions associated with characteristics in a quality collection plan. It similarly references QA_CAR_TYPES via QA_PLAN_CHAR_ACTIONS.CAR_TYPE_ID, allowing CAR types to be predefined at the plan level.
These relationships indicate that the CAR_TYPE_ID from QA_CAR_TYPES is integral to classifying corrective actions both in planned quality checks (QA_PLAN_CHAR_ACTIONS) and in executed quality results (QA_CHAR_ACTIONS).
-
Table: QA_CAR_TYPES
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_CAR_TYPES, object_name:QA_CAR_TYPES, status:VALID, product: QA - Quality , description: Intended to be used in future for corrective action functionality , implementation_dba_data: QA.QA_CAR_TYPES ,
-
Table: QA_CAR_TYPES
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_CAR_TYPES, object_name:QA_CAR_TYPES, status:VALID, product: QA - Quality , description: Intended to be used in future for corrective action functionality , implementation_dba_data: QA.QA_CAR_TYPES ,
-
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 ,