Search Results pa_cc_exceptions_sum_v
Overview
PA_CC_EXCEPTIONS_SUM_V is an APPS-owned database view in the Oracle E-Business Suite Projects (PA) module. It exposes cross charge distributions that prevent an accounting period from being closed. Cross charges arise when costs incurred by one organization are shared with, or transferred to, another organization within the enterprise; when a cross charge distribution carries a transfer status of Pending, Rejected, or an equivalent non-final state, the resulting distribution blocks period close. This view isolates exactly those blocking rows so that period close reports and reconciliation processes can surface them to the user.
Because the view aggregates exception-relevant attributes from distribution, expenditure, project, and organization data, it serves as a consolidated reporting surface. Rather than requiring the report to join the underlying transactional tables itself, the view pre-assembles project identity, receiving organization, expenditure detail, distribution amount, and human-readable exception text. This makes it suitable both for the standard period close exception reports and for ad hoc diagnostics during the close cycle. The object is documented as VALID in the ETRM 12.2.2 metadata and is intended for read-only query access.
Underlying Base Objects
The view is defined over several synonym-backed base tables and one PL/SQL package. The documented referenced objects are PA_CC_DIST_LINES_ALL (the cross charge distribution lines driving exception status), PA_EXPENDITURE_ITEMS_ALL (the expenditure item detail), PA_EXPENDITURES_ALL (the expenditure header), PA_PROJECTS (project number and organization), HR_ALL_ORGANIZATION_UNITS_TL (receiving organization name, joined in translation), XLA_EVENTS, and the PA_EXCEPTION_REASONS_PUB package. The distribution lines are joined to expenditure items on EXPENDITURE_ITEM_ID, expenditure items to expenditures on EXPENDITURE_ID, and distributions to projects on PROJECT_ID. The receiving organization is resolved through a non-enforcing outer join to HR_ALL_ORGANIZATION_UNITS_TL, with a language predicate aligning the translation row to the session language.
Critically, the view filters the distribution lines on TRANSFER_STATUS_CODE IN ('P','R','X'), which is what restricts the result set to distributions that block period close. The exception reason and corrective action columns are not stored values; they are produced by calling PA_EXCEPTION_REASONS_PUB.GET_EXCEPTION_TEXT with the exception context 'CC_EXCP', the TRANSFER_REJECTION_CODE, and a mode indicator of 'R' (reason) or 'A' (action).
Key Columns
- PROJECT_ID / PROJECT_NUMBER — Identifier and formatted number of the project that incurred the cross charge.
- TASK_ID — Task associated with the distribution line, where applicable.
- RECVR_ORG_ID / RECVR_ORG_NAME — Identifier and translated name of the receiving organization.
- EMPLOYEE_ID / VENDOR_ID / NON_LABOR_ORG_ID — Incurred-by person and vendor/organization attributes identifying who or what originated the cost.
- EXPENDITURE_ID / EXPENDITURE_ITEM_ID — Links to the originating expenditure and expenditure item.
- EXPENDITURE_ITEM_DATE / EXPENDITURE_TYPE — Date and classification of the expenditure item.
- CDL_LINE_NUM, PA_DATE, ACCT_CURRENCY_CODE, AMOUNT — Distribution line number, accounting date, currency, and distribution amount.
- EXCEPTION_REASON / CORRECTIVE_ACTION — Derived text explaining why the distribution blocks close and how to resolve it.
- EXCEPTION_CODE — The raw rejection code, or the transfer status code when no rejection code exists.
- PERIOD_NAME — The PA period the distribution belongs to, central to period close reporting.
Common Use Cases and Queries
The primary use case is the period close exception report: identifying every cross charge distribution that must be resolved before a period can be closed. A user may also run targeted queries by project or organization to investigate a specific hold.
- List all blocking exceptions for a period:
SELECT project_number, task_id, recvr_org_name, expenditure_item_date, amount, exception_reason, corrective_action FROM pa_cc_exceptions_sum_v WHERE period_name = :period; - Filter to a single project:
SELECT * FROM pa_cc_exceptions_sum_v WHERE project_number = :project_number; - Summarize exceptions by receiving organization:
SELECT recvr_org_name, COUNT(*), SUM(amount) FROM pa_cc_exceptions_sum_v GROUP BY recvr_org_name;
Because the view already filters to non-final transfer statuses, queries need not repeat the status predicate, though callers may add one on EXCEPTION_CODE for finer control. All access should be read-only through the APPS schema.
-
View: PA_CC_EXCEPTIONS_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_SUM_V, object_name:PA_CC_EXCEPTIONS_SUM_V, status:VALID, product: PA - Projects , description: Cross charge distributions that prevent a period from being closed.This view is used in period close reports. , implementation_dba_data: APPS.PA_CC_EXCEPTIONS_SUM_V ,
-
View: PA_CC_EXCEPTIONS_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_SUM_V, object_name:PA_CC_EXCEPTIONS_SUM_V, status:VALID, product: PA - Projects , description: Cross charge distributions that prevent a period from being closed.This view is used in period close reports. , implementation_dba_data: APPS.PA_CC_EXCEPTIONS_SUM_V ,
-
VIEW: APPS.PA_CC_EXCEPTIONS_DET_V
12.1.1
-
VIEW: APPS.PA_CC_EXCEPTIONS_DET_V
12.2.2
-
PACKAGE: APPS.PA_EXCEPTION_REASONS_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_EXCEPTION_REASONS_PUB, status:VALID,
-
SYNONYM: APPS.PA_CC_DIST_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_CC_DIST_LINES_ALL, status:VALID,
-
PACKAGE: APPS.PA_EXCEPTION_REASONS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_EXCEPTION_REASONS_PUB, status:VALID,
-
SYNONYM: APPS.PA_CC_DIST_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_CC_DIST_LINES_ALL, status:VALID,
-
View: PA_CC_EXCEPTIONS_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_DET_V, object_name:PA_CC_EXCEPTIONS_DET_V, status:VALID, product: PA - Projects , description: This view is in period close reports. It shows the details of all cross charge distribution lines that prevent closing a period , implementation_dba_data: APPS.PA_CC_EXCEPTIONS_DET_V ,
-
View: PA_CC_EXCEPTIONS_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_DET_V, object_name:PA_CC_EXCEPTIONS_DET_V, status:VALID, product: PA - Projects , description: This view is in period close reports. It shows the details of all cross charge distribution lines that prevent closing a period , implementation_dba_data: APPS.PA_CC_EXCEPTIONS_DET_V ,
-
SYNONYM: APPS.PA_EXPENDITURES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURES_ALL, status:VALID,
-
VIEW: APPS.PA_CC_EXCEPTIONS_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_DET_V, object_name:PA_CC_EXCEPTIONS_DET_V, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURES_ALL, status:VALID,
-
VIEW: APPS.PA_CC_EXCEPTIONS_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_SUM_V, object_name:PA_CC_EXCEPTIONS_SUM_V, status:VALID,
-
VIEW: APPS.PA_CC_EXCEPTIONS_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_SUM_V, object_name:PA_CC_EXCEPTIONS_SUM_V, status:VALID,
-
VIEW: APPS.PA_CC_EXCEPTIONS_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_EXCEPTIONS_DET_V, object_name:PA_CC_EXCEPTIONS_DET_V, status:VALID,
-
SYNONYM: APPS.XLA_EVENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLA_EVENTS, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_ITEMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_ITEMS_ALL, status:VALID,
-
SYNONYM: APPS.PA_PROJECTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS, status:VALID,
-
SYNONYM: APPS.PA_PROJECTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_ITEMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_ITEMS_ALL, 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
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2