Search Results pa_burden_cost_multipliers




Overview

The PA_BURDEN_COST_MULTIPLIERS table is a core data structure within the Oracle E-Business Suite Projects (PA) module, specifically for Release 10 Smart Client (R10SC) implementations. Its primary role is to store the rate multipliers used for calculating burdened costs, also known as overhead costs, on projects. These multipliers are applied to raw costs (such as labor, expense, or item costs) to derive a fully loaded cost that includes indirect expenses. The table enables the definition of burden schedules at granular levels—organization, project, and task—allowing for highly specific and flexible overhead costing policies within the application's financial management framework.

Key Information Stored

The table's structure is defined by its composite primary key, which dictates the level at which a burden multiplier is effective. The critical columns include ORGANIZATION_ID, PROJECT_ID, and TASK_ID, which together identify the specific organizational entity, project, and task to which the multiplier applies. The BURDEN_COST_CODE column stores a reference to a burden cost type defined in the PA_BURDEN_COST_CODES table, classifying the overhead (e.g., fringe benefits, general and administrative). The START_DATE_ACTIVE column controls the effective date of the multiplier rate. Each record essentially holds a numeric multiplier value for a given cost code, at a specified organizational level, effective from a particular date.

Common Use Cases and Queries

The primary use case is the automated calculation of burden costs during transaction processing (like cost distribution) and project reporting. Administrators use this table to set up and maintain burden schedules. A common reporting requirement is to audit or list all active burden multipliers for a specific project. A typical query would join to related descriptive tables:

  • SELECT pbcm.*, pbc.name FROM pa_burden_cost_multipliers pbcm, pa_burden_cost_codes pbc WHERE pbcm.burden_cost_code = pbc.burden_cost_code AND pbcm.project_id = :p_project_id AND pbcm.start_date_active <= SYSDATE ORDER BY pbcm.task_id, pbcm.burden_cost_code;

Another critical scenario involves troubleshooting cost calculation discrepancies, where analysts trace the specific multiplier applied to a transaction by querying this table using the transaction's organization, project, task, cost code, and date.

Related Objects

PA_BURDEN_COST_MULTIPLIERS is centrally linked to several key tables via foreign key relationships, as documented in the ETRM. PA_BURDEN_COST_CODES provides the valid list of burden cost types. PA_PROJECTS_ALL and PA_TASKS define the project and task structures. HR_ALL_ORGANIZATION_UNITS defines the operating unit or organization context. The table is fundamentally read by the costing engine within the Projects module, and its data is often surfaced through standard cost reports, the Burden Schedule user interface, and custom integrations for financial planning and analysis.