Search Results pqh_fyi_notify




Overview

The PQH_FYI_NOTIFY table is a core data object within the Oracle E-Business Suite (EBS) Public Sector Human Resources (PQH) module. It functions as the primary repository for storing details related to "For Your Information" (FYI) notifications. In the context of public sector HR processes, particularly those involving complex position and transaction management workflows, FYI notifications are automated alerts sent to inform designated personnel about specific transactional events or status changes. This table serves as the audit and tracking mechanism for these notifications, ensuring a record of what was communicated, to whom, and when, which is critical for compliance and process transparency in government and public sector organizations.

Key Information Stored

While the provided metadata does not list all columns, the structure indicates the table stores the essential components of an FYI notification record. The primary key, FYI_NOTIFIED_ID, uniquely identifies each notification instance. A critical foreign key relationship is established via the TRANSACTION_CATEGORY_ID column, which links the notification to a specific transaction type defined in the PQH_TRANSACTION_CATEGORIES table. This linkage determines the business context and rules triggering the notification. Other columns typically found in such a table would include identifiers for the recipient (such as PERSON_ID or ROLE_ID), the sender or initiator, the date and time of notification (CREATION_DATE), the status of the notification (e.g., 'SENT', 'PENDING'), and references to the specific transaction or document instance that prompted the alert.

Common Use Cases and Queries

The primary use case is auditing and reporting on FYI notification activity. HR administrators may query this table to verify that mandatory notifications were dispatched during a personnel action or position change. A common query pattern involves joining with transaction tables to list all notifications for a specific employee action. For troubleshooting, one might search for failed or pending notifications.

  • Sample Query (Notifications for a Transaction Category):
    SELECT fyi.* FROM hr.pqh_fyi_notify fyi WHERE fyi.transaction_category_id = <category_id> ORDER BY fyi.creation_date DESC;
  • Reporting Use Case: Generating a monthly report of all FYI notifications sent to a specific department's managers as part of compliance audits.
  • Process Integration: The data in this table may be consumed by workflow monitors or custom dashboards to provide real-time visibility into process communications.

Related Objects

The table is centrally connected to other key PQH structures. Its most direct relationship, as documented, is with the PQH_TRANSACTION_CATEGORIES table via the TRANSACTION_CATEGORY_ID foreign key. This defines the type of HR transaction (e.g., appointment, reclassification, transfer) that generated the notification. It is also logically related to core HR person tables (like PER_ALL_PEOPLE_F) for recipient and sender details, and to the main transaction headers in the PQH module (such as PQH_TRANSACTIONS) which represent the specific business event. The primary key constraint PQH_FYI_NOTIFY_PK enforces data integrity for the table's records.