Results for “org_forwd_rfr_to_agency”

42 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

GHR_COMPL_AGENCY_APPEALS is a transactional table in the Oracle E-Business Suite HR schema, delivered as part of the GHR - US Federal Human Resources product family. It stores agency-level appeal records associated with a given complaint, supporting the federal equal employment opportunity (EEO) complaint lifecycle in which a complainant or agency may escalate a decision through the agency appeal process. Each row captures a discrete agency appeal and the administrative milestones that benchmark its progress, including docketing, document receipt and forwarding, briefing deadlines, and final decision tracking.

The object is documented as VALID in ETRM 12.2.2 and is present in the 12.1.1 and 12.2.2 releases of the EBS data model. Its relationship footprint — a single foreign key to GHR_COMPLAINTS2 and a 34-column schema dominated by descriptive attributes rather than secondary references — suggests a satellite-leaning classification under Data Vault modeling heuristics. In practical terms, this positions the table as a dependent child of the complaint hub, accumulating appeal-specific descriptive history keyed to a single parent complaint.

Key Information Stored

The table is anchored by the surrogate primary key column COMPL_AGENCY_APPEAL_ID, which is enforced by the unique index GHR_COMPL_AGENCY_APPEALS_PK. This is the only documented unique index, so it serves as both the technical row identifier and the business-key candidate for the appeal record.

Common Use Cases and Queries

The primary reporting use case is aging and deadline analysis: identifying appeals where FILES_DUE, AGENCY_BRIEF_DUE, or AGENCY_RFR_DUE have passed without a corresponding forwarding date. A typical pattern joins the appeal to its complaint:

  • SELECT a.COMPL_AGENCY_APPEAL_ID, a.COMPLAINT_ID, a.DOCKET_NUM, a.APPEAL_DATE, a.DECISION, a.DECISION_DATE FROM GHR_COMPL_AGENCY_APPEALS a WHERE a.COMPLAINT_ID = :complaint_id; — retrieves all appeals for one complaint.
  • SELECT a.COMPLAINT_ID, a.DOCKET_NUM FROM GHR_COMPL_AGENCY_APPEALS a WHERE a.AGENCY_BRIEF_DUE < TRUNC(SYSDATE) AND a.AGENCY_BRIEF_FORWD IS NULL; — flags overdue briefs.
  • Joining to GHR_COMPLAINTS2 on COMPLAINT_ID supports complaint-to-appeal rollups, decision-cycle-time metrics, and docket reconciliation reporting for EEO case management.
  • RFR tracking reports filter on RFR_DECISION and RFR_DECISION_DATE to separate reconsideration outcomes from primary appeal outcomes.

Related Objects

  • GHR_COMPLAINTS2 — the direct parent table; joined on GHR_COMPL_AGENCY_APPEALS.COMPLAINT_ID = GHR_COMPLAINTS2.COMPLAINT_ID.
  • GHR_COMPL_AGENCY_APPEALS_PK — the primary key constraint and unique index enforcing COMPL_AGENCY_APPEAL_ID.
  • GHR_COMPLAINTS and other GHR_COMPL_* complaint detail tables (hearings, decisions, and investigation records) — companion children under the same complaint that provide the broader case picture when reporting across the EEO lifecycle.
  • Standard HR security and lookup objects referenced through COMPLAINT_ID resolution and any WHO-column lookups used by the GHR product UI forms and concurrent programs.

Because the ETRM metadata documents only one outbound foreign key, dependencies beyond GHR_COMPLAINTS2 should be confirmed against the deployed 12.2.2 schema before reliance in custom integrations.