Search Results gms_enc_psi_v
Overview
GMS_ENC_PSI_V is a Grants Accounting (GMS) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes encumbrance data originating from GMS (Grants Accounting) in a format compatible with Oracle Projects' Project Status Inquiry (PSI) reporting model. The name convention — GMS_ENC_PSI_V — indicates a Grants encumbrance source feeding the Projects PSI interface, which is used to accumulate commitment balances alongside actual and budgetary project activity. The view has no direct base table of its own; it is a composite, defined as a UNION ALL of multiple SELECT statements that harmonize encumbrance lines into a common column signature. In effect it presents GMS encumbrance items as expenditure-like records suitable for inclusion in PSI and project accumulation processing.
Underlying Base Objects
The view is built from a documented set of APPS synonyms and packages:
- GMS_ENCUMBRANCE_ITEMS_ALL (SYNONYM) — source of distributed encumbrance lines.
- GMS_ENCUMBRANCE_ITEMS (SYNONYM) — additional encumbrance item source across the UNION ALL branches.
- GMS_ENCUMBRANCES (SYNONYM) — encumbrance header data, supplying ENCUMBRANCE_GROUP, incurred-by organization, and ORG_ID.
- PA_EXPENDITURE_TYPES (SYNONYM) and PA_TASKS (SYNONYM) — supply expenditure category, revenue category code, task and project identifiers.
- PA_ACCUM_UTILS (PACKAGE) — supplies current PA and GL period values via GET_CURRENT_PA_PERIOD and GET_CURRENT_GL_PERIOD.
- PA_CURRENCY (PACKAGE) — provides ROUND_CURRENCY_AMT, used to round encumbrance, denominated and accounted amounts.
- GMS_AWARD_DISTRIBUTIONS, GMS_COST_PLUS_EXTN, PA_COMPILED_MULTIPLIERS, PA_COST_BASE_COST_CODES, PA_COST_BASE_EXP_TYPES, and PA_IND_COST_CODES — referenced for cost base, multiplier, and award distribution logic in the later UNION ALL branches.
The first branch filters A.ENC_DISTRIBUTED_FLAG = 'Y' and joins encumbrance items to encumbrances, expenditure types, and tasks. Subsequent branches consolidate further sources, including cost-plus and indirect cost computations, under the same column list.
Key Columns
The view exposes a wide, standardized column signature. Notable columns include:
- PROJECT_ID and TASK_ID — project/task context derived from PA_TASKS and task data.
- ENCUMBRANCE_GROUP, LINE_NUM, ENCUMBRANCE_ITEM_ID, ENCUMBRANCE_ITEM_DATE, ENCUMBRANCE_TYPE — encumbrance identification and classification.
- ENC_DISTRIBUTED_FLAG — indicates whether the encumbrance line has been distributed.
- EXPENDITURE_CATEGORY and REVENUE_CATEGORY_CODE — from PA_EXPENDITURE_TYPES.
- OVERIDE_TO_ORGANIZATION_ID (via NVL) and INCURRED_BY_ORGANIZATION_ID — the organization carrying the encumbrance.
- AMOUNT, DENOM_CURRENCY_CODE, ACCT_CURRENCY_CODE, ACCT_RATE_DATE, ACCT_RATE_TYPE, and ACCT_EXCHANGE_RATE — monetary and currency conversion attributes; amounts passed through PA_CURRENCY.ROUND_CURRENCY_AMT.
- ATTRIBUTE1 and ATTRIBUTE6 — descriptive flexfield attributes.
- ORG_ID — multi-org operating unit context.
Literal placeholders such as 'OUTSIDE_SYSTEM', 'N', TO_DATE(NULL), and TO_NUMBER(NULL) align each branch to one uniform structure so that the UNION ALL can be consumed as a single source.
Common Use Cases and Queries
The view is typically consumed by PSI and project accumulation logic rather than queried directly by end users. However, developers and DBA staff use it for troubleshooting encumbrance balances, verifying currency and organization attribution, and validating distributed versus non-distributed lines.
SELECT project_id,
task_id,
encumbrance_item_id,
encumbrance_type,
expenditure_category,
amount,
acct_currency_code,
org_id
FROM apps.gms_enc_psi_v
WHERE project_id = :p_project_id;
SELECT encumbrance_item_id, SUM(amount) total_enc FROM apps.gms_enc_psi_v WHERE enc_distributed_flag = 'Y' GROUP BY encumbrance_item_id;
Because the view invokes PA_ACCUM_UTILS and PA_CURRENCY functions, queries can be resource-intensive; filtering by project, task, or encumbrance group is recommended. The view is valid in both 12.1.1 and 12.2.2 and should be referenced through the APPS synonym.
-
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 ,
-
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 ,
-
SYNONYM: APPS.GMS_ENCUMBRANCE_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCE_ITEMS, status:VALID,
-
SYNONYM: APPS.PA_COST_BASE_COST_CODES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_COST_BASE_COST_CODES, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCES, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCES, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCE_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCE_ITEMS, status:VALID,
-
PACKAGE: APPS.GMS_COST_PLUS_EXTN
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMS_COST_PLUS_EXTN, status:VALID,
-
SYNONYM: APPS.GMS_ENCUMBRANCE_ITEMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCE_ITEMS_ALL, status:VALID,
-
PACKAGE: APPS.GMS_COST_PLUS_EXTN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMS_COST_PLUS_EXTN, status:VALID,
-
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_COST_CODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_COST_BASE_COST_CODES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
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,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.GMS_PA_API3
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_PA_API3, status:VALID,
-
SYNONYM: APPS.PA_COMPILED_MULTIPLIERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_COMPILED_MULTIPLIERS, 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
-
SYNONYM: APPS.GMS_ENCUMBRANCE_ITEMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_ENCUMBRANCE_ITEMS_ALL, status:VALID,
-
PACKAGE BODY: APPS.GMS_PA_API3
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_PA_API3, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
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_TXNS_V
12.2.2
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.1.1
-
SYNONYM: APPS.GMS_AWARD_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_AWARD_DISTRIBUTIONS, 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_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: 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_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,
-
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 ,
-
SYNONYM: APPS.PA_EXPENDITURE_TYPES
12.2.2
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,
-
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,
-
APPS.GMS_PA_API3 dependencies on GMS_ENC_PSI_V
12.2.2
-
APPS.GMS_PA_API3 dependencies on GMS_ENC_PSI_V
12.1.1
-
SYNONYM: APPS.PA_TASKS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_TASKS, status:VALID,
-
SYNONYM: APPS.PA_TASKS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_TASKS, status:VALID,
-
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. ,
-
PACKAGE BODY: APPS.GMS_PA_API3
12.1.1
-
PACKAGE BODY: APPS.GMS_PA_API3
12.2.2
-
APPS.GMS_PA_API3 dependencies on PA_COMMITMENT_TXNS
12.2.2
-
APPS.GMS_PA_API3 SQL Statements
12.2.2
-
APPS.GMS_PA_API3 dependencies on PA_COMMITMENT_TXNS
12.1.1