Search Results car_owner_name
Overview
QA_CHAR_ACTIONS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Oracle Quality (QA) module. It is defined in both release 12.1.1 and 12.2.2 and carries a VALID status in the ETRM data dictionary. The documented purpose of the view is to expose "collection elements and actions," joining the Quality collection element (characteristic) definition to the action that should be taken when a collection plan condition is met.
The view is a join-based, denormalized presentation layer rather than a transactional entity. It consolidates columns from four base tables so that a single query can return the characteristic name, the trigger sequence, the action description, and the associated action parameters. This makes it suitable for custom reports, concurrent program extracts, and inbound/outbound integration interfaces that need to describe Quality action rules without navigating multiple tables. Notably, two columns — CAR_TYPE_NAME and CAR_OWNER_NAME — are hard-coded as NULL in the view text, meaning lookup resolution for those attributes must be performed by the caller.
Underlying Base Objects
The view is defined over four APPS synonyms that resolve to the corresponding QA base tables:
- QA_CHAR_ACTIONS (QCA) — the driving table holding the action row, its action type, owner, message, and status.
- QA_CHAR_ACTION_TRIGGERS (QCAT) — provides the trigger sequence and links an action to a characteristic.
- QA_ACTIONS (QA) — supplies the ACTION_DESCRIPTION text for the action.
- QA_CHARS (QC) — supplies the CHAR_NAME of the collection element.
The joins are: QCA.CHAR_ACTION_TRIGGER_ID = QCAT.CHAR_ACTION_TRIGGER_ID, QCA.ACTION_ID = QA.ACTION_ID, and QCAT.CHAR_ID = QC.CHAR_ID. Every row therefore represents one action attached to one trigger, on one characteristic. Because inner joins are used, orphaned rows in any base table are excluded from the view.
Key Columns
- CHAR_ACTION_ID — primary key of the action row, used as the unique identifier in reports and updates.
- CHAR_ID / CHAR_NAME — identifier and name of the Quality collection element (characteristic).
- CHAR_ACTION_TRIGGER_ID / TRIGGER_SEQUENCE — the trigger and its evaluation order.
- ACTION_ID / ACTION_DESCRIPTION — the action and its descriptive text.
- CAR_NAME_PREFIX, CAR_TYPE_ID, CAR_TYPE_NAME, CAR_OWNER, CAR_OWNER_NAME — formatting and ownership attributes for the generated CAR (Corrective Action Request) name. CAR_TYPE_NAME and CAR_OWNER_NAME are returned as NULL by the view.
- MESSAGE, STATUS_CODE, STATUS_ID — the notification text and workflow status of the action.
- ALR_ACTION_SET_ID, ALR_ACTION_ID — linkage to alert/action-set definitions.
- ROW_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the WHO columns, useful for auditing and for the Oracle Forms update path.
Common Use Cases and Queries
A frequent requirement is to report, per collection element and trigger, which action fires and in what sequence. The request "car_owner_name" reflects a common customization: users expect a resolved owner name, which the view does not provide. A typical workaround joins the owner ID to its name source.
- Listing all actions for a characteristic:
SELECT char_name, trigger_sequence, action_description, status_code FROM apps.qa_char_actions_v WHERE char_name = :p_char_name ORDER BY char_name, trigger_sequence; - Resolving the CAR owner (the reason for the "car_owner_name" search):
SELECT v.char_action_id, v.car_owner, p.party_name car_owner_name FROM apps.qa_char_actions_v v , apps.hz_parties p WHERE v.car_owner = p.party_id; - Auditing recently changed action rules:
SELECT char_action_id, char_name, action_description, last_updated_by, last_update_date FROM apps.qa_char_actions_v WHERE last_update_date >= TRUNC(SYSDATE) - 7;
Because all joins are inner joins and the view is not indexed, filter on CHAR_ID or CHAR_ACTION_TRIGGER_ID where possible to limit the scan and rely on base-table indexes rather than full-view scans.
-
View: QA_CHAR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CHAR_ACTIONS_V, object_name:QA_CHAR_ACTIONS_V, status:VALID, product: QA - Quality , description: shows collection elements and actions , implementation_dba_data: APPS.QA_CHAR_ACTIONS_V ,
-
View: QA_CHAR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CHAR_ACTIONS_V, object_name:QA_CHAR_ACTIONS_V, status:VALID, product: QA - Quality , description: shows collection elements and actions , implementation_dba_data: APPS.QA_CHAR_ACTIONS_V ,
-
View: QA_PLAN_CHAR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHAR_ACTIONS_V, object_name:QA_PLAN_CHAR_ACTIONS_V, status:VALID, product: QA - Quality , description: Shows collection plan , elements and actions , implementation_dba_data: APPS.QA_PLAN_CHAR_ACTIONS_V ,
-
VIEW: APPS.QA_CHAR_ACTIONS_V
12.1.1
-
View: QA_PLAN_CHAR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHAR_ACTIONS_V, object_name:QA_PLAN_CHAR_ACTIONS_V, status:VALID, product: QA - Quality , description: Shows collection plan , elements and actions , implementation_dba_data: APPS.QA_PLAN_CHAR_ACTIONS_V ,
-
VIEW: APPS.QA_ERES_PLAN_CHAR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_PLAN_CHAR_ACTIONS_V, object_name:QA_ERES_PLAN_CHAR_ACTIONS_V, status:VALID,
-
VIEW: APPS.QA_CHAR_ACTIONS_V
12.2.2
-
VIEW: APPS.QA_PLAN_CHAR_ACTIONS_V
12.1.1
-
VIEW: APPS.QA_PLAN_CHAR_ACTIONS_V
12.2.2
-
View: QA_ERES_PLAN_CHAR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_PLAN_CHAR_ACTIONS_V, object_name:QA_ERES_PLAN_CHAR_ACTIONS_V, status:VALID, product: QA - Quality , description: plan element actions view for electronic records , implementation_dba_data: APPS.QA_ERES_PLAN_CHAR_ACTIONS_V ,
-
View: QA_ERES_PLAN_CHAR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_PLAN_CHAR_ACTIONS_V, object_name:QA_ERES_PLAN_CHAR_ACTIONS_V, status:VALID, product: QA - Quality , description: plan element actions view for electronic records , implementation_dba_data: APPS.QA_ERES_PLAN_CHAR_ACTIONS_V ,
-
VIEW: APPS.QA_ERES_PLAN_CHAR_ACTIONS_V
12.2.2
-
VIEW: APPS.QA_ERES_PLAN_CHAR_ACTIONS_V
12.1.1
-
VIEW: APPS.QA_ERES_PLAN_CHAR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_PLAN_CHAR_ACTIONS_V, object_name:QA_ERES_PLAN_CHAR_ACTIONS_V, status:VALID,
-
VIEW: APPS.QA_CHAR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CHAR_ACTIONS_V, object_name:QA_CHAR_ACTIONS_V, status:VALID,
-
VIEW: APPS.QA_CHAR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_CHAR_ACTIONS_V, object_name:QA_CHAR_ACTIONS_V, status:VALID,
-
VIEW: APPS.QA_PLAN_CHAR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHAR_ACTIONS_V, object_name:QA_PLAN_CHAR_ACTIONS_V, status:VALID,
-
VIEW: APPS.QA_PLAN_CHAR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_PLAN_CHAR_ACTIONS_V, object_name:QA_PLAN_CHAR_ACTIONS_V, status:VALID,
-
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 ,