Search Results student_status
Overview
GHR_MT_PEOPLE_F_V is a PL/SQL view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the GHR product family, US Federal Human Resources, and is documented with a status of VALID. The view exists specifically to support the Mass Transfer in and out processes, which perform data transfer operations for person and assignment records. In this role the view acts as a staging or mapping layer that normalises records held in the GHR interface so that the mass transfer routines can read, validate, and move employee and applicant data consistently across business groups.
From a reporting and integration perspective, the view is not a general-purpose HR reporting source. It exposes the contents of the GHR interface table in a column-aliased, positional format that the mass transfer concurrent programs expect. Developers and technical consultants examining the object usually encounter it when diagnosing mass transfer errors, tracing interface rows, or extending the federal HR data movement logic.
Underlying Base Objects
The documented base object referenced by the view is GHR_INTERFACE, accessed through a synonym. The view statement selects from this interface table and renames the generic INFORMATION
The leading column, INTERFACE_ID, is aliased as GHR_INTERFACE_ID and provides the primary linkage back to the interface row. SOURCE_NAME and PROCESS_DATE identify the originating process and the run date of the transfer.
Key Columns
- GHR_INTERFACE_ID — the interface identifier, keyed to the underlying GHR_INTERFACE row.
- MT_PROCESS_DATE, MT_SOURCE — the date and source name of the mass transfer run that produced the row.
- MT_EFFECTIVE_DATE — the effective date applied to the transferred record.
- MT_PERSON_ID, MT_TABLE_NAME, MT_INFORMATION_TYPE — the person reference, the target table name, and the information type being transferred.
- MT_INTER_BG_TRANSFER — indicates whether the transfer crosses business group boundaries.
- PERSON_ID, EFFECTIVE_START_DATE, EFFECTIVE_END_DATE, BUSINESS_GROUP_ID — core datetracked person and business group attributes.
- PERSON_TYPE_ID, LAST_NAME, FIRST_NAME, FULL_NAME, MIDDLE_NAMES, EMPLOYEE_NUMBER — person name and identification attributes.
- FAST_PATH_EMPLOYEE — exposed as INFORMATION28, the FastPath Employee indicator used by federal HR processing.
- APPLICANT_NUMBER, CURRENT_APPLICANT_FLAG, CURRENT_EMPLOYEE_FLAG, REHIRE_AUTHORIZOR — applicant and employee status attributes relevant to mass transfer eligibility.
Common Use Cases and Queries
The primary use case is troubleshooting and inspection of mass transfer interface rows. A typical query retrieves the mapped descriptive columns for a given interface run:
- SELECT GHR_INTERFACE_ID, MT_PROCESS_DATE, MT_SOURCE, MT_PERSON_ID, PERSON_ID, BUSINESS_GROUP_ID, FAST_PATH_EMPLOYEE FROM APPS.GHR_MT_PEOPLE_F_V WHERE MT_PROCESS_DATE = :run_date;
- SELECT GHR_INTERFACE_ID, PERSON_ID, EMPLOYEE_NUMBER, LAST_NAME, CURRENT_EMPLOYEE_FLAG FROM APPS.GHR_MT_PEOPLE_F_V WHERE PERSON_ID = :person_id;
- SELECT COUNT(*) FROM APPS.GHR_MT_PEOPLE_F_V WHERE MT_INTER_BG_TRANSFER = 'Y';
These queries are commonly used to confirm that rows staged for a mass transfer carry the expected person identifiers, business group, and FastPath Employee flag before the in or out process is executed.
-
View: GHR_MT_PEOPLE_F_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_PEOPLE_F_V, object_name:GHR_MT_PEOPLE_F_V, status:VALID, product: GHR - US Federal Human Resources , description: This views is used by mass transfer in and out processes for datatransfer. , implementation_dba_data: APPS.GHR_MT_PEOPLE_F_V ,
-
View: GHR_MT_PEOPLE_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_PEOPLE_F_V, object_name:GHR_MT_PEOPLE_F_V, status:VALID, product: GHR - US Federal Human Resources , description: This views is used by mass transfer in and out processes for datatransfer. , implementation_dba_data: APPS.GHR_MT_PEOPLE_F_V ,
-
View: GHR_PEOPLE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PEOPLE_H_V, object_name:GHR_PEOPLE_H_V, status:VALID, product: GHR - US Federal Human Resources , description: Mapping of GHR_PA_HISTORY columns to PER_ALL_PEOPLE_F. , implementation_dba_data: APPS.GHR_PEOPLE_H_V ,
-
View: GHR_PEOPLE_H_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PEOPLE_H_V, object_name:GHR_PEOPLE_H_V, status:VALID, product: GHR - US Federal Human Resources , description: Mapping of GHR_PA_HISTORY columns to PER_ALL_PEOPLE_F. , implementation_dba_data: APPS.GHR_PEOPLE_H_V ,