Search Results pa_cost_distribution_lines_all
Overview
The PA_COST_DISTRIBUTION_LINES_ALL table is a core transactional table within Oracle E-Business Suite Projects (PA) module, specifically for releases 12.1.1 and 12.2.2. It serves as the central repository for detailed cost accounting distributions generated from project-related expenditures. When an expenditure item is processed—whether from labor, supplier invoices, or other sources—the system creates one or more records in this table to represent the financial impact across projects, tasks, and accounts. Its primary role is to capture the fully burdened cost distribution, including raw cost, burden cost, and revenue, and to serve as the critical link between project expenditures and the General Ledger (GL). The table supports multi-organization architecture, as indicated by the '_ALL' suffix and the ORG_ID column.
Key Information Stored
The table stores comprehensive distribution details for each cost line. Its primary key is a composite of LINE_NUM and EXPENDITURE_ITEM_ID, ensuring uniqueness for multiple distributions from a single expenditure. Key columns include EXPENDITURE_ITEM_ID, linking to the source transaction in PA_EXPENDITURE_ITEMS_ALL, and PROJECT_ID and TASK_ID for project accounting. Financial accounting is facilitated by DR_CODE_COMBINATION_ID and CR_CODE_COMBINATION_ID, which reference GL_CODE_COMBINATIONS for debit and credit entries. Currency conversion data is held in ACCT_CURRENCY_CODE, PROJECT_CURRENCY_CODE, ACCT_RATE_TYPE, and PROJECT_RATE_TYPE. The table also tracks reversal relationships via LINE_NUM_REVERSED and integrates with other modules through SYSTEM_REFERENCE columns, which can link to records in AP_INVOICE_DISTRIBUTIONS_ALL or PO_VENDORS.
Common Use Cases and Queries
A primary use case is tracing the complete accounting distribution of project costs for financial reporting and audit trails. Analysts frequently query this table to reconcile project costs with General Ledger entries or to analyze cost accumulation by project and task. Another critical scenario involves investigating integration issues, such as matching invoice distributions from Payables to their corresponding project cost distributions. Common SQL patterns include joining to related project and financial tables.
- Cost Summary by Project:
SELECT pcd.project_id, ppa.segment1 project_number, SUM(pcd.raw_cost) total_raw_cost FROM pa_cost_distribution_lines_all pcd JOIN pa_projects_all ppa ON pcd.project_id = ppa.project_id GROUP BY pcd.project_id, ppa.segment1; - Distributions for a Specific Expenditure Item:
SELECT * FROM pa_cost_distribution_lines_all WHERE expenditure_item_id = &exp_item_id ORDER BY line_num; - GL Reconciliation: Queries often join this table to GL_JE_LINES via the code combination IDs and reference columns to ensure all project costs have been properly transferred to the ledger.
Related Objects
PA_COST_DISTRIBUTION_LINES_ALL has extensive relationships with other EBS objects, as documented by its foreign keys. It is fundamentally a child of PA_EXPENDITURE_ITEMS_ALL via EXPENDITURE_ITEM_ID. For project context, it links to PA_PROJECTS_ALL (PROJECT_ID) and PA_TASKS (TASK_ID). Its accounting integrity depends on GL_CODE_COMBINATIONS for both DR_CODE_COMBINATION_ID and CR_CODE_COMBINATION_ID. Integration with other financial modules is evidenced by foreign keys to AP_INVOICE_DISTRIBUTIONS_ALL (SYSTEM_REFERENCE2, SYSTEM_REFERENCE3) and PO_VENDORS (SYSTEM_REFERENCE2). It also references PA_EXPENDITURE_BATCHES_ALL (BATCH_NAME, ORG_ID), GL_DAILY_CONVERSION_TYPES for rate types, FND_CURRENCIES, GL_ENCUMBRANCE_TYPES, and PA_WORK_TYPES_B. A self-referential foreign key exists for tracking reversals (LINE_NUM_REVERSED, EXPENDITURE_ITEM_ID).
-
Table: PA_COST_DISTRIBUTION_LINES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_COST_DISTRIBUTION_LINES_ALL, object_name:PA_COST_DISTRIBUTION_LINES_ALL, status:VALID, product: PA - Projects , description: Information about expenditure item cost distribution , implementation_dba_data: PA.PA_COST_DISTRIBUTION_LINES_ALL ,
-
Table: PA_COST_DISTRIBUTION_LINES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_COST_DISTRIBUTION_LINES_ALL, object_name:PA_COST_DISTRIBUTION_LINES_ALL, status:VALID, product: PA - Projects , description: Information about expenditure item cost distribution , implementation_dba_data: PA.PA_COST_DISTRIBUTION_LINES_ALL ,
-
View: PA_CAP_EVENTS_CDL_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CAP_EVENTS_CDL_COST_V, object_name:PA_CAP_EVENTS_CDL_COST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CAP_EVENTS_CDL_COST_V ,
-
Table: PA_PROJECT_ASSET_LINE_DETAILS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSET_LINE_DETAILS, object_name:PA_PROJECT_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: Information necessary to drill down from an asset line to the cost distribution line , implementation_dba_data: PA.PA_PROJECT_ASSET_LINE_DETAILS ,
-
Table: PA_EXPENDITURE_BATCHES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_EXPENDITURE_BATCHES_ALL, object_name:PA_EXPENDITURE_BATCHES_ALL, status:VALID, product: PA - Projects , description: Groups of expense reports that are processed during the same run of the Distribute Expense Reports program , implementation_dba_data: PA.PA_EXPENDITURE_BATCHES_ALL ,
-
Table: PA_MC_COST_DIST_LINES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_COST_DIST_LINES_ALL, object_name:PA_MC_COST_DIST_LINES_ALL, status:VALID, product: PA - Projects , description: Information about the cost distribution of expenditure items for each reporting set of books , implementation_dba_data: PA.PA_MC_COST_DIST_LINES_ALL ,
-
Table: PA_ORG_LABOR_SCH_RULE
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_ORG_LABOR_SCH_RULE, object_name:PA_ORG_LABOR_SCH_RULE, status:VALID, product: PA - Projects , description: PA_ORG_LABOR_SCH_RULE stores labor costing rule and rate schedule assignments for organizations , implementation_dba_data: PA.PA_ORG_LABOR_SCH_RULE ,
-
View: PA_CE_EXP_REPORTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CE_EXP_REPORTS_V, object_name:PA_CE_EXP_REPORTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CE_EXP_REPORTS_V ,
-
Table: PA_PROJECT_ASSET_LINE_DETAILS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSET_LINE_DETAILS, object_name:PA_PROJECT_ASSET_LINE_DETAILS, status:VALID, product: PA - Projects , description: Information necessary to drill down from an asset line to the cost distribution line , implementation_dba_data: PA.PA_PROJECT_ASSET_LINE_DETAILS ,
-
Table: PA_EXPENDITURE_BATCHES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_EXPENDITURE_BATCHES_ALL, object_name:PA_EXPENDITURE_BATCHES_ALL, status:VALID, product: PA - Projects , description: Groups of expense reports that are processed during the same run of the Distribute Expense Reports program , implementation_dba_data: PA.PA_EXPENDITURE_BATCHES_ALL ,
-
View: PA_CAP_EVENTS_CDL_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CAP_EVENTS_CDL_COST_V, object_name:PA_CAP_EVENTS_CDL_COST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CAP_EVENTS_CDL_COST_V ,
-
View: PA_COST_DIST_LINES_ALL_MRC_V2
12.1.1
product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_EXCEPTIONS_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_COST_EXCEPTIONS_SUM_V, object_name:PA_COST_EXCEPTIONS_SUM_V, status:VALID, product: PA - Projects , description: Identifies the details Cost Distribution Lines that prevent a period from being closed. , implementation_dba_data: APPS.PA_COST_EXCEPTIONS_SUM_V ,
-
View: PA_COST_DIST_LINES_ALL_MRC_V2R
12.2.2
product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DIST_LINES_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_COST_DIST_LINES_ALL_MRC_V, object_name:PA_COST_DIST_LINES_ALL_MRC_V, status:VALID, product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: APPS.PA_COST_DIST_LINES_ALL_MRC_V ,
-
Table: PA_MC_COST_DIST_LINES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_COST_DIST_LINES_ALL, object_name:PA_MC_COST_DIST_LINES_ALL, status:VALID, product: PA - Projects , description: Information about the cost distribution of expenditure items for each reporting set of books , implementation_dba_data: PA.PA_MC_COST_DIST_LINES_ALL ,
-
Table: PA_ORG_LABOR_SCH_RULE
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_ORG_LABOR_SCH_RULE, object_name:PA_ORG_LABOR_SCH_RULE, status:VALID, product: PA - Projects , description: PA_ORG_LABOR_SCH_RULE stores labor costing rule and rate schedule assignments for organizations , implementation_dba_data: PA.PA_ORG_LABOR_SCH_RULE ,
-
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 ,
-
View: PA_BURDEN_EXP_ITEM_CDL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BURDEN_EXP_ITEM_CDL_V, object_name:PA_BURDEN_EXP_ITEM_CDL_V, status:VALID, product: PA - Projects , description: All summarized burden expenditure items and their cost distribution lines , implementation_dba_data: APPS.PA_BURDEN_EXP_ITEM_CDL_V ,
-
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_BURDEN_EXP_ITEM_CDL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BURDEN_EXP_ITEM_CDL_V, object_name:PA_BURDEN_EXP_ITEM_CDL_V, status:VALID, product: PA - Projects , description: All summarized burden expenditure items and their cost distribution lines , implementation_dba_data: APPS.PA_BURDEN_EXP_ITEM_CDL_V ,
-
View: PA_CE_EXP_REPORTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CE_EXP_REPORTS_V, object_name:PA_CE_EXP_REPORTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CE_EXP_REPORTS_V ,
-
View: PA_COST_EXCEPTIONS_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_COST_EXCEPTIONS_SUM_V, object_name:PA_COST_EXCEPTIONS_SUM_V, status:VALID, product: PA - Projects , description: Identifies the details Cost Distribution Lines that prevent a period from being closed. , implementation_dba_data: APPS.PA_COST_EXCEPTIONS_SUM_V ,
-
View: PA_COST_DIST_LINES_ALL_MRC_V2
12.2.2
product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DIST_LINES_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_COST_DIST_LINES_ALL_MRC_V, object_name:PA_COST_DIST_LINES_ALL_MRC_V, status:VALID, product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: APPS.PA_COST_DIST_LINES_ALL_MRC_V ,
-
View: PA_COST_DIST_LINES_ALL_MRC_V2R
12.1.1
product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
Table: PA_WORK_TYPES_B
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_WORK_TYPES_B, object_name:PA_WORK_TYPES_B, status:VALID, product: PA - Projects , description: This table stores implementation-defined types of work being carried out in Projects in the base language. , implementation_dba_data: PA.PA_WORK_TYPES_B ,
-
Table: PA_WORK_TYPES_B
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_WORK_TYPES_B, object_name:PA_WORK_TYPES_B, status:VALID, product: PA - Projects , description: This table stores implementation-defined types of work being carried out in Projects in the base language. , implementation_dba_data: PA.PA_WORK_TYPES_B ,
-
View: PA_CDL_BURDEN_SUM_ERROR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CDL_BURDEN_SUM_ERROR_V, object_name:PA_CDL_BURDEN_SUM_ERROR_V, status:VALID, product: PA - Projects , description: Cost distribution lines that are in exception for burden summarization , implementation_dba_data: APPS.PA_CDL_BURDEN_SUM_ERROR_V ,
-
View: PA_CDL_BURDEN_DETAIL_V_R
12.1.1
product: PA - Projects , description: Summarization criteria for burden summarization of expenditure items.This view is based on PA_CDL_BURDEN_DETAIL_V. It is a User customizable view defined over the PA_CDL_BURDEN_DETAIL_V. User can change the columns to be included in summary , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
Table: PA_BC_COMMITMENTS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BC_COMMITMENTS_ALL, object_name:PA_BC_COMMITMENTS_ALL, status:VALID, product: PA - Projects , description: PA_BC_COMMITMENTS holds all the commitment transactions (Req, PO and Payables) that are funds checked. When maintain project balances programs sweeps the commitment records to project balances, the commitments are inserted into this table. , implementation_dba_data: PA.PA_BC_COMMITMENTS_ALL ,
-
View: PABV_COST_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_COST_DISTRIBUTIONS, object_name:PABV_COST_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_COST_DISTRIBUTIONS ,
-
Table: PA_BC_COMMITMENTS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BC_COMMITMENTS_ALL, object_name:PA_BC_COMMITMENTS_ALL, status:VALID, product: PA - Projects , description: PA_BC_COMMITMENTS holds all the commitment transactions (Req, PO and Payables) that are funds checked. When maintain project balances programs sweeps the commitment records to project balances, the commitments are inserted into this table. , implementation_dba_data: PA.PA_BC_COMMITMENTS_ALL ,
-
View: PABV_COST_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_COST_DISTRIBUTIONS, object_name:PABV_COST_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_COST_DISTRIBUTIONS ,
-
View: PA_CDL_BURDEN_SUM_ERROR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CDL_BURDEN_SUM_ERROR_V, object_name:PA_CDL_BURDEN_SUM_ERROR_V, status:VALID, product: PA - Projects , description: Cost distribution lines that are in exception for burden summarization , implementation_dba_data: APPS.PA_CDL_BURDEN_SUM_ERROR_V ,
-
View: PA_COST_DIST_LINES_FORMS_MRC_V
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DIST_LINES_FORMS_MRC_V
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_CDL_BURDEN_DETAIL_V_R
12.2.2
product: PA - Projects , description: Summarization criteria for burden summarization of expenditure items.This view is based on PA_CDL_BURDEN_DETAIL_V. It is a User customizable view defined over the PA_CDL_BURDEN_DETAIL_V. User can change the columns to be included in summary , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJ_COST_SUBLEDGER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COST_SUBLEDGER_V, object_name:PA_PROJ_COST_SUBLEDGER_V, status:VALID, product: PA - Projects , description: View of projects costs including manufacturing costs , implementation_dba_data: APPS.PA_PROJ_COST_SUBLEDGER_V ,
-
View: PA_GL_COST_XFER_AUDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_COST_XFER_AUDIT_V, object_name:PA_GL_COST_XFER_AUDIT_V, status:VALID, product: PA - Projects , description: View for Cost Audit by GL Account showing the Cost Distribution Lines and the corresponding entries in Oracle General Ledger. , implementation_dba_data: APPS.PA_GL_COST_XFER_AUDIT_V ,
-
View: PA_CDL_BURDEN_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IPA.PA_CDL_BURDEN_DETAIL_V PA.PA_CDL_BURDEN_DETAIL_V, object_name:PA_CDL_BURDEN_DETAIL_V, status:VALID, product: PA - Projects , description: Summarization criteria for burden summarization of expenditure items.This view is based on PA_CDL_BURDEN_DETAIL_V. It is a User customizable view defined over the PA_CDL_BURDEN_DETAIL_V. User can change the columns to be included in summary , implementation_dba_data: APPS.PA_CDL_BURDEN_DETAIL_V ,
-
View: PA_PROJ_COST_SUBLEDGER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COST_SUBLEDGER_V, object_name:PA_PROJ_COST_SUBLEDGER_V, status:VALID, product: PA - Projects , description: View of projects costs including manufacturing costs , implementation_dba_data: APPS.PA_PROJ_COST_SUBLEDGER_V ,
-
View: PA_COST_EXCEPTIONS_SUM_MRC_V
12.1.1
product: PA - Projects , description: pa_cost_exceptions_sum_mrc_v is a view that identifies the Cost Distribution Lines that prevent a period - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PA_GL_COST_XFER_AUDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_GL_COST_XFER_AUDIT_V, object_name:PA_GL_COST_XFER_AUDIT_V, status:VALID, product: PA - Projects , description: View for Cost Audit by GL Account showing the Cost Distribution Lines and the corresponding entries in Oracle General Ledger. , implementation_dba_data: APPS.PA_GL_COST_XFER_AUDIT_V ,
-
Table: PA_EXPENDITURE_ITEMS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_EXPENDITURE_ITEMS_ALL, object_name:PA_EXPENDITURE_ITEMS_ALL, status:VALID, product: PA - Projects , description: The smallest units of expenditure charged to projects and tasks , implementation_dba_data: PA.PA_EXPENDITURE_ITEMS_ALL ,
-
View: PA_GL_COST_EXCEPT_SUM_MRC_V
12.1.1
product: PA - Projects , description: pa_gl_cost_except_sum_mrc_v is a view that identifies the Cost Distribution Lines that prevent a period from being closed , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_COST_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COST_DISTRIBUTIONS, object_name:PAFV_COST_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Business view to show information about cost distribution lines. , implementation_dba_data: APPS.PAFV_COST_DISTRIBUTIONS ,
-
View: PA_COST_EXCEPTIONS_SUM_MRC_V
12.2.2
product: PA - Projects , description: pa_cost_exceptions_sum_mrc_v is a view that identifies the Cost Distribution Lines that prevent a period - Retrofitted , implementation_dba_data: Not implemented in this database ,