Search Results assign_party_id
Overview
PA_CI_ACTIONS_V is a Projects (PA) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to provide the attribute values for Action Lists associated with control items. In the Projects architecture, a control item (CI) represents a tracked issue, change, or deliverable, while an action is a discrete task assigned against that control item. This view denormalizes those relationships into a single reporting surface, resolving internal codes into user-facing meanings.
The column PRIORITY_DESCRIPTION, which is the term the user searched for, is one of the resolved attributes exposed by this view. It is derived from the PA_LOOKUPS table aliased as PRIORITY_LKP, joining on the priority lookup code stored on the control item. Rather than returning a raw lookup code, the view returns the translated MEANING value, allowing reports and integrations to present priority in business-readable form without additional lookups.
Underlying Base Objects
The view is defined over a substantial join across Projects, Trading Community, and common lookup objects. Documented base objects include PA_CI_ACTIONS (action records), PA_CONTROL_ITEMS (the parent control items), PA_CI_COMMENTS (comments attached to control items), PA_CI_TYPES_VL (control item type definitions), PA_PROJECTS_ALL (project master data), PA_LOOKUPS (Projects lookup meanings and codes), and the FND_LOOKUPS view (used for Yes/No and related common lookups). Party identity is resolved through HZ_PARTIES, and several self-joins against PA_CI_ACTIONS supply related action and source-action context.
Two PL/SQL packages are referenced. PA_CONTROL_ITEMS_UTILS.GET_OBJECT_NAME resolves the referenced object for a control item, and FND_GLOBAL and PA_UTILS are used for session and utility context. The joins enforce consistency: control items link to their type, actions link to their assigned party and control item, and comment rows are attached to both the action and its source. Category codes such as control item type, action type, and status are translated through the respective lookup views.
Key Columns
PRIORITY_DESCRIPTION— Lookup MEANING for the control item priority; the searched attribute.PREDEFINED_FLAG— Flag indicating whether the priority lookup value is seeded (predefined) or user-defined.CONTROL_ITEM— Concatenation of control item type short name and item number.SUBJECT— Summary text of the control item.CI_TYPE_NAMEandCI_TYPE_CLASS_CODE— Type and class of the control item.OBJECT_NAME— Resolved object associated with the control item via PA_CONTROL_ITEMS_UTILS.PROJECT_NAME— Project name concatenated with its segment1 value.ACTION_TYPEandACTION_TYPE_CODE— Translated and code forms of the action type.ASSIGN_NAME/CREATE_NAME— Party names for assigned and creating users.DATE_REQUIRED,DATE_CLOSED— Required and closure dates; the latter is conditional on status.STATUS_CODE— Action status code for filtering.SIGN_OFF_REQUIRED_FLAG/SIGN_OFF_FLAG— Sign-off indicators translated via FND_LOOKUPS.
Common Use Cases and Queries
Typical usage includes action list reporting, aging analysis of open actions, and integration extracts feeding external workflow or notification systems. The view is especially useful when priority must be reported as a description rather than a code.
Retrieve actions with their priority description for a given project:
SELECT control_item, subject, priority_description, status_code, date_requiredFROM apps.pa_ci_actions_vWHERE project_id = :p_project_idORDER BY priority_description, date_required;
Filter open actions by priority meaning and assigned party:
SELECT ci_action_number, subject, priority_description, assign_nameFROM apps.pa_ci_actions_vWHERE priority_description = 'High'AND status_code = 'CI_ACTION_OPEN';
Because the view resolves lookups and party names inline, it reduces join complexity for report developers and provides a consistent source for both 12.1.1 and 12.2.2 environments.
-
View: PA_CI_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_ACTIONS_V, object_name:PA_CI_ACTIONS_V, status:VALID, product: PA - Projects , description: This view provides the atrribute values for Action Lists , implementation_dba_data: APPS.PA_CI_ACTIONS_V ,
-
View: PA_CI_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_ACTIONS_V, object_name:PA_CI_ACTIONS_V, status:VALID, product: PA - Projects , description: This view provides the atrribute values for Action Lists , implementation_dba_data: APPS.PA_CI_ACTIONS_V ,
-
VIEW: APPS.PA_CI_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_ACTIONS_V, object_name:PA_CI_ACTIONS_V, status:VALID,
-
VIEW: APPS.PA_CI_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_ACTIONS_V, object_name:PA_CI_ACTIONS_V, status:VALID,
-
VIEW: APPS.PA_CI_ACTIONS_V
12.1.1
-
VIEW: APPS.PA_CI_ACTIONS_V
12.2.2
-
APPS.PA_CONTROL_ITEMS_WORKFLOW SQL Statements
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_CONTROL_ITEMS_WORKFLOW
12.1.1
-
PACKAGE BODY: APPS.PA_CONTROL_ITEMS_WORKFLOW
12.2.2
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on WF_ENGINE
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on WF_ENGINE
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2