Search Results gms_adl_uk




Overview

APPS.GMS_EXPEND_ITEMS_ADJUST_V is a reporting and integration view within the Oracle EBS Grants Management (GMS) module. It presents expenditure item data at the award distribution line level, joining expenditure items to their corresponding award distribution lines. The view is designed to expose expenditure detail enriched with project, task, award, organization, person, vendor, and cost distribution attributes for reporting, analysis, and downstream integration.

The view text begins with the hint /*+INDEX(ADL GMS_ADL_UK)*/, explicitly directing the optimizer to use the GMS_ADL_UK unique key index on GMS_AWARD_DISTRIBUTIONS. This aliasing convention (ADL for award distribution line) confirms that the primary driving access path is the award distribution table, with expenditure items joined to it. This makes the view particularly efficient for award-centric queries in which the query predicate targets award or distribution line attributes. Because it exposes both raw and burdened cost figures derived from the distribution value percentage, the view is commonly used in cost analysis, reconciliation, and interface extraction scenarios.

Underlying Base Objects

The documented base objects underpinning this view span several EBS schemas and functional areas:

The view consolidates these sources into a single denormalized structure, joining expenditure items to award distributions, with descriptive lookups resolved for coded values.

Key Columns

Common Use Cases and Queries

Typical uses include award cost reconciliation, expenditure reporting by project or task, and extraction interfaces for grants reporting.

  • Award expenditure summary: reporting raw and burdened cost by award distribution line.
  • Cost distribution validation: identifying items where COST_DISTRIBUTED_FLAG indicates pending or rejected distribution.
  • Cross-functional reporting: combining project, employee, and vendor detail for grants analysis.
SELECT PROJECT_NUMBER, TASK_NUMBER, ADL_LINE_NUM,
       RAW_COST, BURDENED_COST
  FROM APPS.GMS_EXPEND_ITEMS_ADJUST_V
 WHERE EXPENDITURE_STATUS_CODE = 'APPROVED';
SELECT EMPLOYEE_VENDOR_NAME, SUM(RAW_COST) TOTAL_RAW
  FROM APPS.GMS_EXPEND_ITEMS_ADJUST_V
 GROUP BY EMPLOYEE_VENDOR_NAME;

Because the hint forces the GMS_ADL_UK index path, queries filtering on award distribution attributes generally perform best against this view.