Search Results gms_commitment_burden_v
Overview
The GMS_COMMITMENT_BURDEN_V view is a reporting object owned by the APPS schema in Oracle E-Business Suite, belonging to the GMS – Grants Accounting product family. It presents commitment (encumbrance) and burdened cost information for grants-funded transactions, combining obligations recorded against awards with their associated indirect cost (burden) components. The view is defined as a UNION ALL of two branches: a first branch drawing raw encumbered amounts from GMS_COMMITMENT_ENCUMBERED_V, and a second branch computing burdened cost by multiplying burdenable raw cost by the applicable compiled multiplier from PA_COMPILED_MULTIPLIERS. Both branches are aggregated by grouping keys such as document type, transaction source, commitment number, project, task, award, expenditure type, expenditure item date, organization, vendor, unit of measure, unit price, and GL date. Within the Grants Accounting module, this view supports burdened commitment reporting, award and project fund analysis, and integration with purchasing and project costing sub-ledgers.
Underlying Base Objects
According to the documented ETRM metadata for 12.2.2, the view references the following base objects:
- GMS_COMMITMENT_ENCUMBERED_V (VIEW) – the primary source of encumbered commitment line data, providing document type, transaction source, commitment number, project/task/award identifiers, expenditure type, expenditure item date, organization, vendor, unit of measure, unit price, period, burdenable raw cost, and indirect compiled set identifiers.
- PA_COMPILED_MULTIPLIERS (SYNONYM) – supplies the compiled multiplier applied to burdenable raw cost to derive the burdened amount per indirect cost code and cost base.
- PA_COST_BASE_EXP_TYPES (SYNONYM) – restricts eligible base expenditure types, filtered on
COST_BASE_TYPE = 'INDIRECT COST'. - PA_IND_COST_CODES (SYNONYM) – joins indirect cost codes to compiled multipliers.
- PA_IND_COMPILED_SETS (SYNONYM) – validates the organization, cost base, and rate schedule revision context.
- PA_IND_RATE_SCH_REVISIONS (SYNONYM) – links the cost plus structure to the applicable rate schedule revision.
- PA_CMT_UTILS (PACKAGE), GMS_BUDGET_BALANCE (PACKAGE), and PO_INTG_DOCUMENT_FUNDS_GRP (PACKAGE) – supporting programmatic objects documented as referenced by the view’s defining logic.
Key Columns
- DOCUMENT_TYPE, TRANSACTION_SOURCE, CMT_NUMBER, DESCRIPTION – identity and classification of the commitment document.
- PROJECT_ID, TASK_ID, AWARD_ID – grants and project structures the commitment is charged against.
- EXPENDITURE_TYPE and EXPENDITURE_ITEM_DATE – the expenditure classification and date used for burdening and period placement.
- ORGANIZATION_ID – owning organization used in indirect cost determination.
- VENDOR_NAME, UNIT_OF_MEASURE, UNIT_PRICE – purchasing detail for the obligation.
- PA_PERIOD, GL_DATE – accounting period and general ledger date.
- TOT_CMT_QUANTITY (summed) – total committed quantity.
- ACCT_RAW_COST (summed) – raw cost from the encumbered branch.
- ACCT_BURDENED_COST (summed) – for the first branch equals raw cost; for the second branch equals
NVL(BURDENABLE_RAW_COST,0) * COMPILED_MULTIPLIER.
Common Use Cases and Queries
Typical scenarios include reporting burdened commitments by award and expenditure type, reconciling commitment versus budget balances, and analyzing burdenable versus burdened amounts for a project/organization/period combination. The EXPENDITURE_ITEM_DATE column is a frequent filter or grouping key, particularly for period-based commitment roll-forward reporting.
SELECT award_id,
project_id,
task_id,
expenditure_type,
expenditure_item_date,
SUM(acct_raw_cost) raw_cost,
SUM(acct_burdened_cost) burdened_cost
FROM apps.gms_commitment_burden_v
WHERE award_id = :p_award_id
AND expenditure_item_date BETWEEN :p_start AND :p_end
GROUP BY award_id, project_id, task_id,
expenditure_type, expenditure_item_date
ORDER BY expenditure_item_date, expenditure_type;
A second pattern reconciles commitment totals per document to GL dates, joining the view to purchasing or project costing data by CMT_NUMBER. Because the view is an aggregated UNION ALL, queries should apply consistent filters to both branches to avoid double counting; the second branch returns zero quantity and raw cost, contributing only burdened cost. Analysts should also confirm that IND_COMPILED_SET_ID is populated and that BURDENABLE_RAW_COST is non-zero, since these conditions gate inclusion in the burdened-cost branch.
-
View: GMS_COMMITMENT_BURDEN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_BURDEN_V, object_name:GMS_COMMITMENT_BURDEN_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_COMMITMENT_BURDEN_V ,
-
View: GMS_COMMITMENT_BURDEN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_BURDEN_V, object_name:GMS_COMMITMENT_BURDEN_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_COMMITMENT_BURDEN_V ,
-
VIEW: APPS.GMS_STATUS_COMMITMENTS_V
12.2.2
-
VIEW: APPS.GMS_STATUS_COMMITMENTS_V
12.1.1
-
PACKAGE: APPS.GMS_BUDGET_BALANCE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMS_BUDGET_BALANCE, status:VALID,
-
PACKAGE: APPS.GMS_BUDGET_BALANCE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMS_BUDGET_BALANCE, status:VALID,
-
PACKAGE: APPS.PO_INTG_DOCUMENT_FUNDS_GRP
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PO_INTG_DOCUMENT_FUNDS_GRP, status:VALID,
-
PACKAGE: APPS.PA_CMT_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CMT_UTILS, status:VALID,
-
SYNONYM: APPS.PA_IND_COMPILED_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COMPILED_SETS, status:VALID,
-
SYNONYM: APPS.PA_IND_COST_CODES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COST_CODES, status:VALID,
-
PACKAGE: APPS.PA_CMT_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_CMT_UTILS, status:VALID,
-
PACKAGE: APPS.PO_INTG_DOCUMENT_FUNDS_GRP
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PO_INTG_DOCUMENT_FUNDS_GRP, status:VALID,
-
SYNONYM: APPS.PA_IND_COMPILED_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COMPILED_SETS, status:VALID,
-
View: GMS_STATUS_COMMITMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_COMMITMENTS_V ,
-
View: GMS_STATUS_COMMITMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_COMMITMENTS_V ,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.PA_IND_COST_CODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COST_CODES, status:VALID,
-
SYNONYM: APPS.PA_IND_RATE_SCH_REVISIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_RATE_SCH_REVISIONS, status:VALID,
-
SYNONYM: APPS.PA_IND_RATE_SCH_REVISIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_IND_RATE_SCH_REVISIONS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.PA_COMPILED_MULTIPLIERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_COMPILED_MULTIPLIERS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.PA_COMPILED_MULTIPLIERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_COMPILED_MULTIPLIERS, status:VALID,
-
SYNONYM: APPS.PA_COST_BASE_EXP_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_COST_BASE_EXP_TYPES, status:VALID,
-
SYNONYM: APPS.PA_COST_BASE_EXP_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_COST_BASE_EXP_TYPES, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_BURDEN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_BURDEN_V, object_name:GMS_COMMITMENT_BURDEN_V, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_ENCUMBERED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_ENCUMBERED_V, object_name:GMS_COMMITMENT_ENCUMBERED_V, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_BURDEN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_BURDEN_V, object_name:GMS_COMMITMENT_BURDEN_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_COMMITMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_COMMITMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_ENCUMBERED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_ENCUMBERED_V, object_name:GMS_COMMITMENT_ENCUMBERED_V, status:VALID,
-
eTRM - GMS Tables and Views
12.1.1
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.2.2
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.1.1
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.2.2
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1