Search Results remark_id
Overview
The HR.GHR_REMARKS table is a core reference data table within the Oracle E-Business Suite (EBS) Federal Human Resources (GHR) module. It functions as a centralized repository for predefined remark codes and their descriptions. Its primary role is to standardize and control the textual remarks that users can associate with Personnel Action (PA) requests and other related transactions. By storing these remarks in a master table, the system ensures data consistency, facilitates reporting, and simplifies data entry through the use of codes. The table is part of the foundational seed data structure, residing in the APPS_TS_SEED tablespace, and is essential for the configuration and operation of the GHR module's remark functionality.
Key Information Stored
The table's structure is designed to manage remark metadata effectively. The key columns include the system-generated primary key, REMARK_ID, sourced from the sequence GHR_REMARKS_S. The CODE column stores the unique identifier for the remark, while the DESCRIPTION column holds the full text. Business logic is governed by several critical columns: ENABLED_FLAG controls the active status of the remark, and DATE_FROM and DATE_TO define its effective date range. The PA_NOTIFICATION_ORDERING column specifies the display sequence for remarks on PA notifications. Standard Oracle EBS "Who" columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) complete the table to track audit information.
Common Use Cases and Queries
This table is primarily used for administrative setup, data validation, and reporting. A common operational query retrieves all active remarks valid for a given date to populate a list of values (LOV) in a form. For example:
- Retrieving active remarks for a PA form:
SELECT remark_id, code, description FROM hr.ghr_remarks WHERE enabled_flag = 'Y' AND SYSDATE BETWEEN date_from AND NVL(date_to, SYSDATE) ORDER BY code; - Auditing remark setup:
SELECT code, description, date_from, date_to, enabled_flag, last_updated_by, last_update_date FROM hr.ghr_remarks ORDER BY last_update_date DESC; - Identifying the display order for PA notifications:
SELECT code, description, pa_notification_ordering FROM hr.ghr_remarks WHERE pa_notification_ordering IS NOT NULL ORDER BY pa_notification_ordering;
These queries support system configuration, troubleshooting, and generating reference reports for functional users.
Related Objects
HR.GHR_REMARKS is a parent reference table for several transactional entities. As indicated by the foreign key dependencies, its primary key (REMARK_ID) is referenced by the GHR_PA_REMARKS table, which links specific remarks to individual Personnel Action requests. It is also referenced by the GHR_NOAC_REMARKS table, associating remarks with Notices of Acquisitions. The documented dependencies also include the synonym GHR_REMARKS and the view GHR_REMARKS_WHO, which likely provides a standardized view of the table including the "Who" column information. These relationships underscore its role as a master source for remark data consumed across the GHR module.
-
APPS.GHR_SF52_API dependencies on GHR_PA_REMARKS
12.1.1
-
APPS.GHR_SF52_API dependencies on GHR_PA_REMARKS_S
12.2.2
-
TABLE: HR.GHR_REMARKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_REMARKS, object_name:GHR_REMARKS, status:VALID,
-
VIEW: HR.GHR_PA_REMARKS#
12.2.2
-
VIEW: HR.GHR_REMARKS#
12.2.2
-
VIEW: HR.GHR_MULTI_IA_REMARKS#
12.2.2
-
VIEW: HR.GHR_NOAC_REMARKS#
12.2.2
-
APPS.GHR_SF52_API dependencies on GHR_PA_REMARKS_S
12.1.1
-
APPS.GHR_NRE_SHD SQL Statements
12.2.2
-
APPS.GHR_PRE_SHD SQL Statements
12.1.1
-
APPS.GHR_PRE_SHD SQL Statements
12.2.2
-
APPS.GHR_SF52_DO_UPDATE dependencies on GHR_REMARKS
12.2.2
-
APPS.GHR_GENERAL dependencies on GHR_REMARKS
12.1.1
-
TABLE: HR.GHR_PA_REMARKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REMARKS, object_name:GHR_PA_REMARKS, status:VALID,
-
TABLE: HR.GHR_NOAC_REMARKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_NOAC_REMARKS, object_name:GHR_NOAC_REMARKS, status:VALID,
-
APPS.GHR_SF52_API dependencies on GHR_PA_REMARKS
12.2.2
-
APPS.GHR_NRE_SHD SQL Statements
12.1.1
-
APPS.GHR_SF52_DO_UPDATE dependencies on GHR_REMARKS
12.1.1
-
APPS.GHR_GENERAL dependencies on GHR_REMARKS
12.2.2
-
TABLE: HR.GHR_REMARKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_REMARKS, object_name:GHR_REMARKS, status:VALID,
-
APPS.GHR_NRE_BUS dependencies on GHR_REMARKS
12.2.2
-
VIEW: HR.GHR_REMARKS#
12.2.2
owner:HR, object_type:VIEW, object_name:GHR_REMARKS#, status:VALID,
-
TABLE: HR.GHR_NOAC_REMARKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_NOAC_REMARKS, object_name:GHR_NOAC_REMARKS, status:VALID,
-
APPS.GHR_NRE_BUS dependencies on GHR_REMARKS
12.1.1
-
TABLE: HR.GHR_PA_REMARKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REMARKS, object_name:GHR_PA_REMARKS, status:VALID,
-
VIEW: HR.GHR_NOAC_REMARKS#
12.2.2
owner:HR, object_type:VIEW, object_name:GHR_NOAC_REMARKS#, status:VALID,
-
VIEW: HR.GHR_PA_REMARKS#
12.2.2
owner:HR, object_type:VIEW, object_name:GHR_PA_REMARKS#, status:VALID,
-
VIEW: HR.GHR_MULTI_IA_REMARKS#
12.2.2
owner:HR, object_type:VIEW, object_name:GHR_MULTI_IA_REMARKS#, status:VALID,
-
TABLE: HR.GHR_MULTI_IA_REMARKS
12.2.2
owner:HR, object_type:TABLE, object_name:GHR_MULTI_IA_REMARKS, status:VALID,
-
APPS.GHR_PRE_BUS dependencies on HR_API
12.1.1
-
APPS.GHR_SF52_API dependencies on GHR_NOAC_REMARKS
12.2.2
-
APPS.GHR_PRE_BUS dependencies on HR_API
12.2.2
-
APPS.GHR_SF52_API dependencies on GHR_NOAC_REMARKS
12.1.1
-
APPS.GHR_NRE_BUS dependencies on HR_API
12.1.1
-
APPS.GHR_MTO_PKG dependencies on GHR_REMARKS
12.2.2
-
Table: GHR_REMARKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_REMARKS, object_name:GHR_REMARKS, status:VALID, product: GHR - US Federal Human Resources , description: It holds a list of remarks that are used to enter against arequest for personnel action. , implementation_dba_data: HR.GHR_REMARKS ,
-
Table: GHR_NOAC_REMARKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_NOAC_REMARKS, object_name:GHR_NOAC_REMARKS, status:VALID, product: GHR - US Federal Human Resources , description: Stores NOA and the associated Remarks , implementation_dba_data: HR.GHR_NOAC_REMARKS ,
-
VIEW: APPS.GHR_PA_REMARKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REMARKS_V, object_name:GHR_PA_REMARKS_V, status:VALID,
-
APPS.GHR_NRE_BUS dependencies on HR_API
12.2.2
-
APPS.GHR_SF52_DO_UPDATE dependencies on GHR_PA_REMARKS
12.2.2
-
VIEW: APPS.GHR_PA_REMARKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REMARKS_V, object_name:GHR_PA_REMARKS_V, status:VALID,
-
Table: GHR_NOAC_REMARKS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_NOAC_REMARKS, object_name:GHR_NOAC_REMARKS, status:VALID, product: GHR - US Federal Human Resources , description: Stores NOA and the associated Remarks , implementation_dba_data: HR.GHR_NOAC_REMARKS ,
-
APPS.GHR_MTO_PKG dependencies on GHR_REMARKS
12.1.1
-
APPS.GHR_SF52_DO_UPDATE dependencies on GHR_PA_REMARKS
12.1.1
-
Table: GHR_REMARKS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_REMARKS, object_name:GHR_REMARKS, status:VALID, product: GHR - US Federal Human Resources , description: It holds a list of remarks that are used to enter against arequest for personnel action. , implementation_dba_data: HR.GHR_REMARKS ,
-
APPS.GHR_NRE_UPD dependencies on GHR_NOAC_REMARKS
12.1.1
-
View: GHR_PA_REMARKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REMARKS_V, object_name:GHR_PA_REMARKS_V, status:VALID, product: GHR - US Federal Human Resources , description: GHR_PA_REMARKS_V is a view based on GHR_PA_REMARKS for use bythe form. , implementation_dba_data: APPS.GHR_PA_REMARKS_V ,
-
View: GHR_PA_REMARKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REMARKS_V, object_name:GHR_PA_REMARKS_V, status:VALID, product: GHR - US Federal Human Resources , description: GHR_PA_REMARKS_V is a view based on GHR_PA_REMARKS for use bythe form. , implementation_dba_data: APPS.GHR_PA_REMARKS_V ,
-
APPS.GHR_NRE_UPD dependencies on GHR_NOAC_REMARKS
12.2.2
-
APPS.GHR_SS_RPA_CREATION dependencies on GHR_REMARKS
12.2.2