Search Results pa_ind_cost_multipliers
Overview
The PA_IND_COST_MULTIPLIERS table is a core data structure within the Oracle E-Business Suite Projects (PA) module, specifically for versions 12.1.1 and 12.2.2. It serves as the master repository for storing burden multipliers, which are essential for calculating indirect costs (overhead) on projects. The table's primary role is to define the specific multiplier rates applied to raw labor or expense costs, based on a combination of a burden schedule revision, an organization, and a burden cost code. This granular association enables precise and flexible burden cost calculations across different organizational structures and cost types, forming the foundation of the project costing engine.
Key Information Stored
The table's structure is defined by its composite primary key, which uniquely identifies a single multiplier record. The key columns are IND_RATE_SCH_REVISION_ID, which links to a specific version of a burden schedule; ORGANIZATION_ID, which identifies the HR organization unit; and IND_COST_CODE, which specifies the type of indirect cost. Beyond these key columns, the table typically stores the multiplier value itself (often in a column such as MULTIPLIER or RATE), along with standard Oracle EBS audit columns like CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY. The integrity of the data is enforced through foreign key relationships to parent tables for each component of the primary key.
Common Use Cases and Queries
The primary use case is the automated calculation of burden costs during transaction processing (e.g., labor cost distribution, expense reports) and project planning. Reporting on burden rates for audit or analysis is another critical application. A common query pattern involves joining this table to its parent tables to retrieve a human-readable burden schedule. For example:
- To list all multipliers for a specific burden schedule revision:
SELECT organization_id, ind_cost_code, multiplier FROM pa_ind_cost_multipliers WHERE ind_rate_sch_revision_id = :p_rev_id; - To report on the full burden schedule with descriptions:
SELECT rs.revision_name, hou.name org_name, cc.ind_cost_code, icm.multiplier FROM pa_ind_cost_multipliers icm JOIN pa_ind_rate_sch_revisions rs ON icm.ind_rate_sch_revision_id = rs.ind_rate_sch_revision_id JOIN hr_organization_units hou ON icm.organization_id = hou.organization_id JOIN pa_ind_cost_codes cc ON icm.ind_cost_code = cc.ind_cost_code;
Related Objects
As documented in the ETRM metadata, PA_IND_COST_MULTIPLIERS has defined foreign key relationships with three primary tables, forming the core of the burden costing model:
- PA_IND_RATE_SCH_REVISIONS: Joined via
IND_RATE_SCH_REVISION_ID. This table defines the different versions or revisions of a burden schedule. - HR_ALL_ORGANIZATION_UNITS: Joined via
ORGANIZATION_ID. This HR table provides the organizational context for the multiplier. - PA_IND_COST_CODES: Joined via
IND_COST_CODE. This table defines the valid burden cost code types (e.g., Overhead, G&A).
This table is also referenced by various project costing APIs and is a critical source for views that present burden schedule data to the application's user interface.
-
Table: PA_IND_COST_MULTIPLIERS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_IND_COST_MULTIPLIERS, object_name:PA_IND_COST_MULTIPLIERS, status:VALID, product: PA - Projects , description: Burden multipliers for burden schedule revisions, organizations, and burden cost codes , implementation_dba_data: PA.PA_IND_COST_MULTIPLIERS ,
-
Table: PA_IND_COST_MULTIPLIERS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_IND_COST_MULTIPLIERS, object_name:PA_IND_COST_MULTIPLIERS, status:VALID, product: PA - Projects , description: Burden multipliers for burden schedule revisions, organizations, and burden cost codes , implementation_dba_data: PA.PA_IND_COST_MULTIPLIERS ,
-
APPS.PA_CAP_INT_PVT dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_COST_PLUS dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_IND_COST_CODES_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_PROJECT_CORE1 dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_COST_PLUS dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_CAPITALIZED_INTEREST dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_COST_BASES_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_IND_COST_CODES_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_ORG dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_COST_PLUS dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_PROJECT_CORE1 dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_CAPITALIZED_INTEREST dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_PROJECT_CORE dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_PROJECT_CORE dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_PROJECT_CORE2 dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_COST_PLUS dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_IND_COST_MULTIPLIERS_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_CAP_INT_PVT dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_COST_BASES_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_IND_RATE_SCH_REVISIONS_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_IND_RATE_SCH_REVISIONS_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_PROJECT_CORE2 dependencies on PA_IND_COST_MULTIPLIERS
12.1.1
-
APPS.PA_IND_COST_MULTIPLIERS_PKG dependencies on PA_IND_COST_MULTIPLIERS
12.2.2
-
APPS.PA_IND_COST_MULTIPLIERS_PKG SQL Statements
12.2.2
-
APPS.PA_IND_COST_MULTIPLIERS_PKG SQL Statements
12.1.1
-
VIEW: PA.PA_IND_COST_MULTIPLIERS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_IND_COST_MULTIPLIERS#, status:VALID,
-
APPS.PA_ORG dependencies on PA_IND_COMPILED_SETS
12.2.2
-
VIEW: PA.PA_IND_COST_MULTIPLIERS#
12.2.2
-
PACKAGE BODY: APPS.PA_IND_COST_MULTIPLIERS_PKG
12.2.2
-
APPS.PA_CAP_INT_PVT dependencies on PA_IND_RATE_SCHEDULES_ALL_BG
12.1.1
-
TABLE: PA.PA_IND_COST_MULTIPLIERS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_IND_COST_MULTIPLIERS, object_name:PA_IND_COST_MULTIPLIERS, status:VALID,
-
APPS.PA_CAPITALIZED_INTEREST SQL Statements
12.2.2
-
SYNONYM: APPS.PA_IND_COST_MULTIPLIERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COST_MULTIPLIERS, status:VALID,
-
SYNONYM: APPS.PA_IND_COST_MULTIPLIERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COST_MULTIPLIERS, status:VALID,
-
APPS.PA_CAP_INT_PVT dependencies on PA_IND_RATE_SCHEDULES_ALL_BG
12.2.2
-
TABLE: PA.PA_IND_COST_MULTIPLIERS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_IND_COST_MULTIPLIERS, object_name:PA_IND_COST_MULTIPLIERS, status:VALID,
-
APPS.PA_CAPITALIZED_INTEREST SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_IND_COST_MULTIPLIERS_PKG
12.1.1
-
APPS.PA_COST_PLUS dependencies on DUAL
12.1.1
-
APPS.PA_PROJECT_CORE1 dependencies on PA_IND_RATE_SCH_REVISIONS
12.2.2
-
APPS.PA_PROJECT_CORE2 dependencies on PA_IND_RATE_SCH_REVISIONS
12.2.2
-
APPS.PA_CAP_INT_PVT dependencies on PA_IND_RATE_SCH_REVISIONS
12.2.2
-
APPS.PA_PROJECT_CORE1 dependencies on PA_IND_RATE_SCH_REVISIONS
12.1.1
-
APPS.PA_COST_PLUS dependencies on PA_COST_BASE_COST_CODES
12.1.1
-
APPS.PA_CAP_INT_PVT dependencies on PA_IND_RATE_SCH_REVISIONS
12.1.1
-
APPS.PA_PROJECT_CORE2 dependencies on PA_IND_RATE_SCH_REVISIONS
12.1.1
-
APPS.PA_COST_PLUS dependencies on DUAL
12.2.2
-
APPS.PA_COST_BASES_PKG dependencies on PA_EXPENDITURE_ITEMS
12.1.1