Search Results recvr_org_name
Overview
APPS.PA_CC_EXCEPTIONS_SUM_V is a reporting view in Oracle E-Business Suite that consolidates cross-charging distribution lines that have failed or are pending processing between expenditure subsystems and Oracle Projects. The view surfaces the exceptions generated during the cross-charge transfer process, together with the reasons for the rejection and the recommended corrective action. It draws from distribution lines whose transfer status code falls within the pending, rejected, or error range, and it is intended to give users a single consolidated picture of every applicable transaction that could not be transferred normally.
Because cross-charging involves determining the receiving organization for a cost, the view exposes both the receiving organization identifier and its translated name. The RECVR_ORG_NAME column that users commonly search for is sourced from the organization name translation table, joined to the receiving organization identifier on the expenditure item. A consequence of this join is that the name is filtered by the session language, so the same organization can resolve to different translated names depending on the language environment of the querying session. The null-safe decoding in the join also ensures that rows are not lost when no translated organization name can be found. The view is defined over a union, which merges multiple exception categories into a single result set for consistent reporting and integration consumption.
Underlying Base Objects
The view is defined over the following documented base objects:
- PA_CC_DIST_LINES_ALL — the cross-charge distribution lines, supplying the line number, project and task references, accounting currency, amount, transfer status and rejection codes, and period name.
- PA_EXPENDITURE_ITEMS_ALL — the expenditure items, supplying the receiving organization, the expenditure item identifier and date, expenditure type, and system linkage function.
- PA_EXPENDITURES_ALL — the parent expenditures, supplying the incurred-by person, vendor, and incurred-by organization.
- PA_PROJECTS — supplying the project number (segment1) and operating unit (org_id).
- HR_ALL_ORGANIZATION_UNITS_TL — supplying the translated organization name used for the receiving organization.
- PA_EXCEPTION_REASONS_PUB — a package invoked in the select list to convert the transfer rejection code into readable exception reason and corrective action text.
- XLA_EVENTS — a documented referenced object associated with the subledger accounting event flow.
The tables are joined on expenditure item, expenditure, project, and receiving organization keys. The organization name join is an outer join with language filtering, and the exception text is obtained through a function within the exception reasons package.
Key Columns
PROJECT_ID,PROJECT_NUMBER,TASK_ID,ORG_ID— the project and task context of the exception.RECVR_ORG_ID,RECVR_ORG_NAME— the receiving organization and its translated name.EMPLOYEE_ID,VENDOR_ID,NON_LABOR_ORG_ID— the party and non-labor organization associated with the expenditure.EXPENDITURE_ID,EXPENDITURE_ITEM_ID,EXPENDITURE_ITEM_DATE,EXPENDITURE_TYPE— expenditure detail identifiers and attributes.CDL_LINE_NUM,PA_DATE,ACCT_CURRENCY_CODE,AMOUNT— distribution line and monetary detail.EXCEPTION_REASON,CORRECTIVE_ACTION— decoded text derived from the transfer rejection code.PERIOD_NAME— the PA period associated with the distribution line.
Common Use Cases and Queries
Typical usage is exception reporting for cross-charge processing, resolution of rejected transfers, and feeder queries into reconciliation processes. Analysts commonly filter by receiving organization or project to isolate outstanding exceptions.
- List all rejected cross-charge lines for a project:
SELECT project_number, task_id, recvr_org_name, amount, exception_reason FROM pa_cc_exceptions_sum_v WHERE project_number = :p_project; - Aggregate exceptions by receiving organization:
SELECT recvr_org_name, COUNT(*) exceptions, SUM(amount) amount FROM pa_cc_exceptions_sum_v GROUP BY recvr_org_name; - Locate exceptions pending transfer:
SELECT expenditure_item_id, recvr_org_id, corrective_action FROM pa_cc_exceptions_sum_v WHERE transfer_rejection_code IS NULL;
Because the view joins the translated organization name, queries returning RECVR_ORG_NAME should be executed in the intended language session to obtain the appropriate organization name.
-
VIEW: APPS.PA_CC_EXCEPTIONS_SUM_V
12.2.2
-
View: PA_CC_EXCEPTIONS_DET_MRC_V
12.2.2
product: PA - Projects , description: MRC cross charge distributions that prevent a period from being closed. This view in period close reports. , implementation_dba_data: Not implemented in this database ,
-
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_GL_CC_EXCEPT_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_DET_V, object_name:PA_GL_CC_EXCEPT_DET_V, status:VALID, product: PA - Projects , description: Cross charge distributions in the primary set of books that prevent a period from being closed. This view is used in period close reports. It shows the details of all cross charge distribution lines in the primary set of books that preven , implementation_dba_data: APPS.PA_GL_CC_EXCEPT_DET_V ,
-
View: PA_GL_CC_EXCEPT_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_SUM_V, object_name:PA_GL_CC_EXCEPT_SUM_V, status:VALID, product: PA - Projects , description: Summary of cross charge distributions that prevent a period from being closed. This view is used in period close reports. It shows a summary all cross charge distribution lines that prevent closing a period. , implementation_dba_data: APPS.PA_GL_CC_EXCEPT_SUM_V ,
-
View: PA_GL_CC_EXCEPT_DET_MRC_V
12.1.1
product: PA - Projects , description: MRC cross charge distributions that prevent a period from being closed. This view is used in period close reports. It shows the details of all MRC cross charge distribution lines that prevent closing a period. , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: PA_CC_EXCEPTIONS_SUM_MRC_V
12.1.1
product: PA - Projects , description: This view is used in period close reports. It shows all cross charge distribution lines that prevent closing a period , implementation_dba_data: Not implemented in this database ,
-
View: PA_CC_EXCEPTIONS_DET_MRC_V
12.1.1
product: PA - Projects , description: MRC cross charge distributions that prevent a period from being closed. This view in period close reports. , implementation_dba_data: Not implemented in this database ,
-
View: PA_GL_CC_EXCEPT_SUM_MRC_V
12.1.1
product: PA - Projects , description: Summary of MRC cross charge distributions that prevent a period from being closed. This view is used in period close reports. It shows a summary all MRC cross charge distribution lines that prevent closing a period. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_CC_EXCEPTIONS_SUM_V
12.1.1
-
View: PA_GL_CC_EXCEPT_DET_MRC_V
12.2.2
product: PA - Projects , description: MRC cross charge distributions that prevent a period from being closed. This view is used in period close reports. It shows the details of all MRC cross charge distribution lines that prevent closing a period. , implementation_dba_data: Not implemented in this database ,
-
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_GL_CC_EXCEPT_DET_V
12.1.1
-
View: PA_GL_CC_EXCEPT_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_DET_V, object_name:PA_GL_CC_EXCEPT_DET_V, status:VALID, product: PA - Projects , description: Cross charge distributions in the primary set of books that prevent a period from being closed. This view is used in period close reports. It shows the details of all cross charge distribution lines in the primary set of books that preven , implementation_dba_data: APPS.PA_GL_CC_EXCEPT_DET_V ,
-
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_SUM_MRC_V
12.2.2
product: PA - Projects , description: This view is used in period close reports. It shows all cross charge distribution lines that prevent closing a period , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_RECVR_CC_ORG_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RECVR_CC_ORG_REL_V, object_name:PA_RECVR_CC_ORG_REL_V, status:VALID,
-
VIEW: APPS.PA_CC_EXCEPTIONS_DET_V
12.2.2
-
View: PA_GL_CC_EXCEPT_SUM_MRC_V
12.2.2
product: PA - Projects , description: Summary of MRC cross charge distributions that prevent a period from being closed. This view is used in period close reports. It shows a summary all MRC cross charge distribution lines that prevent closing a period. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_GL_CC_EXCEPT_SUM_V
12.2.2
-
VIEW: APPS.PA_GL_CC_EXCEPT_DET_V
12.2.2
-
View: PA_GL_CC_EXCEPT_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_SUM_V, object_name:PA_GL_CC_EXCEPT_SUM_V, status:VALID, product: PA - Projects , description: Summary of cross charge distributions that prevent a period from being closed. This view is used in period close reports. It shows a summary all cross charge distribution lines that prevent closing a period. , implementation_dba_data: APPS.PA_GL_CC_EXCEPT_SUM_V ,
-
VIEW: APPS.PA_CC_EXCEPTIONS_DET_V
12.1.1
-
VIEW: APPS.PA_GL_CC_EXCEPT_SUM_V
12.1.1
-
VIEW: APPS.PA_RECVR_CC_ORG_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RECVR_CC_ORG_REL_V, object_name:PA_RECVR_CC_ORG_REL_V, 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.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,
-
VIEW: APPS.PA_GL_CC_EXCEPT_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_SUM_V, object_name:PA_GL_CC_EXCEPT_SUM_V, status:VALID,
-
View: PA_RECVR_CC_ORG_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RECVR_CC_ORG_REL_V, object_name:PA_RECVR_CC_ORG_REL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RECVR_CC_ORG_REL_V ,
-
VIEW: APPS.PA_GL_CC_EXCEPT_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_SUM_V, object_name:PA_GL_CC_EXCEPT_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,
-
VIEW: APPS.PA_GL_CC_EXCEPT_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_DET_V, object_name:PA_GL_CC_EXCEPT_DET_V, status:VALID,
-
VIEW: APPS.PA_CC_BL_CUR_SEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_BL_CUR_SEL_V, object_name:PA_CC_BL_CUR_SEL_V, status:VALID,
-
VIEW: APPS.PA_GL_CC_EXCEPT_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_CC_EXCEPT_DET_V, object_name:PA_GL_CC_EXCEPT_DET_V, status:VALID,
-
View: PA_RECVR_CC_ORG_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RECVR_CC_ORG_REL_V, object_name:PA_RECVR_CC_ORG_REL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RECVR_CC_ORG_REL_V ,
-
VIEW: APPS.PA_CC_BL_CUR_SEL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_BL_CUR_SEL_V, object_name:PA_CC_BL_CUR_SEL_V, status:VALID,
-
View: PA_CC_BL_CUR_SEL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_BL_CUR_SEL_V, object_name:PA_CC_BL_CUR_SEL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CC_BL_CUR_SEL_V ,
-
View: PA_CC_BL_CUR_SEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CC_BL_CUR_SEL_V, object_name:PA_CC_BL_CUR_SEL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CC_BL_CUR_SEL_V ,
-
VIEW: APPS.PA_CC_BL_CUR_SEL_V
12.2.2
-
VIEW: APPS.PA_CC_BL_CUR_SEL_V
12.1.1
-
View: PA_EXPEND_ITEMS_ADJUST2_MRC_V
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXPENDITURE_ITEMS_ONLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_ITEMS_ONLINE_V, object_name:PA_EXPENDITURE_ITEMS_ONLINE_V, status:VALID, product: PA - Projects , description: This view shows all expenditure items , implementation_dba_data: APPS.PA_EXPENDITURE_ITEMS_ONLINE_V ,
-
View: PA_EXPEND_ITEMS_ADJUST2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPEND_ITEMS_ADJUST2_V, object_name:PA_EXPEND_ITEMS_ADJUST2_V, status:VALID, product: PA - Projects , description: 11i Only , implementation_dba_data: APPS.PA_EXPEND_ITEMS_ADJUST2_V ,
-
View: PA_EXPEND_ITEMS_ADJUST2_MRC_V
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXPEND_ITEMS_ADJUST2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPEND_ITEMS_ADJUST2_V, object_name:PA_EXPEND_ITEMS_ADJUST2_V, status:VALID, product: PA - Projects , description: 11i Only , implementation_dba_data: APPS.PA_EXPEND_ITEMS_ADJUST2_V ,
-
VIEW: APPS.PA_EXPENDITURE_ITEMS_ONLINE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:PA_EXPENDITURE_ITEMS_ONLINE_V, status:VALID,
-
VIEW: APPS.PA_EXPEND_ITEMS_ADJUST2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPEND_ITEMS_ADJUST2_V, object_name:PA_EXPEND_ITEMS_ADJUST2_V, status:VALID,
-
VIEW: APPS.PA_EXPENDITURE_ITEMS_ONLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_ITEMS_ONLINE_V, object_name:PA_EXPENDITURE_ITEMS_ONLINE_V, status:VALID,