Search Results gms_commitments_override_v
Overview
APPS.GMS_COMMITMENTS_OVERRIDE_V is a Grants Accounting (GMS) view in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes commitment (encumbrance) records for sponsored projects and awards, drawing predominantly from Oracle Purchasing requisition distributions. The view is named "OVERRIDE" because it supplies commitment data that Grants Accounting uses to override or supplement the standard project commitment streams maintained by the Projects module. It is part of the integration surface between Oracle Purchasing, Oracle Projects, and GMS, allowing sponsored-project burdening rules and award-level compiled set identifiers to be applied to requisition-based commitments.
Records returned by the view represent purchasing requisitions that have not yet been converted into purchase orders or invoices. This makes the view a reporting source for outstanding requisition commitments against grant-funded tasks. It also supports funds checking and award budget consumption reporting within Grants Accounting.
Underlying Base Objects
The view is defined over a set of documented base objects that the ETRM metadata lists for 12.2.2. The primary fact source is the view PA_PROJ_REQ_DISTRIBUTIONS, aliased in the view text as PPRD, which supplies project, task, requisition, distribution, item, date, vendor, and amount attributes.
Surrounding the main source are several supporting objects and packages:
- PA_PROJ_PO_DISTRIBUTIONS and PA_PROJ_AP_INV_DISTRIBUTIONS — parallel commitment sources for purchase orders and AP invoice distributions referenced in the view definition.
- PJM_REQ_COMMITMENTS_V and PJM_PO_COMMITMENTS_V — synonyms wrapping Projects commitment views.
- CST_PROJMFG_CMT_VIEW — a costing synonym related to project manufacturing commitments.
- GMS_COST_PLUS_EXTN — supplies the sponsored-project test (IS_SPON_PROJECT) and award compiled set retrieval functions.
- PA_BURDEN_CMTS and PA_ACCUM_UTILS — provide burdened cost calculation and current PA/GL period retrieval.
- PA_CURRENCY, PA_MULTI_CURRENCY, PA_CMT_UTILS, PA_FUNDS_CONTROL_UTILS, PA_UTILS4, PA_TASK_UTILS, PA_PJC_CWK_UTILS — utility packages for currency, commitment, funds control, task, and period logic.
- FND_PROFILE, HR_GENERAL, HR_SECURITY — standard EBS infrastructure for profile values and security.
- AP_INVOICES_PKG — AP integration package.
The view therefore sits atop the Projects commitment infrastructure, with GMS-specific extension logic applied through GMS_COST_PLUS_EXTN.
Key Columns
- PROJECT_ID, TASK_ID — identify the sponsored project and task bearing the commitment.
- REQ_NUMBER, REQ_LINE, REQ_DISTRIBUTION_ID, REQUISITION_HEADER_ID — requisition identification.
- ITEM_DESCRIPTION, QUANTITY, UNIT, UNIT_PRICE, AMOUNT — the requisition line detail and base commitment amount.
- EXPENDITURE_ITEM_DATE, EXPENDITURE_TYPE, EXPENDITURE_CATEGORY, REVENUE_CATEGORY, EXPENDITURE_ORGANIZATION_ID — expenditure classification used in burdening and award accounting.
- VENDOR_ID, VENDOR_NAME, REQUESTOR_NAME, NEED_BY_DATE, APPROVED_FLAG — purchasing context.
- Compiled set ID and burdened cost columns — computed via DECODE against IS_SPON_PROJECT: sponsored projects use GMS_COST_PLUS_EXTN.Get_Award_Compiled_Set_ID and Get_Burdenable_Raw_Cost; non-sponsored projects use PA_BURDEN_CMTS.Get_CMT_Burdened_Cost.
- Literal markers 'ORACLE_PURCHASING', 'R' (requisition), and 'VI' identify the source and record type.
- PA_ACCUM_UTILS.GET_CURRENT_PA_PERIOD and GET_CURRENT_GL_PERIOD populate period columns.
Common Use Cases and Queries
Typical uses include reporting outstanding requisition commitments by award, verifying burdened commitment amounts for sponsored projects, and reconciling GMS award budget consumption against purchasing activity.
A simple query filtering by project and task:
- SELECT project_id, task_id, req_number, req_line, amount, burdended_cost FROM apps.gms_commitments_override_v WHERE project_id = :p_project_id AND task_id = :p_task_id;
Reporting by expenditure type and organization:
- SELECT expenditure_type, expenditure_organization_id, SUM(amount) FROM apps.gms_commitments_override_v WHERE project_id = :p_project_id GROUP BY expenditure_type, expenditure_organization_id;
Because the view invokes PL/SQL functions per row (burdening, compiled set lookup, period retrieval), queries against large requisition volumes can be expensive. Restricting by PROJECT_ID, TASK_ID, or date range is recommended to limit function execution and improve response time.
-
View: 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, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_COMMITMENTS_OVERRIDE_V ,
-
View: 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, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_COMMITMENTS_OVERRIDE_V ,
-
SYNONYM: APPS.PJM_PO_COMMITMENTS_V
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PJM_PO_COMMITMENTS_V, status:VALID,
-
SYNONYM: APPS.CST_PROJMFG_CMT_VIEW
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CST_PROJMFG_CMT_VIEW, status:VALID,
-
PACKAGE: APPS.PA_BURDEN_CMTS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_BURDEN_CMTS, status:VALID,
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.1.1
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.2.2
-
PACKAGE: APPS.GMS_COST_PLUS_EXTN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMS_COST_PLUS_EXTN, status:VALID,
-
SYNONYM: APPS.CST_PROJMFG_CMT_VIEW
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CST_PROJMFG_CMT_VIEW, status:VALID,
-
SYNONYM: APPS.PJM_PO_COMMITMENTS_V
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PJM_PO_COMMITMENTS_V, status:VALID,
-
SYNONYM: APPS.PJM_REQ_COMMITMENTS_V
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PJM_REQ_COMMITMENTS_V, status:VALID,
-
SYNONYM: APPS.PJM_REQ_COMMITMENTS_V
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PJM_REQ_COMMITMENTS_V, 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,
-
PACKAGE: APPS.GMS_COST_PLUS_EXTN
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMS_COST_PLUS_EXTN, status:VALID,
-
PACKAGE: APPS.PA_ACCUM_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_ACCUM_UTILS, status:VALID,
-
PACKAGE: APPS.PA_CMT_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_CMT_UTILS, status:VALID,
-
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
-
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,
-
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 ,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.PA_ACCUM_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_ACCUM_UTILS, status:VALID,
-
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_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.PA_TASK_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_TASK_UTILS, 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_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_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,
-
VIEW: APPS.PA_PROJ_REQ_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_REQ_DISTRIBUTIONS, object_name:PA_PROJ_REQ_DISTRIBUTIONS, status:VALID,
-
PACKAGE: APPS.PA_CURRENCY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CURRENCY, status:VALID,
-
VIEW: APPS.PA_PROJ_REQ_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_REQ_DISTRIBUTIONS, object_name:PA_PROJ_REQ_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PO_DISTRIBUTIONS, object_name:PA_PROJ_PO_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_AP_INV_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_AP_INV_DISTRIBUTIONS, object_name:PA_PROJ_AP_INV_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PO_DISTRIBUTIONS, object_name:PA_PROJ_PO_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_AP_INV_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_AP_INV_DISTRIBUTIONS, object_name:PA_PROJ_AP_INV_DISTRIBUTIONS, 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,