Search Results program_application_name




Overview

QA_ERES_PLAN_CHAR_ACTIONS_V is a PL/SQL view owned by the APPS schema in Oracle E-Business Suite, defined under the Quality Management (QA) product. Its documented purpose is to serve as the "plan element actions view for electronic records" within the Electronic Records and Electronic Signatures (ERES) framework. The view consolidates action definitions configured against quality plan characteristics together with the notification and distribution attributes maintained in the Alert (ALR) module, producing a single denormalized result set suited to reporting and integration.

The view is a reporting and data-access construct rather than a transactional entity. It exposes the metadata required to render, audit, or export the actions that a quality plan element (characteristic) triggers, including the message tokens, status, assigned characteristic, workflow linkage, and e-mail distribution parameters. Because the object is VALID and registered in ETRM, it is safe to reference in custom queries within EBS 12.1.1 and 12.2.2, subject to the standard APPS read privileges.

Underlying Base Objects

The view is defined over a fixed set of documented base objects, joined with outer-join semantics so that actions without a matching characteristic, alert, or workflow row still appear:

Key Columns

Common Use Cases and Queries

Typical usage includes auditing ERES action configuration, extracting notification routing for a plan characteristic, and migrating action definitions between environments. A representative query retrieving the reply-to address and notification fields is shown below.

  • Notification routing audit: SELECT PLAN_CHAR_ACTION_ID, ASSIGNED_CHAR_NAME, ACTION_DESCRIPTION, SUBJECT, REPLY_TO, TO_RECIPIENTS FROM QA_ERES_PLAN_CHAR_ACTIONS_V WHERE REPLY_TO IS NOT NULL.
  • Workflow-linked actions: SELECT PLAN_CHAR_ACTION_ID, WORKFLOW_NAME, MESSAGE FROM QA_ERES_PLAN_CHAR_ACTIONS_V WHERE ACTION_ID = 28.
  • Distribution list extract: SELECT ALR_ACTION_ID, LIST, SUBJECT, REPLY_TO FROM QA_ERES_PLAN_CHAR_ACTIONS_V WHERE LIST IS NOT NULL.
  • Status reporting: SELECT STATUS_CODE, COUNT(*) FROM QA_ERES_PLAN_CHAR_ACTIONS_V GROUP BY STATUS_CODE.

Because the underlying joins restrict alert rows to APPLICATION_ID 250 and active distribution lists, result sets reflect only currently effective alert definitions unless the view text is altered.