Search Results gms_burden_components
Overview
GMS_BURDEN_COMPONENTS is a transactional table in the GMS (Grants Accounting) product schema of Oracle E-Business Suite, valid in releases 12.1.1 and 12.2.2. The table stores the individual burden components that are generated when billing events are processed against awarded projects. Each row represents one burden cost line associated with an expenditure item, capturing the burden cost code applied, the burden expense type, and the calculated burden amount that will be passed to billing and revenue recognition. Because burden represents indirect cost recovery — the overhead, fringe, and administrative rates applied on top of direct costs — this table is central to the indirect cost calculations that flow through sponsored project billing.
From a dimensional modeling perspective, the mined foreign-key structure classifies GMS_BURDEN_COMPONENTS as satellite-leaning. This heuristic suggests the table functions primarily as an extension of a core transactional entity, attached through its foreign key to PA_EXPENDITURE_ITEMS_ALL, rather than acting as an independent hub or as a resolving link between multiple business entities. The burden detail is therefore best modeled as dependent attributes hanging off the expenditure item grain.
Key Information Stored
The table contains 19 documented columns. The most operationally significant include:
- EXPENDITURE_ITEM_ID — foreign key to PA_EXPENDITURE_ITEMS_ALL; identifies the direct cost expenditure item on which the burden was computed.
- AWARD_PROJECT_ID — the awarded project against which the burden component is recorded.
- ACTUAL_PROJECT_ID and ACTUAL_TASK_ID — the project and task that actually incurred the burden cost.
- BURDEN_COST_CODE — the burden cost code from the burden schedule applied to the expenditure item.
- BURDEN_EXP_TYPE — the burden expenditure type used to classify the indirect cost.
- AMOUNT — the calculated burden amount for the component.
- EVENT_NUM and EVENT_TYPE — identify the billing event and its type for which the burden component was generated.
- EXPENDITURE_ORG_ID — the organization owning the underlying expenditure item.
- ADL_LINE_NUM — the award distribution line reference associated with the burden.
- RESOURCE_LIST_MEMBER_ID — links to the resource list member used in rate derivation.
- REVENUE_ACCUMULATED — the accumulated revenue amount tied to the burden component.
- REQUEST_ID — the concurrent request that created or last processed the row.
- Audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN.
The documented unique index, GMS_BURDEN_COMPONENTS_U1, spans AWARD_PROJECT_ID, BURDEN_COST_CODE, EVENT_TYPE, EXPENDITURE_ITEM_ID, ADL_LINE_NUM, and REQUEST_ID. No dedicated surrogate primary key column is documented; the unique index acts as the business-key candidate and enforces uniqueness at the component level. The true grain is the combination of expenditure item, burden cost code, event type, award distribution line, and request.
Common Use Cases and Queries
Typical usage centers on auditing and reconciling burden calculations for sponsored projects, validating indirect cost recovery during billing, and investigating discrepancies between direct and burdened amounts on an award.
A common query joins burden components back to expenditure items to reconstruct the full direct-plus-indirect cost picture for an award:
- Reconcile burden amounts by award:
SELECT b.award_project_id, b.burden_cost_code, b.burden_exp_type, SUM(b.amount) FROM gms_burden_components b WHERE b.award_project_id = :award GROUP BY b.award_project_id, b.burden_cost_code, b.burden_exp_type; - Trace a burden line to its direct cost:
SELECT e.expenditure_item_id, e.expenditure_type, b.burden_cost_code, b.amount FROM pa_expenditure_items_all e JOIN gms_burden_components b ON b.expenditure_item_id = e.expenditure_item_id WHERE e.project_id = :project; - Investigate a billing event: filter by EVENT_NUM and EVENT_TYPE to list all burden components generated for that event.
- Audit concurrent processing: group by REQUEST_ID to identify rows created by a specific burden generation run.
These patterns support grants accounting reporting, indirect cost rate validation, and reconciliation of billing event extracts.
Related Objects
The most significant related object is the foreign-key parent, PA_EXPENDITURE_ITEMS_ALL, joined on EXPENDITURE_ITEM_ID; this is the direct cost detail from which burden components derive. Award and project context is provided through AWARD_PROJECT_ID (GMS_AWARDS / PA_PROJECTS), ACTUAL_PROJECT_ID and ACTUAL_TASK_ID (PA_PROJECTS_ALL, PA_TASKS), and EXPENDITURE_ORG_ID (HR_ALL_ORGANIZATION_UNITS). Billing event processing links to the GMS billing event tables that consume these burden rows. The BURDEN_COST_CODE and BURDEN_EXP_TYPE reference the burden setup tables (burden cost codes and expenditure types). Finally, RESOURCE_LIST_MEMBER_ID links to the resource list setup used for rate derivation, and REQUEST_ID relates to FND_CONCURRENT_REQUESTS for the generating process.
-
Table: GMS_BURDEN_COMPONENTS
12.2.2
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_BURDEN_COMPONENTS, object_name:GMS_BURDEN_COMPONENTS, status:VALID, product: GMS - Grants Accounting , description: Burden components of billing events , implementation_dba_data: GMS.GMS_BURDEN_COMPONENTS ,
-
Table: GMS_BURDEN_COMPONENTS
12.1.1
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_BURDEN_COMPONENTS, object_name:GMS_BURDEN_COMPONENTS, status:VALID, product: GMS - Grants Accounting , description: Burden components of billing events , implementation_dba_data: GMS.GMS_BURDEN_COMPONENTS ,
-
SYNONYM: APPS.GMS_BURDEN_COMPONENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_BURDEN_COMPONENTS, status:VALID,
-
VIEW: GMS.GMS_BURDEN_COMPONENTS#
12.2.2
owner:GMS, object_type:VIEW, object_name:GMS_BURDEN_COMPONENTS#, status:VALID,
-
SYNONYM: APPS.GMS_BURDEN_COMPONENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_BURDEN_COMPONENTS, status:VALID,
-
VIEW: GMS.GMS_BURDEN_COMPONENTS#
12.2.2
-
TABLE: GMS.GMS_BURDEN_COMPONENTS
12.1.1
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_BURDEN_COMPONENTS, object_name:GMS_BURDEN_COMPONENTS, status:VALID,
-
TABLE: GMS.GMS_BURDEN_COMPONENTS
12.2.2
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_BURDEN_COMPONENTS, object_name:GMS_BURDEN_COMPONENTS, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.1.1
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMS_SWEEPER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_SWEEPER, status:VALID,
-
PACKAGE BODY: APPS.GMS_BILLING_ADJUSTMENTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_BILLING_ADJUSTMENTS, status:VALID,
-
PACKAGE BODY: APPS.GMS_SWEEPER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_SWEEPER, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID,
-
PACKAGE BODY: APPS.GMS_BILLING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_BILLING, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID,
-
PACKAGE BODY: APPS.GMS_BILLING_ADJUSTMENTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_BILLING_ADJUSTMENTS, status:VALID,
-
PACKAGE BODY: APPS.GMS_BILLING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_BILLING, status:VALID,
-
APPS.GMS_BILLING_ADJUSTMENTS SQL Statements
12.1.1
-
View: GMS_STATUS_ACTUALS_BASE1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACTUALS_BASE1_V ,
-
APPS.GMS_BILLING_ADJUSTMENTS SQL Statements
12.2.2
-
Table: PA_EXPENDITURE_ITEMS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_EXPENDITURE_ITEMS_ALL, object_name:PA_EXPENDITURE_ITEMS_ALL, status:VALID, product: PA - Projects , description: The smallest units of expenditure charged to projects and tasks , implementation_dba_data: PA.PA_EXPENDITURE_ITEMS_ALL ,
-
View: GMS_STATUS_ACTUALS_BASE1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACTUALS_BASE1_V ,
-
Table: PA_EXPENDITURE_ITEMS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_EXPENDITURE_ITEMS_ALL, object_name:PA_EXPENDITURE_ITEMS_ALL, status:VALID, product: PA - Projects , description: The smallest units of expenditure charged to projects and tasks , implementation_dba_data: PA.PA_EXPENDITURE_ITEMS_ALL ,
-
APPS.GMS_BILLING SQL Statements
12.1.1
-
APPS.GMS_BILLING SQL Statements
12.2.2
-
APPS.GMS_SWEEPER SQL Statements
12.2.2
-
APPS.GMS_SWEEPER SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMS_BILLING_ADJUSTMENTS
12.2.2
-
PACKAGE BODY: APPS.GMS_BILLING_ADJUSTMENTS
12.1.1
-
VIEW: APPS.GMS_DRAFT_INV_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_DRAFT_INV_LINE_DETAILS_V, object_name:GMS_DRAFT_INV_LINE_DETAILS_V, status:VALID,
-
VIEW: APPS.GMS_DRAFT_INV_LINE_DETAILS_V
12.1.1
-
VIEW: APPS.GMS_DRAFT_INV_LINE_DETAILS_V
12.2.2
-
VIEW: APPS.GMS_DRAFT_INV_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_DRAFT_INV_LINE_DETAILS_V, object_name:GMS_DRAFT_INV_LINE_DETAILS_V, status:VALID,
-
APPS.GMS_SWEEPER dependencies on GMS_BURDEN_COMPONENTS
12.1.1
-
APPS.GMS_BILLING dependencies on GMS_BURDEN_COMPONENTS
12.2.2
-
APPS.GMS_BILLING_ADJUSTMENTS dependencies on GMS_BURDEN_COMPONENTS
12.2.2
-
APPS.GMS_BILLING dependencies on GMS_BURDEN_COMPONENTS
12.1.1
-
APPS.GMS_BILLING_ADJUSTMENTS dependencies on GMS_BURDEN_COMPONENTS
12.1.1
-
APPS.GMS_SWEEPER dependencies on GMS_BURDEN_COMPONENTS
12.2.2