Search Results gms_commitment_encumbered_v
Overview
GMS_COMMITMENT_ENCUMBERED_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the GMS – Grants Accounting product family. It presents commitment and encumbrance activity associated with sponsored awards, consolidating requisition and purchase order funding lines against award distributions. The view is registered as VALID in ETRM for both 12.1.1 and 12.2.2 and is intended primarily for reporting, inquiry, and downstream integration rather than transactional data entry.
The view conforms to the standard Oracle Grants Accounting requirement that award-level commitments be reconciled with encumbered requisition and purchasing documents. It materializes document type, commitment number, award identifiers, expenditure classification, organization, period name, and encumbered amounts by unioning rows sourced from the purchasing requisition path and the purchase order path. The result is a single presentation layer through which grant administrators, principal investigators, and reporting engines can query outstanding commitments by award.
Underlying Base Objects
The documented base objects reveal a composite definition spanning Purchasing, Payables, Grants Accounting, and Projects. Purchasing objects include PO_REQUISITION_HEADERS_ALL, PO_REQUISITION_LINES_ALL, PO_REQ_DISTRIBUTIONS_ALL, PO_HEADERS_ALL, PO_LINES_ALL, PO_LINE_LOCATIONS_ALL, PO_DISTRIBUTIONS_ALL, PO_LINE_TYPES, and PO_VENDORS. Award and encumbrance data derive from GMS_AWARD_DISTRIBUTIONS, GMS_ENCUMBRANCES_ALL, and GMS_ENCUMBRANCE_ITEMS_ALL. Period and source context come from PA_PERIODS, PA_TRANSACTION_SOURCES, and GL_LEDGERS.
Two packages are referenced in the view text and metadata: PO_INTG_DOCUMENT_FUNDS_GRP, which supplies the active encumbrance function for requisition distributions, and GMS_BUDGET_BALANCE, which supports award budget reconciliation. PA_CMT_UTILS is also referenced for commitment utility logic. The view text confirms a UNION ALL structure joining requisition and purchase order legs, with ADL.DOCUMENT_TYPE driving the document classification (for example 'REQ' for requisitions and PO equivalents for purchase orders). Filter predicates include NVL(RL.MODIFIED_BY_AGENT_FLAG,'N') = 'N', RL.SOURCE_TYPE_CODE = 'VENDOR', NVL(RD.ENCUMBERED_FLAG,'N') = 'Y', and status constraints ADL.ADL_STATUS = 'A' and ADL.FC_STATUS = 'A'.
Key Columns
- DOCUMENT_TYPE — identifies whether the commitment row originates from a requisition or a purchase order.
- CMT_NUMBER — the source document number (SEGMENT1 of the header), enabling drill-down to the requisition or PO.
- AWARD_ID, PROJECT_ID, TASK_ID — award and project context, aligned to GMS award distributions and PA project structures.
- EXPENDITURE_TYPE, EXPENDITURE_ITEM_DATE, EXPENDITURE_ORGANIZATION_ID — expenditure classification and organization used for accounting and cost allocation.
- ACCT_RAW_COST, ACCT_BURDENED_COST, BURDENABLE_RAW_COST — encumbered amounts, including the result of PO_INTG_DOCUMENT_FUNDS_GRP.GET_ACTIVE_ENCUMBRANCE_FUNC for requisition distributions.
- ORG_ID and ACCT_RAW_COST — organization identifier and account-level encumbrance value.
- PERIOD_NAME (PA_PERIOD) and GL_DATE — accounting period and general ledger date associated with the encumbrance.
- UNIT_OF_MEASURE, UNIT_PRICE, TOT_CMT_QUANTITY — quantity and pricing attributes, with unit of measure suppressed for amount-ordered line types.
Common Use Cases and Queries
Typical uses include award commitment inquiries, encumbrance reconciliation reports, and extracts feeding grants reporting. A representative query filters encumbrances for a specific award:
SELECT cmt_number, document_type, project_id, task_id, expenditure_type, acct_raw_cost FROM apps.gms_commitment_encumbered_v WHERE award_id = :p_award_id ORDER BY gl_date;SELECT pa_period, SUM(acct_raw_cost) FROM apps.gms_commitment_encumbered_v WHERE award_id = :p_award_id GROUP BY pa_period;SELECT document_type, COUNT(*) FROM apps.gms_commitment_encumbered_v WHERE award_id = :p_award_id GROUP BY document_type;
Because the view depends on Purchasing and Grants Accounting base tables, query performance is sensitive to the volume of open requisitions and POs for the award, and joins to PO_DISTRIBUTIONS_ALL and GMS_AWARD_DISTRIBUTIONS should be constrained by award or period where possible.
-
View: 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, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_COMMITMENT_ENCUMBERED_V ,
-
View: 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, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_COMMITMENT_ENCUMBERED_V ,
-
VIEW: APPS.GMS_COMMITMENT_BURDEN_V
12.1.1
-
VIEW: APPS.GMS_COMMITMENT_BURDEN_V
12.2.2
-
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: 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 ,
-
PACKAGE: APPS.GMS_BUDGET_BALANCE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMS_BUDGET_BALANCE, status:VALID,
-
PACKAGE: APPS.GMS_BUDGET_BALANCE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMS_BUDGET_BALANCE, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCES_ALL, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCES_ALL, 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.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,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.PA_CMT_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_CMT_UTILS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.GMS_ENCUMBRANCE_ITEMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCE_ITEMS_ALL, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCE_ITEMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCE_ITEMS_ALL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.GMS_WF_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_WF_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMS_WF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_WF_PKG, status:VALID,
-
SYNONYM: APPS.AP_SELF_ASSESSED_TAX_DIST_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_SELF_ASSESSED_TAX_DIST_ALL, 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_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.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_BURDEN_V, object_name:GMS_COMMITMENT_BURDEN_V, status:VALID,
-
SYNONYM: APPS.PA_TRANSACTION_SOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_TRANSACTION_SOURCES, status:VALID,
-
SYNONYM: APPS.PA_TRANSACTION_SOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_TRANSACTION_SOURCES, 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,
-
SYNONYM: APPS.GMS_AWARD_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_AWARD_DISTRIBUTIONS, status:VALID,
-
SYNONYM: APPS.GMS_AWARD_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_AWARD_DISTRIBUTIONS, status:VALID,
-
SYNONYM: APPS.PA_PERIODS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PERIODS, status:VALID,
-
SYNONYM: APPS.PA_PERIODS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PERIODS, status:VALID,
-
SYNONYM: APPS.PO_LINE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
SYNONYM: APPS.PO_LINE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
SYNONYM: APPS.PO_REQ_DISTRIBUTIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQ_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.PO_REQ_DISTRIBUTIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQ_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID,
-
PACKAGE: APPS.GMS_WF_PKG
12.1.1
-
PACKAGE: APPS.GMS_WF_PKG
12.2.2
-
SYNONYM: APPS.PO_REQUISITION_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.AP_INVOICE_DISTRIBUTIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_INVOICE_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES_ALL, status:VALID,
-
SYNONYM: APPS.AP_INVOICES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_INVOICES_ALL, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES_ALL, status:VALID,
-
APPS.GMS_WF_PKG dependencies on GMS_COMMITMENT_ENCUMBERED_V
12.1.1
-
APPS.GMS_WF_PKG dependencies on GMS_COMMITMENT_ENCUMBERED_V
12.2.2
-
SYNONYM: APPS.AP_INVOICE_DISTRIBUTIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_INVOICE_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.PO_DISTRIBUTIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_DISTRIBUTIONS_ALL, status:VALID,
-
SYNONYM: APPS.AP_INVOICES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_INVOICES_ALL, status:VALID,