Search Results pa_ci_list_v
Overview
PA_CI_LIST_V is an APPS-owned database view in the Oracle E-Business Suite Projects (PA) module that consolidates project control item (issue) records into a single, denormalized reporting structure. Control items represent project-related issues, action items, change requests, and similar tracked events that require ownership, classification, priority assignment, and resolution. The view joins the core control item transaction table PA_CONTROL_ITEMS to project, status, lookup, currency, and party reference data, and applies the security rules defined in PA_CI_SECURED_V. Its principal role is to serve as the read-only data source behind Oracle Projects control item inquiry screens, Oracle Answers/Daily Business Intelligence (OBIEE) reporting, and custom integrations that must enforce the same security and lookup semantics as the standard application. Because the view resolves foreign keys to their descriptive meanings in-line, it eliminates the need for downstream queries to re-implement the extensive decode logic that Oracle embeds in the underlying form.
Underlying Base Objects
The documented base objects span three functional groupings. Transactional data originates from PA_CONTROL_ITEMS (a synonym), which supplies the CI_ID, CI_NUMBER, summary, description, status, owner, price, source, and date attributes, together with PA_CI_TYPES_B and PA_CI_TYPES_TL for control item type code, class, and translated name/short name. Reference and validation data comes from PA_PROJECTS_ALL, PA_PROJECT_STATUSES, PA_CLASS_CODES, and PA_LOOKUPS/FND_LOOKUPS, which provide project name and number, the project and progress status names and system status codes, resolution and reason class codes, priority and effort-level meanings, and source type meanings. Security and derived data are handled by PA_CI_SECURED_V in conjunction with PA_CI_SECURITY_PKG and FND_GLOBAL, which restrict rows and resolve the current user's security profile; PA_FP_CI_AMOUNTS_V supplies financial-plan amounts; PA_PROJ_ELEMENTS_UTILS resolves the referenced WBS object to its element name, number, and concatenated identifier via GET_ELEMENT_NAME, GET_ELEMENT_NUMBER, and GET_ELEMENT_NAME_NUMBER; HZ_PARTIES resolves owner and closer identities to party names; and FND_CURRENCIES_VL provides currency descriptions. The view therefore layers security enforcement, multi-table decoding, and package-driven derivation over a single control item row.
Key Columns
- PROJECT_ID, SEGMENT1, NAME, PROJECT_STATUS_CODE – Project identifier, number, name, and the project's status code used for filtering and status reporting.
- CI_ID, CI_NUMBER, CI_TYPE_ID, SUMMARY, DESCRIPTION – Control item identity and the core descriptive fields, with CI_TYPE_ID linking to type class and translated type name.
- STATUS_CODE, PROJECT_STATUS_NAME, PROJECT_SYSTEM_STATUS_CODE, MEANING – Control item status plus the resolved project status name and system status meaning for lifecycle reporting.
- OWNER_ID, PARTY_NAME, CLOSED_BY_ID – Owner and closer identities resolved through HZ_PARTIES.
- OBJECT_TYPE, OBJECT_ID and the PA_PROJ_ELEMENTS_UTILS decode columns – The referenced project element and its derived name, number, and name-number label.
- DATE_REQUIRED, DATE_CLOSED, PROGRESS_STATUS_CODE, PROGRESS_AS_OF_DATE – Scheduling and progress tracking attributes, including an age calculation against SYSDATE for open items.
- PRIORITY_CODE, EFFORT_LEVEL_CODE, PRICE, PRICE_CURRENCY_CODE – Priority and effort meanings plus commercial values and currency description.
- RESOLUTION, CLASS_CATEGORY, CLASSIFICATION.CLASS_CODE, REASON.CLASS_CODE – Outcome, categorization, and root-cause classification of the item.
- SOURCE_TYPE_CODE, SOURCE_LKP.MEANING, SOURCE_NUMBER, SOURCE_DATE_RECEIVED – Origin of the control item for traceability.
- CREATE_ACTION_FLAG, UPDATE_FLAG, APPROVAL_REQUIRED_FLAG, RECORD_VERSION_NUMBER – Workflow and concurrency indicators from the secured layer.
Common Use Cases and Queries
The view supports open-item aging reports, ownership dashboards, resolution and root-cause analysis, and integration extracts. Because security is inherited from PA_CI_SECURED_V, queries automatically return only items visible to the connected user. A typical open control item listing is:
SELECT ci_number, name, summary, party_name AS owner,
meaning AS priority, date_required,
TRUNC(date_required) - TRUNC(SYSDATE) AS days_remaining
FROM apps.pa_ci_list_v
WHERE status_code NOT IN ('CI_CLOSED','CI_CANCELED')
AND project_id = :p_project_id
ORDER BY date_required;
For resolution trend analysis:
SELECT TRUNC(date_closed,'MM') AS closed_month,
resolution_class_code, COUNT(*) AS item_count
FROM apps.pa_ci_list_v
WHERE status_code = 'CI_CLOSED'
AND date_closed >= ADD_MONTHS(SYSDATE,-12)
GROUP BY TRUNC(date_closed,'MM'), resolution_class_code
ORDER BY 1,2;
Because several columns are resolved through packages and secured views, performance-sensitive extracts should restrict PROJECT_ID and STATUS_CODE predicates, and callers should avoid wrapping the view in further scalar decodes already performed here.
-
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 ,
-
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 ,
-
SYNONYM: APPS.PA_CI_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_CI_TYPES_TL, status:VALID,
-
PACKAGE: APPS.PA_CI_SECURITY_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CI_SECURITY_PKG, status:VALID,
-
SYNONYM: APPS.PA_CI_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_CI_TYPES_TL, status:VALID,
-
SYNONYM: APPS.PA_CI_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_CI_TYPES_B, status:VALID,
-
PACKAGE: APPS.PA_CI_SECURITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_CI_SECURITY_PKG, status:VALID,
-
VIEW: APPS.PA_CI_SECURED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_SECURED_V, object_name:PA_CI_SECURED_V, status:VALID,
-
SYNONYM: APPS.PA_CI_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_CI_TYPES_B, status:VALID,
-
VIEW: APPS.PA_CI_SECURED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_SECURED_V, object_name:PA_CI_SECURED_V, status:VALID,
-
SYNONYM: APPS.PA_CLASS_CODES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_CLASS_CODES, status:VALID,
-
SYNONYM: APPS.PA_CONTROL_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_CONTROL_ITEMS, status:VALID,
-
SYNONYM: APPS.PA_CLASS_CODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_CLASS_CODES, status:VALID,
-
PACKAGE: APPS.PA_PROJ_ELEMENTS_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_PROJ_ELEMENTS_UTILS, status:VALID,
-
SYNONYM: APPS.PA_CONTROL_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_CONTROL_ITEMS, status:VALID,
-
VIEW: APPS.PA_FP_CI_AMOUNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_CI_AMOUNTS_V, object_name:PA_FP_CI_AMOUNTS_V, status:VALID,
-
PACKAGE: APPS.PA_PROJ_ELEMENTS_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_PROJ_ELEMENTS_UTILS, status:VALID,
-
VIEW: APPS.PA_FP_CI_AMOUNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FP_CI_AMOUNTS_V, object_name:PA_FP_CI_AMOUNTS_V, status:VALID,
-
SYNONYM: APPS.PA_PROJECT_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_STATUSES, status:VALID,
-
SYNONYM: APPS.PA_PROJECT_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_STATUSES, 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: 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,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.PA_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LOOKUPS, object_name:PA_LOOKUPS, status:VALID,
-
VIEW: APPS.PA_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LOOKUPS, object_name:PA_LOOKUPS, status:VALID,
-
APPS.PA_CONTROL_ITEMS_WORKFLOW SQL Statements
12.1.1
-
VIEW: APPS.FND_CURRENCIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_CURRENCIES_VL, object_name:FND_CURRENCIES_VL, status:VALID,
-
VIEW: APPS.FND_CURRENCIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_CURRENCIES_VL, object_name:FND_CURRENCIES_VL, status:VALID,
-
APPS.PA_CONTROL_ITEMS_WORKFLOW SQL Statements
12.2.2
-
SYNONYM: APPS.PA_PROJECTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_ALL, status:VALID,
-
SYNONYM: APPS.PA_PROJECTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_ALL, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on HZ_PARTIES
12.1.1
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on HZ_PARTIES
12.2.2
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on PA_CONTROL_ITEMS
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
APPS.PA_CONTROL_ITEMS_WORKFLOW dependencies on PA_CONTROL_ITEMS
12.2.2
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
PACKAGE BODY: APPS.PA_CONTROL_ITEMS_WORKFLOW
12.1.1
-
PACKAGE BODY: APPS.PA_CONTROL_ITEMS_WORKFLOW
12.2.2
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,