Search Results mt_table_name
Overview
APPS.GHR_MT_MISC_V is a reporting and integration view in the Oracle E-Business Suite (EBS) covering releases 12.1.1 and 12.2.2. It exposes a subset of the generic GHR interface staging table, isolating rows that carry miscellaneous mass-transfer or mass-update transactions rather than standard hire, termination, or transfer records. Its primary role is to make interface staging data queryable in a stable, pre-aliased form so that concurrent programs, extracts, and downstream data loads can read a consistent column set without re-implementing the underlying decoding logic against the raw interface table.
The view is part of the GHR (HRMS interface) family of objects. The user search term "mt_process_date" maps directly to the view's PROCESS_DATE column, which is aliased as MT_PROCESS_DATE. This column records the date on which the miscellaneous interface row was processed or is scheduled to be processed by the Mass Transfer / Mass Update process.
Underlying Base Objects
Per documented ETRM metadata for release 12.2.2, the view is owned by the APPS schema and is defined over a single referenced base object, GHR_INTERFACE, accessed through a synonym. There are no joins in the view definition; the view is a straight projection with a WHERE filter.
The defining filter is WHERE INFORMATION4 = 'MISCELANEOUS'. The literal is spelled with the omission of a second "L" as it appears in the source metadata, so any code that depends on the view inherits this filter exactly as defined. The view therefore does not present all interface rows; it presents only those whose generic INFORMATION4 attribute is populated with the miscellaneous indicator. The interface row is identified by INTERFACE_ID, which the view surfaces as GHR_INTERFACE_ID.
Key Columns
The view performs extensive column renaming to give the generic INFORMATION1 through INFORMATION18 attributes a domain-specific identity. Columns of interest include:
- GHR_INTERFACE_ID (INTERFACE_ID) — the surrogate primary key of the underlying interface row.
- MT_PROCESS_DATE (PROCESS_DATE) — the process date for the miscellaneous transaction; this is the column referenced by the "mt_process_date" search.
- MT_SOURCE (SOURCE_NAME) — the source system or process that staged the row.
- MT_EFFECTIVE_DATE (DATE_FROM) — the effective date of the miscellaneous action.
- MT_NAME, MT_STATUS, MT_PERSON_ID — name, status, and person identifier for the affected record.
- MT_TABLE_NAME (INFORMATION4) — always equals the miscellaneous value in this view, since it drives the WHERE clause.
- MT_INFORMATION_TYPE and MT_INTER_BG_TRANSFER — classification of the miscellaneous action.
- FROM_GRADE_OR_LEVEL, FROM_PAY_PLAN, FROM_POSITION_TITLE, FROM_POSITION_SEQ_NUM, FROM_POSITION_DESC_NUM, FROM_POSITION_ID, FROM_AGENCY_CODE, FROM_AGENCY_CODE_DESC — the "from" side attributes of the transaction.
- OCC_SERIES, TO_POSITION_ID, DUTY_STATION_DESC, DUTY_STATION_CODE — occupational series, destination position, and duty station attributes.
Common Use Cases and Queries
Typical scenarios include auditing outstanding miscellaneous mass-transfer rows, diagnosing why a row failed processing, and extracting staging data for reconciliation. Because the view is already filtered and aliased, queries are simpler than against GHR_INTERFACE.
Find rows awaiting or dated by process date:
SELECT mt_person_id, mt_name, mt_process_date, mt_status FROM apps.ghr_mt_misc_v WHERE mt_process_date >= TRUNC(SYSDATE) - 30 ORDER BY mt_process_date DESC;
List "from/to" positional changes for a person:
SELECT ghr_interface_id, mt_effective_date,
from_position_title, to_position_id,
duty_station_code, mt_inter_bg_transfer
FROM apps.ghr_mt_misc_v
WHERE mt_person_id = :person_id;
Note that the view is read-oriented; corrections must be applied to the base GHR_INTERFACE row.
-
VIEW: APPS.GHR_MT_MISC_V
12.2.2
-
View: GHR_MT_MISC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_MISC_V, object_name:GHR_MT_MISC_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_MISC_V ,
-
VIEW: APPS.GHR_MT_MISC_V
12.1.1
-
View: GHR_MT_MISC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_MISC_V, object_name:GHR_MT_MISC_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_MISC_V ,
-
View: GHR_MT_POSITION_DEFINITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITION_DEFINITIONS_V, object_name:GHR_MT_POSITION_DEFINITIONS_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_POSITION_DEFINITIONS_V ,
-
View: GHR_MT_POSITION_DEFINITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITION_DEFINITIONS_V, object_name:GHR_MT_POSITION_DEFINITIONS_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_POSITION_DEFINITIONS_V ,
-
VIEW: APPS.GHR_MT_ELEMENT_ENTRIES_V
12.1.1
-
View: GHR_MT_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ADDRESSES_V, object_name:GHR_MT_ADDRESSES_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_ADDRESSES_V ,
-
View: GHR_MT_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ADDRESSES_V, object_name:GHR_MT_ADDRESSES_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_ADDRESSES_V ,
-
VIEW: APPS.GHR_MT_POSITION_DEFINITIONS_V
12.2.2
-
VIEW: APPS.GHR_MT_ANALYSIS_CRITERIA_V
12.1.1
-
VIEW: APPS.GHR_MT_ADDRESSES_V
12.1.1
-
View: GHR_MT_POSITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITIONS_V, object_name:GHR_MT_POSITIONS_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_POSITIONS_V ,
-
View: GHR_MT_POSITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITIONS_V, object_name:GHR_MT_POSITIONS_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_POSITIONS_V ,
-
VIEW: APPS.GHR_MT_ELEMENT_ENTRIES_V
12.2.2
-
VIEW: APPS.GHR_MT_POSITION_DEFINITIONS_V
12.1.1
-
VIEW: APPS.GHR_MT_MISC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_MISC_V, object_name:GHR_MT_MISC_V, status:VALID,
-
View: GHR_MT_ANALYSIS_CRITERIA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ANALYSIS_CRITERIA_V, object_name:GHR_MT_ANALYSIS_CRITERIA_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_ANALYSIS_CRITERIA_V ,
-
VIEW: APPS.GHR_MT_MISC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_MISC_V, object_name:GHR_MT_MISC_V, status:VALID,
-
View: GHR_MT_ANALYSIS_CRITERIA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ANALYSIS_CRITERIA_V, object_name:GHR_MT_ANALYSIS_CRITERIA_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_ANALYSIS_CRITERIA_V ,
-
View: GHR_MT_PEOPLE_EI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_PEOPLE_EI_V, object_name:GHR_MT_PEOPLE_EI_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_EI_V ,
-
VIEW: APPS.GHR_MT_POSITIONS_V
12.1.1
-
VIEW: APPS.GHR_MT_POSITIONS_V
12.2.2
-
View: GHR_MT_ASSIGNMENTS_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ASSIGNMENTS_F_V, object_name:GHR_MT_ASSIGNMENTS_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_ASSIGNMENTS_F_V ,
-
VIEW: APPS.GHR_MT_ANALYSIS_CRITERIA_V
12.2.2
-
VIEW: APPS.GHR_MT_ADDRESSES_V
12.2.2
-
APPS.GHR_MTO_INT SQL Statements
12.2.2
-
View: GHR_MT_ASSIGNMENTS_F_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ASSIGNMENTS_F_V, object_name:GHR_MT_ASSIGNMENTS_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_ASSIGNMENTS_F_V ,
-
VIEW: APPS.GHR_MT_ASSIGNMENTS_F_V
12.2.2
-
VIEW: APPS.GHR_MT_POSITION_DEFINITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITION_DEFINITIONS_V, object_name:GHR_MT_POSITION_DEFINITIONS_V, status:VALID,
-
View: GHR_MT_POSITION_EI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITION_EI_V, object_name:GHR_MT_POSITION_EI_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_POSITION_EI_V ,
-
View: GHR_MT_PEOPLE_EI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_PEOPLE_EI_V, object_name:GHR_MT_PEOPLE_EI_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_EI_V ,
-
View: GHR_MT_ASSIGNMENT_EI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ASSIGNMENT_EI_V, object_name:GHR_MT_ASSIGNMENT_EI_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_ASSIGNMENT_EI_V ,
-
View: GHR_MT_POSITION_EI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITION_EI_V, object_name:GHR_MT_POSITION_EI_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_POSITION_EI_V ,
-
View: GHR_MT_ASSIGNMENT_EI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ASSIGNMENT_EI_V, object_name:GHR_MT_ASSIGNMENT_EI_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_ASSIGNMENT_EI_V ,
-
APPS.GHR_MTO_INT SQL Statements
12.1.1
-
VIEW: APPS.GHR_MT_ASSIGNMENT_EI_V
12.2.2
-
VIEW: APPS.GHR_MT_PEOPLE_EI_V
12.2.2
-
VIEW: APPS.GHR_MT_POSITION_DEFINITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITION_DEFINITIONS_V, object_name:GHR_MT_POSITION_DEFINITIONS_V, status:VALID,
-
VIEW: APPS.GHR_MT_POSITION_EI_V
12.2.2
-
VIEW: APPS.GHR_MT_POSITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_POSITIONS_V, object_name:GHR_MT_POSITIONS_V, status:VALID,
-
VIEW: APPS.GHR_MT_ASSIGNMENT_EI_V
12.1.1
-
VIEW: APPS.GHR_MT_POSITION_EI_V
12.1.1
-
VIEW: APPS.GHR_MT_ASSIGNMENTS_F_V
12.1.1
-
VIEW: APPS.GHR_MT_PEOPLE_F_V
12.2.2
-
VIEW: APPS.GHR_MT_PEOPLE_F_V
12.1.1
-
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: APPS.GHR_MT_ELEMENT_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_ELEMENT_ENTRIES_V, object_name:GHR_MT_ELEMENT_ENTRIES_V, status:VALID,
-
VIEW: APPS.GHR_MT_PEOPLE_EI_V
12.1.1
-
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 ,