Search Results classification_description
Overview
APPS.PA_RELATED_ITEMS_V is a seeded Oracle Projects view that presents a consolidated, security-filtered listing of control items ("related items") associated with a project. Within Oracle EBS 12.1.1 and 12.2.2, control items represent project-related records that require tracking through a controlled lifecycle — for example, change requests, issues, deliverables, action items, and other controlled entities defined by the project's control item types. The view joins project data, control item data, control item type definitions, owner party information, status codes, and classification/reason lookups into a single denormalized result set.
The view is designated Oracle Internal Use Only in the ETRM documentation. Oracle Corporation does not support direct access to applications data through this object except from standard Oracle Applications programs. In practice it is surfaced through Oracle Projects forms, HTML-based pages, and Oracle Business Intelligence/XML Publisher reports that list related items for a project. Its status is VALID, and the underlying FND design data is registered as PA.PA_RELATED_ITEMS_V.
Underlying Base Objects
The ETRM dependency listing documents that PA_RELATED_ITEMS_V references the following objects:
- PA_CONTROL_ITEMS — the primary transactional table holding control item records (CI_ID, CI_NUMBER, SUMMARY, status, owner, and object association).
- PA_CI_TYPES_B and PA_CI_TYPES_TL — control item type base and translation tables, supplying CI_TYPE_NAME, CI_TYPE_SHORT_NAME, and CI_TYPE_NUMBER.
- PA_CLASS_CODES — classification and reason code descriptions.
- PA_PROJECTS_ALL — project header data used to derive PROJECT_NAME_NUMBER.
- PA_PROJECT_STATUSES — status code and description resolution.
- HZ_PARTIES — party information used to resolve OWNER_NAME.
- PA_CI_SECURITY_PKG and PA_PROJ_ELEMENTS_UTILS — PL/SQL packages invoked for security filtering and project element derivation.
The view is not referenced by any other database object, confirming its role as a reporting endpoint rather than a building block for further dependent views.
Key Columns
- PROJECT_ID / PROJECT_NAME_NUMBER — the owning project and its concatenated name/number identifier.
- CI_ID / CI_NUMBER / SUMMARY — the control item identifier, user-visible number, and descriptive summary.
- CI_TYPE_ID / CI_TYPE_NAME / CI_TYPE_SHORT_NAME / CI_TYPE_NUMBER — the control item type designation. CI_TYPE_NUMBER is the column most commonly targeted when users search on "ci_type_number"; it is a VARCHAR2(132) attribute carrying the type's numeric or coded identifier.
- CI_TYPE_CLASS_CODE — class of the control item type.
- STATUS_CODE / STATUS_DESCRIPTION / SYSTEM_STATUS_CODE — workflow-facing status values and their descriptive equivalents.
- OWNER_ID / OWNER_NAME — the party or resource responsible for the control item.
- OBJECT_TYPE / OBJECT_ID / OBJECT_NAME — the parent or related object the control item is linked to.
- CLASSIFICATION_DESCRIPTION / REASON_DESCRIPTION — decoded lookup values from PA_CLASS_CODES.
- RECORD_VERSION_NUMBER — optimistic locking/versioning attribute.
Common Use Cases and Queries
Typical usage includes project manager dashboards listing open control items, integration extracts feeding external issue-tracking systems, and ad hoc reporting to locate a control item by its type number. A representative query filtering on ci_type_number is:
SELECT project_name_number
, ci_number
, ci_type_name
, ci_type_number
, summary
, status_description
, owner_name
FROM apps.pa_related_items_v
WHERE ci_type_number = :p_ci_type_number
AND project_id = :p_project_id;
A broader project-level listing can be produced with:
SELECT ci_number
, ci_type_short_name
, ci_type_number
, summary
, status_description
, object_name
, record_version_number
FROM apps.pa_related_items_v
WHERE project_id = :p_project_id
ORDER BY ci_type_number, ci_number;
Because security filtering is applied through PA_CI_SECURITY_PKG, results are automatically restricted to the control items the querying user is permitted to see. Access should be limited to supported Oracle Applications programs.
-
VIEW: APPS.PA_RELATED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RELATED_ITEMS_V, object_name:PA_RELATED_ITEMS_V, status:VALID,
-
VIEW: APPS.PA_RELATED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RELATED_ITEMS_V, object_name:PA_RELATED_ITEMS_V, status:VALID,
-
VIEW: APPS.PA_CI_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID,
-
View: PA_RELATED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RELATED_ITEMS_V, object_name:PA_RELATED_ITEMS_V, status:VALID, product: PA - Projects , description: This view provides all the control items which can be included. , implementation_dba_data: APPS.PA_RELATED_ITEMS_V ,
-
View: PA_RELATED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RELATED_ITEMS_V, object_name:PA_RELATED_ITEMS_V, status:VALID, product: PA - Projects , description: This view provides all the control items which can be included. , implementation_dba_data: APPS.PA_RELATED_ITEMS_V ,
-
VIEW: APPS.PA_CI_BASIC_CTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID,
-
VIEW: APPS.PA_CI_BASIC_CTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID,
-
VIEW: APPS.PA_CI_CRPRJ_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID,
-
VIEW: APPS.PA_CI_CRPRJ_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID,
-
VIEW: APPS.PA_CI_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID,
-
View: PA_CI_CRPRJ_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_CRPRJ_LIST_V ,
-
View: PA_CI_BASIC_CTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_BASIC_CTL_V ,
-
View: PA_CI_BASIC_CTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_BASIC_CTL_V ,
-
View: PA_CI_CRPRJ_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_CRPRJ_LIST_V, object_name:PA_CI_CRPRJ_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_CRPRJ_LIST_V ,
-
View: PA_CI_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_LIST_V ,
-
View: PA_CI_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_LIST_V, object_name:PA_CI_LIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_LIST_V ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2