Search Results pa_proj_cost_sl_rep_mrc_v
Overview
PA_PROJ_COST_SL_REP_MRC_V is a reporting view within the Oracle Projects (PA) module that presents project cost transactions, including manufacturing-related costs, resolved down to the General Ledger account level. The view is part of the Multi-Report Currency (MRC) family of PA objects, which in Oracle EBS 12.1.1 and 12.2.2 supports reporting in multiple currencies and subledger-to-GL reconciliation. Its primary role is to expose cost distribution information for project expenditure items together with the accounting flexfield description, burdened and raw cost amounts, and the associated project, task, and organization context.
Because the view surfaces both raw cost and burden cost as discrete columns, it is frequently consulted by users searching for "burden_cost" — that is, implementers and analysts who need to report the burdened portion of a project transaction, the difference between burdened and raw cost as posted to a particular GL code combination. This makes the view relevant for burden analysis, cost auditing, and downstream integration extracts.
Underlying Base Objects
The documented base objects referenced by this view are:
- PA_EXPENDITURE_TYPES (ET) — source of expenditure category and expenditure type.
- PA_PROJECTS_ALL (PRJ) — source of project type, project ID, project number, and project name.
- PA_TASKS (TASK) — source of task ID, task number, and task name.
- GL_CODE_COMBINATIONS (GLC) — provides the account description for the debit code combination.
- PA_EXPENDITURE_ITEMS_ALL (EI) — the expenditure item being reported.
- PA_COST_DIST_LINES_ALL_MRC_V2 (CDL) — the MRC cost distribution lines, restricted to LINE_TYPE = 'R'. This object is central to the multi-report-currency presentation.
- PA_SYSTEM_LINKAGES (SYS) — supplies the manufacturing flag and the system linkage function meaning.
The view joins these objects on expenditure item, expenditure type, code combination, task, project, and system linkage function. The cost distribution lines are further filtered so that TRANSFER_STATUS_CODE is 'A' or 'V', ensuring only accepted or valid distributions are returned. No additional base objects are documented beyond this set.
Key Columns
- EXPENDITURE_ITEM_ID and COST_DISTRIBUTION_LINE_NUM — uniquely identify the expenditure item and its distribution line.
- CODE_COMBINATION_ID and ACCOUNT_DESCRIPTION — the GL debit account and its description.
- GL_DATE — accounting date of the distribution.
- MFG_RELATED — derived from PA_SYSTEM_LINKAGES.PROJECT_MANUFACTURING_FLAG, indicating whether the cost is manufacturing related.
- SYSTEM_LINKAGE_FUNCTION — the meaning of the system linkage function.
- EXPENDITURE_CATEGORY and EXPENDITURE_TYPE — classification of the cost.
- PROJECT_NUMBER, PROJECT_NAME, PROJECT_TYPE, TASK_NUMBER, TASK_NAME — descriptive project and task context.
- ORGANIZATION_ID — the operating unit or organization owning the distribution.
- TOTAL_COST — decoded as the burdened cost where present, otherwise the raw cost.
- RAW_COST — the unburdened amount.
- BURDEN_COST — computed as NVL(NVL(ACCT_BURDENED_COST,0),ACCT_RAW_COST) minus ACCT_RAW_COST, i.e., the burdened portion as posted to GL.
Common Use Cases and Queries
Typical scenarios include burden analysis, reconciliation of project costs to GL, and extracts feeding a data warehouse. A representative query returning burdened project costs follows:
SELECT PROJECT_NUMBER,
TASK_NUMBER,
EXPENDITURE_TYPE,
GL_DATE,
RAW_COST,
BURDEN_COST,
TOTAL_COST,
ACCOUNT_DESCRIPTION
FROM PA_PROJ_COST_SL_REP_MRC_V
WHERE BURDEN_COST <> 0
AND GL_DATE BETWEEN :start_date AND :end_date
ORDER BY PROJECT_NUMBER, GL_DATE;
Because the view is documented as "Not implemented in this database" in the provided ETRM metadata, environments must confirm its existence before relying on it in concurrent programs or BI Publisher reports.
-
View: PA_PROJ_COST_SL_REP_MRC_V
12.1.1
product: PA - Projects , description: View of projects costs including manufacturing costs. PA_PROJ_COST_SL_MRC_V shows transactions in Oracle projects by GL account. , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJ_COST_SL_REP_MRC_V
12.2.2
product: PA - Projects , description: View of projects costs including manufacturing costs. PA_PROJ_COST_SL_MRC_V shows transactions in Oracle projects by GL account. , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2