Search Results from_position_title
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: 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: HR.GHR_MULTI_IA_PREVIEW#
12.2.2
-
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: HR.GHR_PA_REQUESTS#
12.2.2
-
APPS.GHR_PAR_SHD SQL Statements
12.1.1
-
APPS.GHR_PAR_SHD SQL Statements
12.2.2
-
VIEW: HR.GHR_MULTI_IA_PREVIEW#
12.2.2
owner:HR, object_type:VIEW, object_name:GHR_MULTI_IA_PREVIEW#, status:VALID,
-
APPS.GHR_GEN_RPA_NPA SQL Statements
12.2.2
-
APPS.GHR_GEN_RPA_NPA SQL Statements
12.1.1
-
VIEW: APPS.GHR_MT_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_INTERFACE_V, object_name:GHR_MT_INTERFACE_V, status:VALID,
-
APPS.GHR_MTI_APP SQL Statements
12.1.1
-
VIEW: APPS.GHR_MT_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_INTERFACE_V, object_name:GHR_MT_INTERFACE_V, status:VALID,
-
APPS.GHR_MTI_APP SQL Statements
12.2.2
-
View: GHR_MT_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_INTERFACE_V, object_name:GHR_MT_INTERFACE_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_INTERFACE_V ,
-
View: GHR_MT_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_INTERFACE_V, object_name:GHR_MT_INTERFACE_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_INTERFACE_V ,
-
VIEW: HR.GHR_PA_REQUESTS#
12.2.2
owner:HR, object_type:VIEW, object_name:GHR_PA_REQUESTS#, status:VALID,
-
APPS.GHR_WF_WGI_PKG SQL Statements
12.1.1
-
APPS.GHR_WF_WGI_PKG SQL Statements
12.2.2
-
View: GHR_PA_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REQUESTS_V, object_name:GHR_PA_REQUESTS_V, status:VALID, product: GHR - US Federal Human Resources , description: GHR_PA_REQUESTS_V is a view based on GHR_PA_REQUESTS for use by the form. , implementation_dba_data: APPS.GHR_PA_REQUESTS_V ,
-
View: GHR_PA_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REQUESTS_V, object_name:GHR_PA_REQUESTS_V, status:VALID, product: GHR - US Federal Human Resources , description: GHR_PA_REQUESTS_V is a view based on GHR_PA_REQUESTS for use by the form. , implementation_dba_data: APPS.GHR_PA_REQUESTS_V ,
-
TABLE: HR.GHR_MULTI_IA_PREVIEW
12.2.2
owner:HR, object_type:TABLE, object_name:GHR_MULTI_IA_PREVIEW, status:VALID,
-
VIEW: APPS.GHR_MT_INTERFACE_V
12.1.1
-
VIEW: APPS.GHR_MT_INTERFACE_V
12.2.2
-
VIEW: APPS.GHR_PA_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REQUESTS_V, object_name:GHR_PA_REQUESTS_V, status:VALID,
-
VIEW: APPS.GHR_PA_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REQUESTS_V, object_name:GHR_PA_REQUESTS_V, status:VALID,
-
APPS.GHR_PAR_INS SQL Statements
12.1.1
-
APPS.GHR_PAR_INS SQL Statements
12.2.2
-
TABLE: HR.GHR_PA_REQUESTS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUESTS, object_name:GHR_PA_REQUESTS, status:VALID,
-
TABLE: HR.GHR_PA_REQUESTS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUESTS, object_name:GHR_PA_REQUESTS, status:VALID,
-
APPS.GHR_PAR_UPD SQL Statements
12.2.2
-
APPS.GHR_PAR_UPD SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GHR_PAR_SHD
12.2.2
-
PACKAGE BODY: APPS.GHR_PAR_SHD
12.1.1
-
APPS.GHR_MTO_INT SQL Statements
12.2.2
-
APPS.GHR_MTO_INT SQL Statements
12.1.1
-
PACKAGE: APPS.GHR_PAR_SHD
12.2.2
-
PACKAGE: APPS.GHR_PAR_SHD
12.1.1
-
PACKAGE BODY: APPS.GHR_UPD_HR_VALIDATION
12.2.2
-
PACKAGE BODY: APPS.GHR_UPD_HR_VALIDATION
12.1.1
-
PACKAGE BODY: APPS.GHR_WF_WGI_PKG
12.2.2
-
PACKAGE BODY: APPS.GHR_MTI_APP
12.1.1
-
PACKAGE BODY: APPS.GHR_WF_WGI_PKG
12.1.1
-
PACKAGE BODY: APPS.GHR_MTI_APP
12.2.2
-
PACKAGE BODY: APPS.GHR_PROCESS_SF52
12.1.1
-
PACKAGE BODY: APPS.GHR_PROCESS_SF52
12.2.2
-
PACKAGE BODY: APPS.GHR_GEN_RPA_NPA
12.1.1