Results for “qa_chars_u2”

10 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

QA.QA_CHARS is the master table for Quality Characteristics (also called collection elements) in Oracle Quality within Oracle E-Business Suite 12.1.1 and 12.2.2. Collection elements are the atomic units that a collection plan gathers — a measurable or observable attribute such as a temperature reading, a defect code, or a pass/fail result. QA_CHARS holds the definition of every such element, whether seeded by Oracle Quality at installation or user-defined through the Collection Elements window. A collection element must be enabled (ENABLED_FLAG) before it can be added to a collection plan.

The table stores display information used during results entry (prompts and hints), data semantics (datatype, display length, decimal precision, default value), validation rules such as SQL validation strings, and specification limits such as upper and lower spec limits. It also records the collection element type and context. Context is driven by CHAR_CONTEXT_FLAG, which determines whether an element is a standard Quality Characteristic, dependent on another element, or a reference into another Oracle Applications table. From a Data Vault modeling perspective, the metadata's heuristic classification places QA_CHARS as a hub: a single, stable business key (the collection element NAME) whose descriptive attributes govern downstream references. Note that the 12.2.2 schema includes ZD_EDITION_NAME, indicating Editioning support.

Key Information Stored

Common Use Cases and Queries

Typical reporting scenarios include auditing enabled characteristics, translating technical names to user prompts, and verifying specification limits against actual results in QA_RESULTS.

  • List all enabled characteristics: SELECT char_id, name, prompt, datatype FROM qa.qa_chars WHERE enabled_flag = 'Y';
  • Find dependent elements: SELECT c.name, c.dependent_char_id, p.name parent_name FROM qa.qa_chars c, qa.qa_chars p WHERE c.dependent_char_id = p.char_id;
  • Identify characteristics backed by other applications: SELECT name, fk_table_name, pk_id, fk_id FROM qa.qa_chars WHERE fk_table_name IS NOT NULL;
  • Validate whether results exist: filter on values_exist_flag before attempting to disable or delete an element.
  • Join to QA_PLAN_CHARS on CHAR_ID to report all elements attached to a given collection plan.

Related Objects