Search Results system_reference4
Overview
PA_COST_DISTRIBUTION_LINES is a Projects (PA) module view in Oracle E-Business Suite 12.1.1 and 12.2.2 that exposes the distribution-level detail of project expenditures. It is the publicly accessible synonym wrapper over the multiorganization base table PA_COST_DISTRIBUTION_LINES_ALL, applying the standard operating-unit (ORG_ID) security predicate derived from USERENV('CLIENT_INFO'). The view is defined as a query over that base table rather than as an independent database object, and ETRM documentation notes that it is not implemented as a standalone DBA object.
Within the Cost Distribution and Interface processes, the view represents individual accounting distribution lines generated from project expenditure items. Each row carries the debit and credit code combinations, amounts in multiple currencies, transfer status, dates, and the descriptive flexfield references needed for downstream subledger accounting. It is the principal source for reporting on which accounts project cost was distributed to, in which GL period, and whether the transfer to General Ledger or Payables has occurred.
Underlying Base Objects
The view selects from PA_COST_DISTRIBUTION_LINES_ALL, filtered by the ORG_ID predicate:
- PA_COST_DISTRIBUTION_LINES_ALL — the multiorganization base table holding all cost distribution rows. ORG_ID scopes each row to a business unit.
- EXPENDITURE_ITEM_ID — links each distribution line to the originating expenditure item in PA_EXPENDITURE_ITEMS, the primary join key for project cost analysis.
- PROJECT_ID / TASK_ID — link the line to PA_PROJECTS and PA_TASKS for project and task context.
- WORK_TYPE_ID and the scheduling columns (ORG_LABOR_SCH_RULE_ID, COST_RATE_SCH_ID) associate the line with cost rate and labor scheduling setup.
Because the view includes the ORG_ID security filter, only rows belonging to the operating unit in the session's client information are visible. Reports running under a specific responsibility therefore see only that business unit's distribution lines, which is the intended behavior for EBS's multi-org architecture.
Key Columns
The column referenced in the search, DR_CODE_COMBINATION_ID, is the debit code combination identifier pointing to the GL chart of accounts entry to be debited. It is paired with CR_CODE_COMBINATION_ID for the corresponding credit account. These are the central accounting columns and are the most commonly queried attributes for reconciliation between Projects and GL.
- AMOUNT, QUANTITY, BILLABLE_FLAG — raw cost amount, quantity, and billability of the distributed expenditure.
- TRANSFER_STATUS_CODE, TRANSFERRED_DATE, TRANSFER_REJECTION_REASON — state of the row in the transfer process to GL or Payables, with any rejection diagnostics.
- GL_DATE, GL_PERIOD_NAME — the accounting date and period in which the distribution is recognized; RECVR_* counterparts hold receiving-related values.
- PA_DATE, PA_PERIOD_NAME — Projects-side date and period for the line.
- DENOM_*, ACCT_*, PROJECT_*, PROJFUNC_* — amount and currency blocks covering denominated, accounting, project, and project functional currencies, including rate types, dates, and exchange rates.
- BURDENED_COST, BURDEN_SUM_SOURCE_RUN_ID, BURDENED_CHANGE columns — burden amounts and adjustments applied to the line.
- ACCUMULATED_FLAG, REVERSED_FLAG, REVERSAL indicators (LINE_NUM_REVERSED, SYSTEM_REFERENCE1-4) — accumulation and reversal tracking, including reversal linkage between original and reversing lines.
- ENCUMBRANCE_* columns — encumbrance type, amount, and budget code combination for encumbrance liquidation.
Common Use Cases and Queries
Typical usage includes reconciling distributed project cost to GL, auditing unposted or rejected distributions, and reviewing account assignments by expenditure item.
- Retrieve debit accounts for a given expenditure item: SELECT EXPENDITURE_ITEM_ID, DR_CODE_COMBINATION_ID, CR_CODE_COMBINATION_ID, AMOUNT, GL_DATE FROM PA_COST_DISTRIBUTION_LINES WHERE EXPENDITURE_ITEM_ID = :item_id;
- List lines pending transfer or rejected: SELECT * FROM PA_COST_DISTRIBUTION_LINES WHERE TRANSFER_STATUS_CODE IN ('P','R') ORDER BY GL_DATE;
- Summarize distributed cost by period and account: SELECT GL_PERIOD_NAME, DR_CODE_COMBINATION_ID, SUM(AMOUNT) FROM PA_COST_DISTRIBUTION_LINES GROUP BY GL_PERIOD_NAME, DR_CODE_COMBINATION_ID;
- Report individual distributions for a project: SELECT PROJECT_ID, TASK_ID, AMOUNT, DR_CODE_COMBINATION_ID FROM PA_COST_DISTRIBUTION_LINES WHERE PROJECT_ID = :project_id;
Because ORG_ID filtering is applied automatically, queries executed from a Projects responsibility return only the operating unit's data; cross-organization reporting should be performed against PA_COST_DISTRIBUTION_LINES_ALL with appropriate privileges.
-
View: PA_COST_DISTRIBUTION_LINES
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DISTRIBUTION_LINES
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DIST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_COST_DIST_LINES_V, object_name:PA_COST_DIST_LINES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_COST_DIST_LINES_V ,
-
View: PA_COST_DIST_LINES_MRC_V2
12.1.1
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_EI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_V, object_name:PA_STATUS_EI_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_V ,
-
View: PA_COST_DIST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_COST_DIST_LINES_V, object_name:PA_COST_DIST_LINES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_COST_DIST_LINES_V ,
-
View: PA_STATUS_EI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_V, object_name:PA_STATUS_EI_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_V ,
-
View: PA_COST_DIST_LINES_MRC_V2
12.2.2
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DIST_LINES_MRC_V
12.1.1
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_COST_DIST_LINES_MRC_V
12.2.2
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
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_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 ,
-
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 ,
-
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_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 ,