Search Results pa_txn_accum
Overview
The PA_TXN_ACCUM table is a core data structure within the Oracle E-Business Suite Projects (PA) module, specifically in versions 12.1.1 and 12.2.2. As documented, it represents the lowest level of summarized transaction record used in project summary amounts. Its primary role is to serve as a performance-optimized, aggregated repository for project-related financial and resource transactions. This table is critical for the efficient calculation and reporting of project performance metrics, such as cost, revenue, and budget-to-actual comparisons, by storing pre-summarized data that feeds higher-level summary reports and inquiries.
Key Information Stored
While the provided metadata does not list specific columns, the table's description and primary key indicate its fundamental structure. The primary key column, TXN_ACCUM_ID, uniquely identifies each summarized transaction record. Based on its role, the table typically contains aggregated amounts categorized by key project dimensions. Common columns in such accumulation tables include project ID, task ID, expenditure type, organization ID, period name, and a set of amount columns (e.g., raw cost, burdened cost, revenue, quantity). The data is summarized from source transaction tables like PA_EXPENDITURE_ITEMS_ALL to facilitate rapid retrieval for summary reporting.
Common Use Cases and Queries
The primary use case for PA_TXN_ACCUM is generating project summary reports and populating summary regions in project inquiry forms. Financial analysts and project managers rely on the data in this table for real-time performance dashboards. A typical query pattern involves joining to project and task tables to retrieve summarized financial data for a specific project or period.
Sample SQL Pattern:
SELECT pt.project_id,
SUM(pt.raw_cost) total_raw_cost,
SUM(pt.burdened_cost) total_burdened_cost
FROM pa.pa_txn_accum pt,
pa.pa_projects_all pp
WHERE pt.project_id = pp.project_id
AND pp.segment1 = 'PROJ123'
AND pt.period_name = 'JAN-2024'
GROUP BY pt.project_id;
Direct manipulation of this table is not standard practice; data is populated and maintained by Oracle's summary generation processes, such as the "Summarize Project Amounts" concurrent program.
Related Objects
The PA_TXN_ACCUM table sits at the center of the project summary architecture, with several key dependencies as documented in the foreign key metadata.
- PA_RESOURCE_ACCUM_DETAILS: References PA_TXN_ACCUM via the foreign key column PA_RESOURCE_ACCUM_DETAILS.TXN_ACCUM_ID. This table holds detailed resource assignment information linked to the summarized transaction.
- PA_TXN_ACCUM_DETAILS: References PA_TXN_ACCUM via the foreign key column PA_TXN_ACCUM_DETAILS.TXN_ACCUM_ID. This table provides further granular detail for each summarized transaction record.
These relationships indicate a hierarchical data model where PA_TXN_ACCUM stores the core summary, and the related detail tables provide supporting information. The table is also the likely source for numerous project summary views within the application.
-
Table: PA_TXN_ACCUM
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TXN_ACCUM, object_name:PA_TXN_ACCUM, status:VALID, product: PA - Projects , description: Lowest level of summarized transaction record used in project summary amounts , implementation_dba_data: PA.PA_TXN_ACCUM ,
-
Table: PA_TXN_ACCUM
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TXN_ACCUM, object_name:PA_TXN_ACCUM, status:VALID, product: PA - Projects , description: Lowest level of summarized transaction record used in project summary amounts , implementation_dba_data: PA.PA_TXN_ACCUM ,
-
Table: PA_RESOURCE_ACCUM_DETAILS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RESOURCE_ACCUM_DETAILS, object_name:PA_RESOURCE_ACCUM_DETAILS, status:VALID, product: PA - Projects , description: Information on how a PA_TXN_ACCUM record was mapped to a resource list member , implementation_dba_data: PA.PA_RESOURCE_ACCUM_DETAILS ,
-
Table: PA_RESOURCE_ACCUM_DETAILS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RESOURCE_ACCUM_DETAILS, object_name:PA_RESOURCE_ACCUM_DETAILS, status:VALID, product: PA - Projects , description: Information on how a PA_TXN_ACCUM record was mapped to a resource list member , implementation_dba_data: PA.PA_RESOURCE_ACCUM_DETAILS ,
-
Table: PA_TXN_ACCUM_DETAILS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TXN_ACCUM_DETAILS, object_name:PA_TXN_ACCUM_DETAILS, status:VALID, product: PA - Projects , description: Drilldown information from PA_TXN_ACCUM to cost, revenue, and event revenue distribution lines, and to commitments , implementation_dba_data: PA.PA_TXN_ACCUM_DETAILS ,
-
Table: PA_TXN_ACCUM_DETAILS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TXN_ACCUM_DETAILS, object_name:PA_TXN_ACCUM_DETAILS, status:VALID, product: PA - Projects , description: Drilldown information from PA_TXN_ACCUM to cost, revenue, and event revenue distribution lines, and to commitments , implementation_dba_data: PA.PA_TXN_ACCUM_DETAILS ,
-
View: PA_STATUS_RSRC_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EI_BASE_V, object_name:PA_STATUS_RSRC_EI_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_EI_BASE_V ,
-
View: PA_STATUS_TASK_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EI_BASE_V, object_name:PA_STATUS_TASK_EI_BASE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_TASK_EI_BASE_V ,
-
View: PA_STATUS_TASK_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EI_BASE_V, object_name:PA_STATUS_TASK_EI_BASE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_TASK_EI_BASE_V ,
-
View: PA_STATUS_RSRC_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EI_BASE_V, object_name:PA_STATUS_RSRC_EI_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_EI_BASE_V ,
-
View: PA_STATUS_TASK_EV_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EV_BASE_V, object_name:PA_STATUS_TASK_EV_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_TASK_EV_BASE_V ,
-
View: PA_STATUS_RSRC_EV_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EV_BASE_V, object_name:PA_STATUS_RSRC_EV_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_EV_BASE_V ,
-
View: PA_CMT_BY_PA_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BY_PA_PERIOD_V, object_name:PA_CMT_BY_PA_PERIOD_V, status:VALID, product: PA - Projects , description: This view displays current commitment totals for lowest level tasks and resources by PA periods. , implementation_dba_data: APPS.PA_CMT_BY_PA_PERIOD_V ,
-
View: PA_STATUS_TASK_EV_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EV_BASE_V, object_name:PA_STATUS_TASK_EV_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_TASK_EV_BASE_V ,
-
View: PA_CMT_BY_GL_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BY_GL_PERIOD_V, object_name:PA_CMT_BY_GL_PERIOD_V, status:VALID, product: PA - Projects , description: This view displays current commitment totals for lowest level tasks and resources by GL periods. , implementation_dba_data: APPS.PA_CMT_BY_GL_PERIOD_V ,
-
View: PA_CMT_BY_PA_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BY_PA_PERIOD_V, object_name:PA_CMT_BY_PA_PERIOD_V, status:VALID, product: PA - Projects , description: This view displays current commitment totals for lowest level tasks and resources by PA periods. , implementation_dba_data: APPS.PA_CMT_BY_PA_PERIOD_V ,
-
View: PA_STATUS_RSRC_EV_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EV_BASE_V, object_name:PA_STATUS_RSRC_EV_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_EV_BASE_V ,
-
View: PA_BURDEN_COMPONENT_CMT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BURDEN_COMPONENT_CMT_V, object_name:PA_BURDEN_COMPONENT_CMT_V, status:VALID, product: PA - Projects , description: This view displays commitment burden components for each transaction , implementation_dba_data: APPS.PA_BURDEN_COMPONENT_CMT_V ,
-
View: PA_CMT_BY_GL_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BY_GL_PERIOD_V, object_name:PA_CMT_BY_GL_PERIOD_V, status:VALID, product: PA - Projects , description: This view displays current commitment totals for lowest level tasks and resources by GL periods. , implementation_dba_data: APPS.PA_CMT_BY_GL_PERIOD_V ,
-
View: PA_PROJ_CCREV_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_CCREV_COST_V, object_name:PA_PROJ_CCREV_COST_V, status:VALID, product: PA - Projects , description: PA_PROJ_CCREV_COST_V is a view that summarizes the burdened cost for use in cost-to-cost revenue calculation. , implementation_dba_data: APPS.PA_PROJ_CCREV_COST_V ,
-
View: PA_PROJ_CCREV_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_CCREV_COST_V, object_name:PA_PROJ_CCREV_COST_V, status:VALID, product: PA - Projects , description: PA_PROJ_CCREV_COST_V is a view that summarizes the burdened cost for use in cost-to-cost revenue calculation. , implementation_dba_data: APPS.PA_PROJ_CCREV_COST_V ,
-
View: PA_BURDEN_COMPONENT_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BURDEN_COMPONENT_COST_V, object_name:PA_BURDEN_COMPONENT_COST_V, status:VALID, product: PA - Projects , description: This view displays actual burden components for each transaction , implementation_dba_data: APPS.PA_BURDEN_COMPONENT_COST_V ,
-
View: PA_ACT_BY_PA_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_PA_PERIOD_V, object_name:PA_ACT_BY_PA_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by PA period. , implementation_dba_data: APPS.PA_ACT_BY_PA_PERIOD_V ,
-
View: PA_BURDEN_COMPONENT_CMT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BURDEN_COMPONENT_CMT_V, object_name:PA_BURDEN_COMPONENT_CMT_V, status:VALID, product: PA - Projects , description: This view displays commitment burden components for each transaction , implementation_dba_data: APPS.PA_BURDEN_COMPONENT_CMT_V ,
-
View: PA_BURDEN_COMPONENT_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BURDEN_COMPONENT_COST_V, object_name:PA_BURDEN_COMPONENT_COST_V, status:VALID, product: PA - Projects , description: This view displays actual burden components for each transaction , implementation_dba_data: APPS.PA_BURDEN_COMPONENT_COST_V ,
-
View: PA_ACT_BY_GL_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_GL_PERIOD_V, object_name:PA_ACT_BY_GL_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by GL period. , implementation_dba_data: APPS.PA_ACT_BY_GL_PERIOD_V ,
-
View: PA_ACT_BY_PA_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_PA_PERIOD_V, object_name:PA_ACT_BY_PA_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by PA period. , implementation_dba_data: APPS.PA_ACT_BY_PA_PERIOD_V ,
-
View: PA_RETIREMENT_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RETIREMENT_COSTS_V, object_name:PA_RETIREMENT_COSTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RETIREMENT_COSTS_V ,
-
View: PA_ADW_ACT_CMT_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_ACT_CMT_B_V, object_name:PA_ADW_ACT_CMT_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_ACT_CMT_B_V ,
-
View: PA_ACT_BY_GL_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_GL_PERIOD_V, object_name:PA_ACT_BY_GL_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by GL period. , implementation_dba_data: APPS.PA_ACT_BY_GL_PERIOD_V ,
-
View: PA_ADW_ACT_CMT_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_ACT_CMT_B_V, object_name:PA_ADW_ACT_CMT_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_ACT_CMT_B_V ,
-
View: PA_RETIREMENT_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RETIREMENT_COSTS_V, object_name:PA_RETIREMENT_COSTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RETIREMENT_COSTS_V ,
-
View: PA_TXN_ACCUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID, product: PA - Projects , description: This view displays detail information for a given transaction by various transaction attributes , implementation_dba_data: APPS.PA_TXN_ACCUM_V ,
-
View: PA_ADW_R_ST_ACT_CMT_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_R_ST_ACT_CMT_B_V, object_name:PA_ADW_R_ST_ACT_CMT_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_R_ST_ACT_CMT_B_V ,
-
View: PA_ADW_R_ST_ACT_CMT_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_R_ST_ACT_CMT_B_V, object_name:PA_ADW_R_ST_ACT_CMT_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_R_ST_ACT_CMT_B_V ,
-
View: PA_ADW_R_ACT_CMT_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_R_ACT_CMT_B_V, object_name:PA_ADW_R_ACT_CMT_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_R_ACT_CMT_B_V ,
-
View: PA_TXN_ACCUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID, product: PA - Projects , description: This view displays detail information for a given transaction by various transaction attributes , implementation_dba_data: APPS.PA_TXN_ACCUM_V ,
-
View: PA_ADW_R_ACT_CMT_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_R_ACT_CMT_B_V, object_name:PA_ADW_R_ACT_CMT_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_R_ACT_CMT_B_V ,
-
View: PA_ALLOC_TXN_ACCUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_TXN_ACCUM_V, object_name:PA_ALLOC_TXN_ACCUM_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_TXN_ACCUM_V ,
-
View: PA_ALLOC_TXN_ACCUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ALLOC_TXN_ACCUM_V, object_name:PA_ALLOC_TXN_ACCUM_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ALLOC_TXN_ACCUM_V ,
-
View: PA_CAPITAL_PROJECTS_WBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CAPITAL_PROJECTS_WBS_V, object_name:PA_CAPITAL_PROJECTS_WBS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CAPITAL_PROJECTS_WBS_V ,
-
View: PA_CAPITAL_PROJECTS_WBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CAPITAL_PROJECTS_WBS_V, object_name:PA_CAPITAL_PROJECTS_WBS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CAPITAL_PROJECTS_WBS_V ,
-
View: PA_CAPITAL_PROJECTS_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CAPITAL_PROJECTS_BASE_V, object_name:PA_CAPITAL_PROJECTS_BASE_V, status:VALID, product: PA - Projects , description: R10SC Only -Base view that shows summary capital amounts for a project , implementation_dba_data: APPS.PA_CAPITAL_PROJECTS_BASE_V ,
-
View: PA_CAPITAL_PROJECTS_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CAPITAL_PROJECTS_BASE_V, object_name:PA_CAPITAL_PROJECTS_BASE_V, status:VALID, product: PA - Projects , description: R10SC Only -Base view that shows summary capital amounts for a project , implementation_dba_data: APPS.PA_CAPITAL_PROJECTS_BASE_V ,