Search Results ghr_pa_requests
Overview
The GHR_PA_REQUESTS table is a core data repository within the US Federal Human Resources (GHR) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It serves as the central transactional table for managing the lifecycle of a Request to Personnel Action (RPA), which is the formal electronic document initiating a personnel change for a federal employee. Every personnel action, such as a promotion, transfer, or appointment, originates as a record in this table. Its primary role is to store all defining information about the request, including its nature, the employee's position and pay details before and after the action, and its routing and approval status within the system.
Key Information Stored
The table's structure is defined by its primary key, PA_REQUEST_ID, which uniquely identifies each request. A significant portion of its columns are foreign keys that establish critical relationships with other configuration and transactional tables in the GHR schema. Key data points stored include the Nature of Action (NOA) identifiers (FIRST_NOA_ID, SECOND_NOA_ID) linking to GHR_NATURE_OF_ACTIONS, and the associated NOA family code (NOA_FAMILY_CODE) from GHR_FAMILIES. It captures routing information via ROUTING_GROUP_ID and PERSONNEL_OFFICE_ID. The table also stores the "from" and "to" states of the personnel action, such as FROM_PAY_PLAN, TO_PAY_PLAN, TO_JOB_ID, TO_GRADE_ID, and TO_ORGANIZATION_ID. Furthermore, it maintains relationships to other RPAs for complex actions through columns like ALTERED_PA_REQUEST_ID, FIRST_NOA_PA_REQUEST_ID, and SECOND_NOA_PA_REQUEST_ID, which are self-referencing foreign keys to the same GHR_PA_REQUESTS table.
Common Use Cases and Queries
This table is fundamental for tracking, reporting, and auditing personnel actions. Common use cases include generating a list of all pending RPAs for a personnel office, auditing the history of actions for a specific employee, and reporting on the volume of actions by type or organization. A typical query might join GHR_PA_REQUESTS with GHR_NATURE_OF_ACTIONS and PER_ALL_PEOPLE_F to retrieve active requests. For example:
- SELECT pr.PA_REQUEST_ID, pr.REQUEST_NUMBER, noa.NOA_CODE, pp.FULL_NAME FROM HR.GHR_PA_REQUESTS pr JOIN HR.GHR_NATURE_OF_ACTIONS noa ON pr.FIRST_NOA_ID = noa.NATURE_OF_ACTION_ID JOIN APPS.PER_ALL_PEOPLE_F pp ON pr.PERSON_ID = pp.PERSON_ID WHERE pr.PERSONNEL_OFFICE_ID = :office_id AND SYSDATE BETWEEN pp.EFFECTIVE_START_DATE AND pp.EFFECTIVE_END_DATE;
Another critical pattern involves tracing the lineage of an altered action by joining the table to itself via the ALTERED_PA_REQUEST_ID column.
Related Objects
As indicated by its extensive foreign key relationships, GHR_PA_REQUESTS is a hub table with numerous dependencies. Key related objects include:
- Configuration Tables: GHR_NATURE_OF_ACTIONS, GHR_FAMILIES, GHR_ROUTING_GROUPS, GHR_PAY_PLANS, GHR_POIS.
- Core HR Tables: PER_JOBS, PER_GRADES, HR_ALL_ORGANIZATION_UNITS.
- Transactional Child Tables: GHR_PA_REMARKS (for comments), GHR_PA_HISTORY (for audit trails), GHR_EVENTS (for action events).
- Mass Transaction Tables: GHR_MASS_REALIGNMENT, GHR_MASS_SALARIES, GHR_MASS_TRANSFERS, which store details for bulk operations initiated via an RPA.
- Shadow Table: GHR_PA_REQUEST_SHADOW, which likely holds temporary or staging data related to the request.
-
Table: 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, product: GHR - US Federal Human Resources , description: Stores all the information about the Request to Personnel Action. , implementation_dba_data: HR.GHR_PA_REQUESTS ,
-
Table: 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, product: GHR - US Federal Human Resources , description: Stores all the information about the Request to Personnel Action. , implementation_dba_data: HR.GHR_PA_REQUESTS ,
-
Table: GHR_PA_REQUEST_SHADOW
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUEST_SHADOW, object_name:GHR_PA_REQUEST_SHADOW, status:VALID, product: GHR - US Federal Human Resources , description: Stores all the columns of the corresponding record of GHR_PA_REQUESTS. , implementation_dba_data: HR.GHR_PA_REQUEST_SHADOW ,
-
Table: GHR_PA_REQUEST_SHADOW
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUEST_SHADOW, object_name:GHR_PA_REQUEST_SHADOW, status:VALID, product: GHR - US Federal Human Resources , description: Stores all the columns of the corresponding record of GHR_PA_REQUESTS. , implementation_dba_data: HR.GHR_PA_REQUEST_SHADOW ,
-
Table: GHR_PA_HISTORY
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_HISTORY, object_name:GHR_PA_HISTORY, status:VALID, product: GHR - US Federal Human Resources , description: Stores the history of all the transations performed on certain tables. , implementation_dba_data: HR.GHR_PA_HISTORY ,
-
Table: GHR_PA_HISTORY
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_HISTORY, object_name:GHR_PA_HISTORY, status:VALID, product: GHR - US Federal Human Resources , description: Stores the history of all the transations performed on certain tables. , implementation_dba_data: HR.GHR_PA_HISTORY ,
-
Table: GHR_PAY_PLANS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PAY_PLANS, object_name:GHR_PAY_PLANS, status:VALID, product: GHR - US Federal Human Resources , description: Defines the Pay Plans , implementation_dba_data: HR.GHR_PAY_PLANS ,
-
Table: GHR_PAY_PLANS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PAY_PLANS, object_name:GHR_PAY_PLANS, status:VALID, product: GHR - US Federal Human Resources , description: Defines the Pay Plans , implementation_dba_data: HR.GHR_PAY_PLANS ,
-
Table: GHR_NATURE_OF_ACTIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_NATURE_OF_ACTIONS, object_name:GHR_NATURE_OF_ACTIONS, status:VALID, product: GHR - US Federal Human Resources , description: This table holds a list of nature of action codes. , implementation_dba_data: HR.GHR_NATURE_OF_ACTIONS ,
-
Table: GHR_NATURE_OF_ACTIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_NATURE_OF_ACTIONS, object_name:GHR_NATURE_OF_ACTIONS, status:VALID, product: GHR - US Federal Human Resources , description: This table holds a list of nature of action codes. , implementation_dba_data: HR.GHR_NATURE_OF_ACTIONS ,
-
Table: GHR_PA_REQUEST_EI_SHADOW
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUEST_EI_SHADOW, object_name:GHR_PA_REQUEST_EI_SHADOW, status:VALID, product: GHR - US Federal Human Resources , description: Stores all the columns of the corresponding record ofGHR_PA_REQUEST_EXTRA_INFO. , implementation_dba_data: HR.GHR_PA_REQUEST_EI_SHADOW ,
-
Table: 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, product: GHR - US Federal Human Resources , description: Stores Remark codes for the Personnel Action , implementation_dba_data: HR.GHR_PA_REMARKS ,
-
Table: GHR_EVENTS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_EVENTS, object_name:GHR_EVENTS, status:VALID, product: GHR - US Federal Human Resources , description: This table stores various events. , implementation_dba_data: HR.GHR_EVENTS ,
-
Table: GHR_EVENTS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_EVENTS, object_name:GHR_EVENTS, status:VALID, product: GHR - US Federal Human Resources , description: This table stores various events. , implementation_dba_data: HR.GHR_EVENTS ,
-
Table: GHR_PA_REQUEST_EXTRA_INFO
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUEST_EXTRA_INFO, object_name:GHR_PA_REQUEST_EXTRA_INFO, status:VALID, product: GHR - US Federal Human Resources , description: Stores additional information based on information types. , implementation_dba_data: HR.GHR_PA_REQUEST_EXTRA_INFO ,
-
Table: 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, product: GHR - US Federal Human Resources , description: Stores Remark codes for the Personnel Action , implementation_dba_data: HR.GHR_PA_REMARKS ,
-
Table: GHR_PA_REQUEST_EXTRA_INFO
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUEST_EXTRA_INFO, object_name:GHR_PA_REQUEST_EXTRA_INFO, status:VALID, product: GHR - US Federal Human Resources , description: Stores additional information based on information types. , implementation_dba_data: HR.GHR_PA_REQUEST_EXTRA_INFO ,
-
Table: GHR_PA_REQUEST_EI_SHADOW
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_REQUEST_EI_SHADOW, object_name:GHR_PA_REQUEST_EI_SHADOW, status:VALID, product: GHR - US Federal Human Resources , description: Stores all the columns of the corresponding record ofGHR_PA_REQUEST_EXTRA_INFO. , implementation_dba_data: HR.GHR_PA_REQUEST_EI_SHADOW ,
-
Table: GHR_ROUTING_GROUPS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_ROUTING_GROUPS, object_name:GHR_ROUTING_GROUPS, status:VALID, product: GHR - US Federal Human Resources , description: Routing Group information , implementation_dba_data: HR.GHR_ROUTING_GROUPS ,
-
Table: GHR_ROUTING_GROUPS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_ROUTING_GROUPS, object_name:GHR_ROUTING_GROUPS, status:VALID, product: GHR - US Federal Human Resources , description: Routing Group information , implementation_dba_data: HR.GHR_ROUTING_GROUPS ,
-
Table: GHR_PA_ROUTING_HISTORY
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_ROUTING_HISTORY, object_name:GHR_PA_ROUTING_HISTORY, status:VALID, product: GHR - US Federal Human Resources , description: Routing History details of the PA Request , implementation_dba_data: HR.GHR_PA_ROUTING_HISTORY ,
-
Table: GHR_POIS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_POIS, object_name:GHR_POIS, status:VALID, product: GHR - US Federal Human Resources , description: Contains information related to Personnel Office Identifier , implementation_dba_data: HR.GHR_POIS ,
-
Table: GHR_FAMILIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_FAMILIES, object_name:GHR_FAMILIES, status:VALID, product: GHR - US Federal Human Resources , description: GHR_FAMILIES holds information about a family. , implementation_dba_data: HR.GHR_FAMILIES ,
-
Table: GHR_POIS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_POIS, object_name:GHR_POIS, status:VALID, product: GHR - US Federal Human Resources , description: Contains information related to Personnel Office Identifier , implementation_dba_data: HR.GHR_POIS ,
-
Table: GHR_MASS_SALARIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_MASS_SALARIES, object_name:GHR_MASS_SALARIES, status:VALID, product: GHR - US Federal Human Resources , description: This table stores the criteria and status for mass salary action. , implementation_dba_data: HR.GHR_MASS_SALARIES ,
-
Table: GHR_MASS_SALARIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_MASS_SALARIES, object_name:GHR_MASS_SALARIES, status:VALID, product: GHR - US Federal Human Resources , description: This table stores the criteria and status for mass salary action. , implementation_dba_data: HR.GHR_MASS_SALARIES ,
-
Table: GHR_FAMILIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_FAMILIES, object_name:GHR_FAMILIES, status:VALID, product: GHR - US Federal Human Resources , description: GHR_FAMILIES holds information about a family. , implementation_dba_data: HR.GHR_FAMILIES ,
-
Table: GHR_PA_ROUTING_HISTORY
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_PA_ROUTING_HISTORY, object_name:GHR_PA_ROUTING_HISTORY, status:VALID, product: GHR - US Federal Human Resources , description: Routing History details of the PA Request , implementation_dba_data: HR.GHR_PA_ROUTING_HISTORY ,
-
Table: GHR_MASS_TRANSFERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_MASS_TRANSFERS, object_name:GHR_MASS_TRANSFERS, status:VALID, product: GHR - US Federal Human Resources , description: This table stores the additional criteria for a mass transfer action. , implementation_dba_data: HR.GHR_MASS_TRANSFERS ,
-
Table: GHR_MASS_TRANSFERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_MASS_TRANSFERS, object_name:GHR_MASS_TRANSFERS, status:VALID, product: GHR - US Federal Human Resources , description: This table stores the additional criteria for a mass transfer action. , implementation_dba_data: HR.GHR_MASS_TRANSFERS ,
-
View: GHR_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PEOPLE_V, object_name:GHR_PEOPLE_V, status:VALID, product: GHR - US Federal Human Resources , description: This view is based on table PER_PEOPLE_F , implementation_dba_data: APPS.GHR_PEOPLE_V ,
-
Table: GHR_MASS_REALIGNMENT
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_MASS_REALIGNMENT, object_name:GHR_MASS_REALIGNMENT, status:VALID, product: GHR - US Federal Human Resources , description: This table is used to store criteria for mass realignment. , implementation_dba_data: HR.GHR_MASS_REALIGNMENT ,
-
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_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PEOPLE_V, object_name:GHR_PEOPLE_V, status:VALID, product: GHR - US Federal Human Resources , description: This view is based on table PER_PEOPLE_F , implementation_dba_data: APPS.GHR_PEOPLE_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: GHR_MASS_REALIGNMENT
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_MASS_REALIGNMENT, object_name:GHR_MASS_REALIGNMENT, status:VALID, product: GHR - US Federal Human Resources , description: This table is used to store criteria for mass realignment. , implementation_dba_data: HR.GHR_MASS_REALIGNMENT ,
-
View: GHR_PA_REQUESTS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REQUESTS_V1, object_name:GHR_PA_REQUESTS_V1, status:VALID, product: GHR - US Federal Human Resources , description: This view holds the RPA and NPA information. , implementation_dba_data: APPS.GHR_PA_REQUESTS_V1 ,
-
View: GHR_PA_REQUESTS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PA_REQUESTS_V1, object_name:GHR_PA_REQUESTS_V1, status:VALID, product: GHR - US Federal Human Resources , description: This view holds the RPA and NPA information. , implementation_dba_data: APPS.GHR_PA_REQUESTS_V1 ,
-
View: GHR_MASS_AWARDS_PREVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MASS_AWARDS_PREVIEW_V, object_name:GHR_MASS_AWARDS_PREVIEW_V, status:VALID, product: GHR - US Federal Human Resources , description: This view holds the Mass Award Preview Information. , implementation_dba_data: APPS.GHR_MASS_AWARDS_PREVIEW_V ,
-
View: GHR_MASS_AWARDS_PREVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MASS_AWARDS_PREVIEW_V, object_name:GHR_MASS_AWARDS_PREVIEW_V, status:VALID, product: GHR - US Federal Human Resources , description: This view holds the Mass Award Preview Information. , implementation_dba_data: APPS.GHR_MASS_AWARDS_PREVIEW_V ,
-
View: GHR_PD_COVERSHEET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PD_COVERSHEET_V, object_name:GHR_PD_COVERSHEET_V, status:VALID, product: GHR - US Federal Human Resources , description: Position Description Coversheet details , implementation_dba_data: APPS.GHR_PD_COVERSHEET_V ,
-
View: GHR_PD_COVERSHEET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_PD_COVERSHEET_V, object_name:GHR_PD_COVERSHEET_V, status:VALID, product: GHR - US Federal Human Resources , description: Position Description Coversheet details , implementation_dba_data: APPS.GHR_PD_COVERSHEET_V ,