Search Results gms_commitment_txns_v
Overview
GMS_COMMITMENT_TXNS_V is a Grants Accounting (GMS) reporting view owned by the APPS schema. The view consolidates outstanding project-related commitment costs, giving grant administrators and project accountants a single, denormalized source for encumbrance and obligation data tied to sponsored projects. Because commitments represent purchase requisitions, purchase orders, and other pre-invoice obligations, the view is central to funds-availability analysis, award budget monitoring, and period-end commitment reporting.
The view is defined as a UNION ALL of two underlying sources: the primary commitment transaction stream and the override stream exposed through GMS_COMMITMENTS_OVERRIDE_V. This union lets the view surface both standard commitment records and manually overridden commitment values without the caller needing to reconcile them separately. Columns are largely sourced from Oracle Purchasing and Projects commitment tables, with currency amounts wrapped by PA_CURRENCY.ROUND_CURRENCY_AMT to enforce project accounting round-off conventions.
Underlying Base Objects
The documented metadata lists a broad set of referenced objects rather than a single base table, reflecting the computed nature of the view. Key dependencies include:
- GMS_COMMITMENTS_OVERRIDE_V (VIEW) — the second leg of the union, supplying overridden commitment rows.
- GMS_ENC_PSI_V (VIEW) — encumbrance/project-summary detail.
- PA_CURRENCY, PA_MULTI_CURRENCY — currency conversion and rounding routines applied to raw, burdened, denominated, and receipt amounts.
- PA_BURDEN_CMTS, PA_CMT_UTILS, PA_ACCUM_UTILS — burdening and commitment accumulation logic.
- PA_EXPENDITURE_TYPES, PA_COST_BASE_EXP_TYPES, PA_IND_COST_CODES, PA_IND_COMPILED_SETS, PA_COMPILED_MULTIPLIERS — expenditure type, cost code, and indirect-cost multiplier resolution.
- PA_FUNDS_CONTROL_UTILS, PA_TASK_UTILS, PA_PJC_CWK_UTILS, PA_UTILS4 — funds control and task/project utility logic.
- AP_INVOICES_PKG, HR_GENERAL, HR_SECURITY, FND_PROFILE, GMS_COST_PLUS_EXTN — invoicing, security, profile, and extension hooks.
Because these are packages, synonyms, and views rather than a single physical table, the view is effectively a computed reporting layer over the Projects commitment engine.
Key Columns
- CMT_HEADER_ID / CMT_DISTRIBUTION_ID — the commitment header and distribution identifiers;
CMT_HEADER_IDis the value most commonly used for lookups and joins back to Purchasing documents. - CMT_NUMBER, CMT_LINE_NUMBER — human-readable commitment document and line references.
- PROJECT_ID, TASK_ID — project and task context for the commitment.
- TRANSACTION_SOURCE, LINE_TYPE, SYSTEM_LINKAGE_FUNCTION — classify the origin and nature of the transaction.
- EXPENDITURE_TYPE, EXPENDITURE_CATEGORY, REVENUE_CATEGORY — cost classification for reporting.
- ACCT_RAW_COST, ACCT_BURDENED_COST, DENOM_RAW_COST, DENOM_BURDENED_COST — rounded raw and burdened costs in accounted and denominated currency.
- QUANTITY_ORDERED, QUANTITY_DELIVERED, QUANTITY_INVOICED, QUANTITY_OUTSTANDING_DELIVERY, QUANTITY_OUTSTANDING_INVOICE, QUANTITY_CANCELLED, QUANTITY_OVERBILLED — lifecycle quantities with matching amount columns.
- CMT_APPROVED_FLAG, CMT_APPROVED_DATE, CMT_PROMISED_DATE, CMT_NEED_BY_DATE — approval and scheduling attributes.
- VENDOR_ID, VENDOR_NAME, ORGANIZATION_ID — supplier and inventory organization context.
- ACCT_CURRENCY_CODE, DENOM_CURRENCY_CODE, RECEIPT_CURRENCY_CODE plus exchange rate columns — multi-currency support.
Common Use Cases and Queries
Typical scenarios include outstanding commitment reporting by project/award, funds-availability checks before new requisitions, and reconciliation of ordered versus invoiced quantities. A query keyed on CMT_HEADER_ID — the term searched — is common when tracing a specific commitment document.
SELECT cmt_header_id, cmt_number, project_id, task_id,
expenditure_type, acct_raw_cost, acct_burdened_cost,
quantity_ordered, quantity_invoiced
FROM apps.gms_commitment_txns_v
WHERE cmt_header_id = :p_cmt_header_id;
SELECT project_id, task_id, expenditure_type,
SUM(acct_burdened_cost) outstanding_cost
FROM apps.gms_commitment_txns_v
WHERE cmt_approved_flag = 'Y'
GROUP BY project_id, task_id, expenditure_type;
Because security and profile checks are embedded via HR_SECURITY and FND_PROFILE, results are naturally filtered according to the operating unit and security context of the querying user.
-
View: GMS_COMMITMENT_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_TXNS_V, object_name:GMS_COMMITMENT_TXNS_V, status:VALID, product: GMS - Grants Accounting , description: A view of all oustanding project-related commitment costs. , implementation_dba_data: APPS.GMS_COMMITMENT_TXNS_V ,
-
View: GMS_COMMITMENT_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_TXNS_V, object_name:GMS_COMMITMENT_TXNS_V, status:VALID, product: GMS - Grants Accounting , description: A view of all oustanding project-related commitment costs. , implementation_dba_data: APPS.GMS_COMMITMENT_TXNS_V ,
-
PACKAGE: APPS.PA_BURDEN_CMTS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_BURDEN_CMTS, status:VALID,
-
PACKAGE: APPS.PA_BURDEN_CMTS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_BURDEN_CMTS, 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_RATE_SCHEDULES_ALL_BG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_RATE_SCHEDULES_ALL_BG, status:VALID,
-
PACKAGE: APPS.GMS_COST_PLUS_EXTN
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMS_COST_PLUS_EXTN, status:VALID,
-
PACKAGE: APPS.GMS_COST_PLUS_EXTN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMS_COST_PLUS_EXTN, status:VALID,
-
PACKAGE: APPS.PA_CMT_UTILS
12.1.1
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_RATE_SCHEDULES_ALL_BG
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_IND_RATE_SCHEDULES_ALL_BG, status:VALID,
-
PACKAGE: APPS.PA_ACCUM_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_ACCUM_UTILS, 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_PJC_CWK_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_PJC_CWK_UTILS, status:VALID,
-
PACKAGE: APPS.PA_PJC_CWK_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_PJC_CWK_UTILS, status:VALID,
-
SYNONYM: APPS.PA_IND_COMPILED_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COMPILED_SETS, status:VALID,
-
PACKAGE: APPS.PA_ACCUM_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_ACCUM_UTILS, status:VALID,
-
SYNONYM: APPS.PA_IND_COST_CODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_IND_COST_CODES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
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,
-
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,
-
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,
-
SYNONYM: APPS.PA_COMPILED_MULTIPLIERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_COMPILED_MULTIPLIERS, status:VALID,
-
PACKAGE: APPS.PA_FUNDS_CONTROL_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_FUNDS_CONTROL_UTILS, status:VALID,
-
PACKAGE: APPS.PA_UTILS4
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_UTILS4, status:VALID,
-
PACKAGE: APPS.AP_INVOICES_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_INVOICES_PKG, status:VALID,
-
PACKAGE: APPS.AP_INVOICES_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_INVOICES_PKG, status:VALID,
-
PACKAGE: APPS.PA_TASK_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_TASK_UTILS, status:VALID,
-
PACKAGE: APPS.PA_MULTI_CURRENCY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_MULTI_CURRENCY, status:VALID,
-
PACKAGE: APPS.PA_MULTI_CURRENCY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_MULTI_CURRENCY, status:VALID,
-
VIEW: APPS.GMS_COMMITMENTS_OVERRIDE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENTS_OVERRIDE_V, object_name:GMS_COMMITMENTS_OVERRIDE_V, status:VALID,
-
VIEW: APPS.GMS_ENC_PSI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENC_PSI_V, object_name:GMS_ENC_PSI_V, status:VALID,
-
VIEW: APPS.GMS_ENC_PSI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENC_PSI_V, object_name:GMS_ENC_PSI_V, status:VALID,
-
VIEW: APPS.GMS_COMMITMENTS_OVERRIDE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENTS_OVERRIDE_V, object_name:GMS_COMMITMENTS_OVERRIDE_V, status:VALID,
-
PACKAGE: APPS.PA_CURRENCY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_CURRENCY, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_TYPES, status:VALID,
-
PACKAGE: APPS.PA_CURRENCY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CURRENCY, status:VALID,
-
SYNONYM: APPS.PA_EXPENDITURE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_EXPENDITURE_TYPES, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_TXNS_V, object_name:GMS_COMMITMENT_TXNS_V, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_TXNS_V, object_name:GMS_COMMITMENT_TXNS_V, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, 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. ,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,