Search Results pa_mc_budget_lines
Overview
The PA_MC_BUDGET_LINES table is a core data object within the Oracle E-Business Suite Projects (PA) module, specifically supporting its Multi-Currency (MC) functionality. Its primary role is to store the converted budget line amounts for all reporting sets of books associated with a primary set of books. When a project budget is created in a primary ledger currency, this table holds the equivalent raw cost, burdened cost, and revenue amounts translated into each defined reporting currency. This enables consolidated financial reporting and analysis across multiple ledgers and currencies, a critical requirement for global project management and accounting in releases 12.1.1 and 12.2.2.
Key Information Stored
The table stores a record for each budget line per reporting set of books. Key columns include the composite primary key (BUDGET_LINE_ID, SET_OF_BOOKS_ID), which uniquely identifies a converted budget line for a specific reporting ledger. The SET_OF_BOOKS_ID column identifies the reporting ledger, while the BUDGET_LINE_ID links back to the original budget line in the primary currency. Critical financial data columns store the converted amounts for raw cost, burdened cost, and revenue. The table also holds currency conversion metadata, such as REPORTING_CURRENCY_CODE, COST_RATE_TYPE, REV_RATE_TYPE, and associated exchange rates, which document how the monetary conversions were performed.
Common Use Cases and Queries
The primary use case is generating project budget reports in any reporting currency without requiring real-time conversion. This is essential for period-end financial closing, comparative budget analysis across subsidiaries, and audit trails of currency conversions. A common query pattern involves joining this table to the primary budget lines and project tables to retrieve a consolidated budget view. For example:
SELECT pmcbl.*, pbl.raw_cost, pbl.burdened_cost FROM pa_mc_budget_lines pmcbl JOIN pa_budget_lines pbl ON pmcbl.budget_line_id = pbl.budget_line_id WHERE pmcbl.project_id = :p_project_id AND pmcbl.set_of_books_id = :p_sob_id;
This retrieves all converted budget lines for a specific project and reporting ledger, alongside the original amounts. Reporting use cases include variance analysis (budget vs. actuals) in reporting currencies and ledger-specific budget summaries.
Related Objects
PA_MC_BUDGET_LINES maintains integral foreign key relationships with several fundamental EBS tables, as documented in the ETRM. These relationships are crucial for data integrity and join logic:
- PA_BUDGET_LINES: The source table for the original budget line (
PA_MC_BUDGET_LINES.BUDGET_LINE_ID = PA_BUDGET_LINES.BUDGET_LINE_ID). - GL_SETS_OF_BOOKS: Identifies the reporting ledger (
PA_MC_BUDGET_LINES.SET_OF_BOOKS_ID = GL_SETS_OF_BOOKS.SET_OF_BOOKS_ID). - PA_PROJECTS_ALL: Links to the master project definition (
PA_MC_BUDGET_LINES.PROJECT_ID = PA_PROJECTS_ALL.PROJECT_ID). - FND_CURRENCIES: Validates the reporting currency code (
PA_MC_BUDGET_LINES.REPORTING_CURRENCY_CODE = FND_CURRENCIES.CURRENCY_CODE). - GL_DAILY_CONVERSION_TYPES: References the conversion rate types used for cost and revenue (
PA_MC_BUDGET_LINES.COST_RATE_TYPE = GL_DAILY_CONVERSION_TYPES.CONVERSION_TYPEandPA_MC_BUDGET_LINES.REV_RATE_TYPE = GL_DAILY_CONVERSION_TYPES.CONVERSION_TYPE). - PA_BUDGET_VERSIONS: Provides context for the budget version via the budget line identifier.
-
Table: PA_MC_BUDGET_LINES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_BUDGET_LINES, object_name:PA_MC_BUDGET_LINES, status:VALID, product: PA - Projects , description: This table stores budget lines for all the reporting set of books associated with primary set of books. The raw cost, burdened cost and revenue amounts are converted to the respective reporting currencies , implementation_dba_data: PA.PA_MC_BUDGET_LINES ,
-
Table: PA_MC_BUDGET_LINES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_BUDGET_LINES, object_name:PA_MC_BUDGET_LINES, status:VALID, product: PA - Projects , description: This table stores budget lines for all the reporting set of books associated with primary set of books. The raw cost, burdened cost and revenue amounts are converted to the respective reporting currencies , implementation_dba_data: PA.PA_MC_BUDGET_LINES ,
-
SYNONYM: APPS.PA_MC_BUDGET_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_MC_BUDGET_LINES, status:VALID,
-
SYNONYM: APPS.PA_MC_BUDGET_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_MC_BUDGET_LINES, status:VALID,
-
VIEW: PA.PA_MC_BUDGET_LINES#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_MC_BUDGET_LINES#, status:VALID,
-
VIEW: PA.PA_MC_BUDGET_LINES#
12.2.2
-
APPS.PA_MC_BILLING_PVT dependencies on PA_TASKS
12.1.1
-
APPS.PA_MC_BILLING_PVT SQL Statements
12.1.1
-
Table: PA_BUDGET_LINES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BUDGET_LINES, object_name:PA_BUDGET_LINES, status:VALID, product: PA - Projects , description: Detail lines of project and task budgets , implementation_dba_data: PA.PA_BUDGET_LINES ,
-
APPS.PA_MC_BILLING_PVT dependencies on PA_TASKS
12.2.2
-
TABLE: PA.PA_MC_BUDGET_LINES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_BUDGET_LINES, object_name:PA_MC_BUDGET_LINES, status:VALID,
-
TABLE: PA.PA_MC_BUDGET_LINES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_MC_BUDGET_LINES, object_name:PA_MC_BUDGET_LINES, status:VALID,
-
APPS.PA_PRC_PROJECT_PUB SQL Statements
12.1.1
-
APPS.PA_PRC_PROJECT_PUB SQL Statements
12.2.2
-
APPS.PA_MC_BILLING_PVT SQL Statements
12.2.2
-
Table: PA_BUDGET_LINES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BUDGET_LINES, object_name:PA_BUDGET_LINES, status:VALID, product: PA - Projects , description: Detail lines of project and task budgets , implementation_dba_data: PA.PA_BUDGET_LINES ,
-
APPS.PA_FIN_PLAN_PVT dependencies on PA_RESOURCE_ASSIGNMENTS
12.1.1
-
APPS.PA_FIN_PLAN_PVT dependencies on PA_BUDGET_LINES
12.2.2
-
APPS.PA_FIN_PLAN_PVT dependencies on PA_RESOURCE_ASSIGNMENTS
12.2.2
-
Table: PA_BUDGET_VERSIONS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BUDGET_VERSIONS, object_name:PA_BUDGET_VERSIONS, status:VALID, product: PA - Projects , description: Versions of project budgets , implementation_dba_data: PA.PA_BUDGET_VERSIONS ,
-
Table: GL_DAILY_CONVERSION_TYPES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_DAILY_CONVERSION_TYPES, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID, product: GL - General Ledger , description: Foreign currency daily conversion rate types , implementation_dba_data: GL.GL_DAILY_CONVERSION_TYPES ,
-
APPS.PA_FIN_PLAN_PVT dependencies on PA_BUDGET_LINES
12.1.1
-
Table: GL_DAILY_CONVERSION_TYPES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_DAILY_CONVERSION_TYPES, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID, product: GL - General Ledger , description: Foreign currency daily conversion rate types , implementation_dba_data: GL.GL_DAILY_CONVERSION_TYPES ,
-
APPS.PA_PRC_PROJECT_PUB dependencies on DUAL
12.1.1
-
APPS.PA_PRC_PROJECT_PUB dependencies on DUAL
12.2.2
-
View: PA_BUDGET_LINES_MRC_V
12.2.2
product: PA - Projects , description: Single currency view for pa_budget_lines , implementation_dba_data: Not implemented in this database ,
-
Table: PA_BUDGET_VERSIONS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_BUDGET_VERSIONS, object_name:PA_BUDGET_VERSIONS, status:VALID, product: PA - Projects , description: Versions of project budgets , implementation_dba_data: PA.PA_BUDGET_VERSIONS ,
-
View: PA_BUDGET_LINES_MRC_V
12.1.1
product: PA - Projects , description: Single currency view for pa_budget_lines , implementation_dba_data: Not implemented in this database ,
-
Table: GL_SETS_OF_BOOKS_11I
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS_11I, object_name:GL_SETS_OF_BOOKS_11I, status:VALID, product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: GL.GL_SETS_OF_BOOKS_11I ,
-
PACKAGE BODY: APPS.PA_PRC_PROJECT_PUB
12.1.1
-
PACKAGE BODY: APPS.PA_PRC_PROJECT_PUB
12.2.2
-
Table: GL_SETS_OF_BOOKS_11I
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS_11I, object_name:GL_SETS_OF_BOOKS_11I, status:VALID, product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: GL.GL_SETS_OF_BOOKS_11I ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PA_MC_BILLING_PVT
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PA_MC_BILLING_PVT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: PA_PROJECTS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID, product: PA - Projects , description: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. , implementation_dba_data: PA.PA_PROJECTS_ALL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: PA_PROJECTS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID, product: PA - Projects , description: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. , implementation_dba_data: PA.PA_PROJECTS_ALL ,
-
Table: FND_CURRENCIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
Table: FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.PA_FIN_PLAN_PVT SQL Statements
12.1.1
-
APPS.PA_FIN_PLAN_PVT SQL Statements
12.2.2