Search Results gms_encumbrances
Overview
GMS_ENCUMBRANCES is a reporting and inquiry view in the Oracle E-Business Suite Grants Accounting (GMS) module. It exposes encumbrance records associated with sponsored projects, awards, and grant-funded transactions, presenting a denormalized, business-friendly projection of the underlying encumbrance base table. In Oracle EBS 12.1.1 and 12.2.2, the view is used primarily for inquiry, reporting, and integration scenarios where grant encumbrance data must be retrieved without directly accessing the transactional base table.
The view is defined with a row-level security predicate based on the ORG_ID column. The WHERE clause compares ORG_ID against the operating unit derived from the USERENV('CLIENT_INFO') session context, using the standard multi-org pattern seen throughout EBS. This ensures that a query executed in the context of a given operating unit returns only encumbrances belonging to that organization, consistent with Multi-Org Access Control (MOAC) behavior. Notably, the ETRM metadata states that the view is not implemented in the reference database, meaning the definition is documented but the object may not exist in every environment; its presence depends on whether Grants Accounting encumbrance functionality has been deployed.
Underlying Base Objects
The view is defined over a single documented base object: GMS_ENCUMBRANCES_ALL. The view text selects a specific list of columns from GMS_ENCUMBRANCES_ALL and applies the ORG_ID security filter, but does not perform joins to any other tables. GMS_ENCUMBRANCES_ALL is the multi-org base table that stores encumbrance header records for grants, and GMS_ENCUMBRANCES acts as the secured, operating-unit-filtered synonym-like view over it. Because the ETRM metadata documents no additional referenced base objects, all columns exposed by the view originate from GMS_ENCUMBRANCES_ALL. Related detail lines, if required, would typically be obtained from separate encumbrance line tables rather than through this view.
Key Columns
The view exposes a broad set of columns that describe each encumbrance and its lifecycle. The most frequently referenced columns include:
- ENCUMBRANCE_ID — Primary identifier for the encumbrance record.
- ENCUMBRANCE_STATUS_CODE — Current status of the encumbrance (for example, submitted, approved, or rejected).
- ENCUMBRANCE_CLASS_CODE — Classifies the encumbrance type.
- ENCUMBRANCE_ENDING_DATE — Date on which the encumbrance expires.
- INCURRED_BY_PERSON_ID — The person who incurred the encumbrance.
- INCURRED_BY_ORGANIZATION_ID — The organization that incurred the encumbrance; this is the column most relevant to the user's search term and is central to organizational reporting.
- CONTROL_TOTAL_AMOUNT — The total controlled amount of the encumbrance.
- ENTERED_BY_PERSON_ID — The person who entered the record.
- DENOM_CURRENCY_CODE / ACCT_CURRENCY_CODE — Denominational and accounting currencies, with associated rate columns (ACCT_RATE_DATE, ACCT_RATE_TYPE, ACCT_EXCHANGE_RATE).
- ORG_ID — The operating unit that owns the record and drives the view's security predicate.
- WF_STATUS_CODE / TRANSFER_STATUS_CODE — Workflow and transfer status indicators.
- Descriptive and audit columns (DESCRIPTION, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and the ATTRIBUTE1 through ATTRIBUTE10 flexfields).
Common Use Cases and Queries
The view is commonly queried to report encumbrances by incurring organization, to reconcile grant commitments, and to feed downstream integrations. A typical query filtering on the incurred-by organization is:
SELECT encumbrance_id, incurred_by_organization_id, incurred_by_person_id, control_total_amount, encumbrance_status_code FROM gms_encumbrances WHERE incurred_by_organization_id = :org_id;SELECT encumbrance_status_code, COUNT(*), SUM(control_total_amount) FROM gms_encumbrances GROUP BY encumbrance_status_code;SELECT encumbrance_id, encumbrance_ending_date FROM gms_encumbrances WHERE encumbrance_ending_date BETWEEN :start_date AND :end_date;
Because the view enforces ORG_ID security automatically, no additional organization predicate is required when the correct operating unit context is set. Reports that join this view to award or project tables should still be validated against GMS_ENCUMBRANCES_ALL to confirm column-level lineage, as the view is documented as not implemented in the reference database.
-
View: GMS_ENCUMBRANCES
12.2.2
product: GMS - Grants Accounting , implementation_dba_data: Not implemented in this database ,
-
View: GMS_ENCUMBRANCES
12.1.1
product: GMS - Grants Accounting , implementation_dba_data: Not implemented in this database ,
-
APPS.GMS_ENCUMBRANCE_GROUPS_PKG SQL Statements
12.1.1
-
APPS.GMS_ENCUMBRANCE_GROUPS_PKG SQL Statements
12.2.2
-
APPS.GMS_ENCUMBRANCES_PKG SQL Statements
12.1.1
-
APPS.GMS_ENCUMBRANCES_PKG SQL Statements
12.2.2
-
VIEW: APPS.GMS_ENCUMBRANCES_V
12.2.2
-
APPS.GMS_ENC_COPY SQL Statements
12.2.2
-
APPS.GMS_ENC_COPY SQL Statements
12.1.1
-
VIEW: APPS.GMS_ENCUMBRANCES_V
12.1.1
-
VIEW: APPS.GMS_ENCUMBRANCE_ITEMS_V
12.1.1
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCE_GROUPS_PKG
12.2.2
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCE_GROUPS_PKG
12.1.1
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCES_PKG
12.2.2
-
SYNONYM: APPS.GMS_ENCUMBRANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCES, status:VALID,
-
VIEW: APPS.GMS_ENCUMBRANCE_ITEMS_V
12.2.2
-
VIEW: APPS.GMS_ENC_PSI_V
12.2.2
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_ENCUMBRANCES_PKG, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCES, status:VALID,
-
VIEW: APPS.GMS_ENC_PSI_V
12.1.1
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_ENCUMBRANCES_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCES_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCE_GROUPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_ENCUMBRANCE_GROUPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMS_ENCUMBRANCE_GROUPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_ENCUMBRANCE_GROUPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMS_ENC_ADJUSTMENTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_ENC_ADJUSTMENTS, status:VALID,
-
PACKAGE BODY: APPS.GMS_ENC_ADJUSTMENTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_ENC_ADJUSTMENTS, status:VALID,
-
View: 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, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_ENC_PSI_V ,
-
View: 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, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_ENC_PSI_V ,
-
12.2.2 FND Design Data
12.2.2
-
View: GMS_ENCUMBRANCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCES_V, object_name:GMS_ENCUMBRANCES_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_ENCUMBRANCES_V ,
-
View: GMS_ENCUMBRANCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCES_V, object_name:GMS_ENCUMBRANCES_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_ENCUMBRANCES_V ,
-
12.1.1 FND Design Data
12.1.1
-
View: GMS_ENCUMBRANCE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCE_ITEMS_V, object_name:GMS_ENCUMBRANCE_ITEMS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_ENCUMBRANCE_ITEMS_V ,
-
View: GMS_ENCUMBRANCE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCE_ITEMS_V, object_name:GMS_ENCUMBRANCE_ITEMS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_ENCUMBRANCE_ITEMS_V ,
-
APPS.GMS_ENC_ADJUSTMENTS SQL Statements
12.2.2
-
APPS.GMS_ENC_ADJUSTMENTS SQL Statements
12.1.1
-
VIEW: GMS.GMS_ENCUMBRANCES_ALL#
12.2.2
owner:GMS, object_type:VIEW, object_name:GMS_ENCUMBRANCES_ALL#, status:VALID,
-
VIEW: APPS.GMS_ENCUMBRANCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCES_V, object_name:GMS_ENCUMBRANCES_V, status:VALID,
-
VIEW: APPS.GMS_ENCUMBRANCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCES_V, object_name:GMS_ENCUMBRANCES_V, status:VALID,
-
TABLE: GMS.GMS_ENCUMBRANCES_ALL
12.1.1
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_ENCUMBRANCES_ALL, object_name:GMS_ENCUMBRANCES_ALL, 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_ENCUMBRANCE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCE_ITEMS_V, object_name:GMS_ENCUMBRANCE_ITEMS_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_ENCUMBRANCE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENCUMBRANCE_ITEMS_V, object_name:GMS_ENCUMBRANCE_ITEMS_V, status:VALID,
-
APPS.GMS_TRANSACTIONS SQL Statements
12.2.2
-
APPS.GMS_TRANSACTIONS SQL Statements
12.1.1
-
TABLE: GMS.GMS_ENCUMBRANCES_ALL
12.2.2
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_ENCUMBRANCES_ALL, object_name:GMS_ENCUMBRANCES_ALL, status:VALID,
-
PACKAGE BODY: APPS.GMS_ENC_COPY
12.1.1