Search Results wgi_last_increase_date




Overview

The view APPS.GHR_MT_ELEMENT_ENTRIES_V is a filtered projection over the Oracle E-Business Suite HRMS generic interface table GHR_INTERFACE. It isolates a single logical interface stream — Federal / public-sector payroll element entries identified by the discriminator value PER_ELEMENT_ENTRIES in the INFORMATION4 column — and re-labels the generic positional INFORMATION1..INFORMATION46 columns with descriptive aliases. This aliasing is the primary purpose of the view: it converts an opaque staging table layout into a self-documenting row set that consumers, reports, and downstream concurrent programs can query without reference to a separate column-mapping document.

The view is named with the GHR_MT_ prefix, indicating it belongs to the Oracle HRMS multi-table / global HR interface family. In Oracle EBS 12.1.1 and 12.2.2 the object is deployed under the APPS schema and forms part of the integration pathway used by HRMS interface loaders to move external (or legacy) payroll and benefits data into Oracle Payroll / Oracle HRMS. It exposes the raw interface rows prior to or after processing by the interface loader, making it a read-only reporting surface rather than a transactional table.

Underlying Base Objects

The view is defined exclusively over a single referenced object listed in the ETRM metadata:

  • GHR_INTERFACE (a SYNONYM resolving to the APPS table of the same underlying name).

GHR_INTERFACE is the shared staging table used across the HRMS multi-table interface. Rather than being a dedicated table per data type, it stores heterogeneous records and uses a type discriminator column (INFORMATION4) to separate logical streams. GHR_MT_ELEMENT_ENTRIES_V applies the predicate WHERE INFORMATION4 = 'PER_ELEMENT_ENTRIES' to the base table, so the view logically models one segment of that shared table. There are no joins to other tables in the view definition; all attributes are derived by aliasing columns already present on GHR_INTERFACE, so it inherits the base table's indexing and its data lifecycle. No base table privilege other than SELECT on the synonym is required.

Key Columns

The columns fall into three groups: identifiers, control/status fields, and payroll element entry attributes.

Common Use Cases and Queries

Because the view is read-only and pre-filtered, it is typically used for reconciliation, staging review, and pre-load validation rather than for maintenance. Typical scenarios include verifying that element entry records were staged before running the interface loader, checking status and effective dates, and auditing salary and benefit amounts. A simple query follows:

SELECT GHR_INTERFACE_ID,
       MT_PERSON_ID,
       MT_NAME,
       MT_STATUS,
       MT_EFFECTIVE_DATE,
       SALARY,
       TOTAL_SALARY
FROM   APPS.GHR_MT_ELEMENT_ENTRIES_V
WHERE  MT_STATUS IS NOT NULL;

To identify rows awaiting processing for a specific person, the MT_PERSON_ID and MT_PROCESS_DATE columns are the natural filters. To review benefits and retirement detail, the analyst selects the RETIREMENT_PLAN, FEGLI, and TSP_% columns. In practice, the per_element_entries search that surfaces this view reflects its role as the canonical, human-readable projection of element entry interface data within the HRMS multi-table integration in Oracle EBS 12.1.1 and 12.2.2.