Search Results noac_remark_id
Overview
The GHR_NOAC_REMARKS table is a core data object within the US Federal Human Resources (GHR) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It functions as a junction or association table, establishing a many-to-many relationship between Nature of Actions (NOAs) and Remarks. In the context of federal personnel actions, a single Nature of Action may require multiple explanatory remarks, and a standardized remark can be applicable to numerous different actions. This table systematically stores these associations, ensuring data integrity and supporting the complex regulatory reporting and documentation requirements of U.S. federal agencies.
Key Information Stored
The table's structure is designed to manage the relationship between two primary entities. Its key columns are the foreign keys that link to the parent tables. The NOAC_REMARK_ID column serves as the table's unique primary key identifier for each association record. The NATURE_OF_ACTION_ID column stores a foreign key reference to a specific action code defined in the GHR_NATURE_OF_ACTIONS table. The REMARK_ID column stores a foreign key reference to a predefined remark text stored in the GHR_REMARKS table. Together, the REMARK_ID and NATURE_OF_ACTION_ID columns form a unique constraint (GHR_NOAC_REMARKS_UK), preventing duplicate associations from being recorded.
Common Use Cases and Queries
A primary use case is the dynamic generation of remark text for a personnel action during its creation or approval process. The system queries this table to determine which standard remarks must be attached based on the selected Nature of Action. This is critical for ensuring compliance and completeness. For reporting and auditing, queries often join this table to its parents to produce readable lists. A common SQL pattern to retrieve all remarks for a specific action would be:
- SELECT rem.remark_text
- FROM ghr_noac_remarks noacr,
- ghr_remarks rem,
- ghr_nature_of_actions noa
- WHERE noacr.remark_id = rem.remark_id
- AND noacr.nature_of_action_id = noa.nature_of_action_id
- AND noa.nature_of_action_code = '<ACTION_CODE>';
Data maintenance tasks, such as adding a new standard remark to an existing NOA, involve inserting a record into this table with the appropriate foreign key values.
Related Objects
The GHR_NOAC_REMARKS table has defined foreign key relationships with two primary master tables, as documented in the ETRM metadata. It is a child table of GHR_NATURE_OF_ACTIONS, joined via the NATURE_OF_ACTION_ID column. This relationship ensures that every associated remark is linked to a valid, existing Nature of Action. Similarly, it is a child table of GHR_REMARKS, joined via the REMARK_ID column, guaranteeing that all linked remarks are predefined in the system's remark repository. These relationships are fundamental to the table's role as an associative entity and are enforced by the database to maintain referential integrity across the GHR module's configuration data.
-
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 ,
-
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 ,