Search Results qa_plan_chars
Overview
The QA_PLAN_CHARS table is a core data object within the Oracle E-Business Suite (EBS) Quality Management (QA) module. It functions as a junction or intersection table, establishing a critical many-to-many relationship between collection plans and the specific collection elements (characteristics) assigned to them. Its primary role is to define the structure of a collection plan by linking a plan (QA_PLANS) to the individual data points (QA_CHARS) that must be gathered during an inspection or data collection activity. This table is essential for configuring the content and scope of quality data collection across manufacturing, process, and service environments in EBS.
Key Information Stored
The table's structure is relatively simple, as its main purpose is to maintain relationships. The two primary columns, which together form the table's composite primary key, are PLAN_ID and CHAR_ID. The PLAN_ID column stores a foreign key reference to the unique identifier of a collection plan in the QA_PLANS table. The CHAR_ID column stores a foreign key reference to the unique identifier of a collection element or characteristic defined in the QA_CHARS table. This pairing explicitly states that a given characteristic is an active component of a specific plan. Additional columns, not detailed in the provided metadata but typical for such intersection tables in EBS, may include SEQUENCE (for ordering characteristics within a plan), ENABLED_FLAG, and CREATION_DATE/CREATED_BY columns for auditing.
Common Use Cases and Queries
This table is central to any reporting or data extraction involving the composition of quality collection plans. A common use case is generating a list of all characteristics included in a specific plan for a work instruction or data entry screen setup. Another is identifying which plans utilize a particular characteristic, which is vital for impact analysis before modifying that characteristic. A typical query would join QA_PLAN_CHARS to QA_PLANS and QA_CHARS to retrieve meaningful names.
- List Characteristics for a Plan:
SELECT pc.char_id, c.name FROM qa_plan_chars pc, qa_chars c WHERE pc.char_id = c.char_id AND pc.plan_id = :p_plan_id ORDER BY pc.sequence; - Find Plans Using a Characteristic:
SELECT pc.plan_id, p.name FROM qa_plan_chars pc, qa_plans p WHERE pc.plan_id = p.plan_id AND pc.char_id = :p_char_id;
Related Objects
QA_PLAN_CHARS sits at the intersection of two primary master tables, as defined by its foreign key constraints. The QA_PLANS table stores the definition of the collection plan itself, including its name, type, and effective dates. The QA_CHARS table is the master repository for all definable collection elements, holding the characteristic's name, data type (e.g., number, date, lookup), and validation rules. This table is also a likely parent to transactional tables such as QA_RESULTS, which store the actual values collected for each plan-characteristic combination during an inspection. Understanding the relationship between QA_PLANS, QA_PLAN_CHARS, and QA_CHARS is fundamental to working with the Quality module's data model.
-
Table: QA_PLAN_CHARS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLAN_CHARS, object_name:QA_PLAN_CHARS, status:VALID, product: QA - Quality , description: Stores collection plans and their assigned collection elements , implementation_dba_data: QA.QA_PLAN_CHARS ,
-
Table: QA_PLAN_CHARS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLAN_CHARS, object_name:QA_PLAN_CHARS, status:VALID, product: QA - Quality , description: Stores collection plans and their assigned collection elements , implementation_dba_data: QA.QA_PLAN_CHARS ,
-
View: QA_PC_RESULT_COLUMNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PC_RESULT_COLUMNS_V, object_name:QA_PC_RESULT_COLUMNS_V, status:VALID, product: QA - Quality , description: This view will be useful in dealing with copy relationship or others. , implementation_dba_data: APPS.QA_PC_RESULT_COLUMNS_V ,
-
View: QA_PC_RESULT_COLUMNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PC_RESULT_COLUMNS_V, object_name:QA_PC_RESULT_COLUMNS_V, status:VALID, product: QA - Quality , description: This view will be useful in dealing with copy relationship or others. , implementation_dba_data: APPS.QA_PC_RESULT_COLUMNS_V ,
-
Table: QA_PLANS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLANS, object_name:QA_PLANS, status:VALID, product: QA - Quality , description: Collection plan definitions , implementation_dba_data: QA.QA_PLANS ,
-
View: QABV_COLLECTION_PLAN_ELEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QABV_COLLECTION_PLAN_ELEMENTS, object_name:QABV_COLLECTION_PLAN_ELEMENTS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QABV_COLLECTION_PLAN_ELEMENTS ,
-
View: QA_PC_PLAN_COLUMNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PC_PLAN_COLUMNS_V, object_name:QA_PC_PLAN_COLUMNS_V, status:VALID, product: QA - Quality , description: This view will be useful in getting all elements and values from current form so that these can be passed on to child plans. , implementation_dba_data: APPS.QA_PC_PLAN_COLUMNS_V ,
-
View: QA_PC_PLAN_COLUMNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PC_PLAN_COLUMNS_V, object_name:QA_PC_PLAN_COLUMNS_V, status:VALID, product: QA - Quality , description: This view will be useful in getting all elements and values from current form so that these can be passed on to child plans. , implementation_dba_data: APPS.QA_PC_PLAN_COLUMNS_V ,
-
View: QA_PC_CRITERIA_COLUMNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PC_CRITERIA_COLUMNS_V, object_name:QA_PC_CRITERIA_COLUMNS_V, status:VALID, product: QA - Quality , description: This view is for getting all elements that form the criteria elements of current plan. , implementation_dba_data: APPS.QA_PC_CRITERIA_COLUMNS_V ,
-
Table: QA_CHARS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_CHARS, object_name:QA_CHARS, status:VALID, product: QA - Quality , description: Collection elements definitions , implementation_dba_data: QA.QA_CHARS ,
-
View: QA_PC_CRITERIA_COLUMNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PC_CRITERIA_COLUMNS_V, object_name:QA_PC_CRITERIA_COLUMNS_V, status:VALID, product: QA - Quality , description: This view is for getting all elements that form the criteria elements of current plan. , implementation_dba_data: APPS.QA_PC_CRITERIA_COLUMNS_V ,
-
Table: QA_CHARS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_CHARS, object_name:QA_CHARS, status:VALID, product: QA - Quality , description: Collection elements definitions , implementation_dba_data: QA.QA_CHARS ,
-
View: QA_CRITERIA_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CRITERIA_HEADERS_V, object_name:QA_CRITERIA_HEADERS_V, status:VALID, product: QA - Quality , description: Shows chart and Quality Dynamic Reportwriter settings , implementation_dba_data: APPS.QA_CRITERIA_HEADERS_V ,
-
View: QABV_COLLECTION_PLAN_ELEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QABV_COLLECTION_PLAN_ELEMENTS, object_name:QABV_COLLECTION_PLAN_ELEMENTS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QABV_COLLECTION_PLAN_ELEMENTS ,
-
View: QAFV_COLLECTION_PLAN_ELEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QAFV_COLLECTION_PLAN_ELEMENTS, object_name:QAFV_COLLECTION_PLAN_ELEMENTS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QAFV_COLLECTION_PLAN_ELEMENTS ,
-
View: QAFV_COLLECTION_PLAN_ELEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QAFV_COLLECTION_PLAN_ELEMENTS, object_name:QAFV_COLLECTION_PLAN_ELEMENTS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QAFV_COLLECTION_PLAN_ELEMENTS ,
-
Table: QA_PLANS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLANS, object_name:QA_PLANS, status:VALID, product: QA - Quality , description: Collection plan definitions , implementation_dba_data: QA.QA_PLANS ,
-
View: QA_CRITERIA_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CRITERIA_HEADERS_V, object_name:QA_CRITERIA_HEADERS_V, status:VALID, product: QA - Quality , description: Shows chart and Quality Dynamic Reportwriter settings , implementation_dba_data: APPS.QA_CRITERIA_HEADERS_V ,
-
View: QA_CRITERIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CRITERIA_V, object_name:QA_CRITERIA_V, status:VALID, product: QA - Quality , description: Shows collection plan , elements and chart and Quality Dynamic Reportwriter criterias , implementation_dba_data: APPS.QA_CRITERIA_V ,
-
View: QA_PLAN_CHAR_ACTION_TRIGGERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHAR_ACTION_TRIGGERS_V, object_name:QA_PLAN_CHAR_ACTION_TRIGGERS_V, status:VALID, product: QA - Quality , description: Shows collection plan , elements and action triggers , implementation_dba_data: APPS.QA_PLAN_CHAR_ACTION_TRIGGERS_V ,
-
View: QA_PLAN_CHAR_ACTION_TRIGGERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHAR_ACTION_TRIGGERS_V, object_name:QA_PLAN_CHAR_ACTION_TRIGGERS_V, status:VALID, product: QA - Quality , description: Shows collection plan , elements and action triggers , implementation_dba_data: APPS.QA_PLAN_CHAR_ACTION_TRIGGERS_V ,
-
View: QA_CRITERIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CRITERIA_V, object_name:QA_CRITERIA_V, status:VALID, product: QA - Quality , description: Shows collection plan , elements and chart and Quality Dynamic Reportwriter criterias , implementation_dba_data: APPS.QA_CRITERIA_V ,
-
View: QA_PLAN_CHARS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHARS_V, object_name:QA_PLAN_CHARS_V, status:VALID, product: QA - Quality , description: Shows collection plan and collection elements , implementation_dba_data: APPS.QA_PLAN_CHARS_V ,
-
View: QA_PLAN_CHARS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHARS_V, object_name:QA_PLAN_CHARS_V, status:VALID, product: QA - Quality , description: Shows collection plan and collection elements , implementation_dba_data: APPS.QA_PLAN_CHARS_V ,