Search Results ghr_sf113_v
Overview
The view APPS.GHR_SF113_V is a reporting object within the Oracle E-Business Suite GHR — US Federal Human Resources product family. Its documented purpose is to generate the SF-113A report, a U.S. federal personnel form that summarizes assignment and position data for active and terminated personnel. In the context of EBS 12.1.1 and 12.2.2, this view functions as a denormalized, read-only projection of core HR assignment data, joining person, assignment, grade, and status information into a single consumable rowset suitable for reporting and downstream integration.
The view is owned by the APPS schema and carries a VALID status in the ETRM registry. Because Oracle EBS exposes GHR federal objects through the APPS schema, this view is typically referenced by concurrent programs, BI Publisher report definitions, and custom extracts rather than being maintained by end users directly. Its role is therefore that of a stable query interface, shielding reporting logic from the normalized structure of the underlying PER tables.
Underlying Base Objects
The documented base objects referenced by GHR_SF113_V span views, synonyms, and packaged APIs. The primary data sources are the PER_ASSIGNMENTS_F and PER_PEOPLE_F date-tracked views, joined through PER_ASSIGNMENT_STATUS_TYPES, PER_GRADES, and PER_GRADE_DEFINITIONS. These are the fact-bearing objects from which assignment, person, grade, and status attributes are drawn.
The ETRM metadata additionally lists the package dependencies HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY. These packages are significant: HR_SECURITY enforces row-level security (security profiles) so that the view returns only the people and assignments visible to the querying responsibility. HR_PERSON_NAME supports name formatting, while HR_GENERAL provides shared HR utilities. Note that the view text itself does not filter by business group or date-tracked effective dates explicitly; that behavior is inherited from the underlying _F views and the security packages.
Key Columns
- PERSON_ID — Surrogate identifier for the person, used to join to other person-centric objects.
- STATUS — A decoded numeric flag derived from PER_SYSTEM_STATUS. Assignments with status
ACTIVE_ASSIGNresolve to1,TERM_ASSIGNresolves to2, and all others resolve to0. - EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — The date-tracked validity window for the assignment row.
- ASSIGNMENT_ID — Primary assignment identifier.
- POSITION_ID — Identifier of the position held (where applicable).
- GRADE_ID — Grade reference for the assignment.
- LOCATION_ID — Assigned work location.
The search term active_assign corresponds directly to the ACTIVE_ASSIGN system status. The view deliberately filters into the ACTIVE_ASSIGN and TERM_ASSIGN statuses only, so it excludes other assignment states. It also restricts PRIMARY_FLAG = 'Y' (primary assignments only) and ASSIGNMENT_TYPE <> 'B' (excluding applicant-type rows). Grade definitions beginning with the segments CC, NA, NL, or NS are suppressed via a SUBSTR filter on SEGMENT1.
Common Use Cases and Queries
The most frequent use case is SF-113A report generation and related workforce extracts. A representative query retrieving all active primary assignments is shown below.
- Active assignment listing:
SELECT person_id, assignment_id, status, effective_start_date, effective_end_date FROM apps.ghr_sf113_v WHERE status = 1 ORDER BY person_id; - Grade and location analysis: Join GRADE_ID and LOCATION_ID to PER_GRADES and HR_LOCATIONS to build distribution reports.
- Status comparison: Filter
WHERE status IN (1,2)to compare currently active versus terminated assignments for a submission period. - Integration: Consume the view in BI Publisher data models or OBIEE extracts where a flat person-assignment rowset is required.
Because row-level security is applied through HR_SECURITY, results vary by the responsibility or user context executing the query. Administrators should therefore test queries under the intended reporting responsibility to confirm the correct security profile is in effect. The DATE_TRACKED nature of the underlying _F views also means that a given assignment may appear across multiple effective-dated rows unless the caller constrains effective dates explicitly.
-
View: GHR_SF113_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_SF113_V, object_name:GHR_SF113_V, status:VALID, product: GHR - US Federal Human Resources , description: This view is used to generate SF-113A report. , implementation_dba_data: APPS.GHR_SF113_V ,
-
View: GHR_SF113_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_SF113_V, object_name:GHR_SF113_V, status:VALID, product: GHR - US Federal Human Resources , description: This view is used to generate SF-113A report. , implementation_dba_data: APPS.GHR_SF113_V ,
-
SYNONYM: PUBLIC.GHR_SF113_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:GHR_SF113_V, status:VALID,
-
VIEW: APPS.GHR_SF113_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_SF113_V, object_name:GHR_SF113_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.GHR_SF113_A
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GHR_SF113_A, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GHR_SF113_A
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GHR_SF113_A, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.GHR_SF113_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_SF113_V, object_name:GHR_SF113_V, status:VALID,
-
APPS.GHR_SF113_A SQL Statements
12.2.2
-
APPS.GHR_SF113_A SQL Statements
12.1.1
-
SYNONYM: APPS.PER_GRADE_DEFINITIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_GRADE_DEFINITIONS, status:VALID,
-
SYNONYM: APPS.PER_GRADE_DEFINITIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_GRADE_DEFINITIONS, status:VALID,
-
SYNONYM: APPS.PER_GRADES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_GRADES, status:VALID,
-
SYNONYM: APPS.PER_GRADES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_GRADES, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
APPS.GHR_SF113_A dependencies on GHR_SF113_V
12.1.1
-
APPS.GHR_SF113_A dependencies on GHR_SF113_V
12.2.2
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.PER_ASSIGNMENT_STATUS_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ASSIGNMENT_STATUS_TYPES, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.PER_ASSIGNMENT_STATUS_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ASSIGNMENT_STATUS_TYPES, status:VALID,
-
APPS.GHR_SF113_A dependencies on PER_POSITION_DEFINITIONS
12.1.1
-
APPS.GHR_SF113_A dependencies on PER_POSITION_DEFINITIONS
12.2.2
-
APPS.GHR_SF113_A dependencies on HR_ALL_POSITIONS_F
12.1.1
-
APPS.GHR_SF113_A dependencies on GHR_NATURE_OF_ACTIONS
12.2.2
-
APPS.GHR_SF113_A dependencies on HR_ALL_POSITIONS_F
12.2.2
-
APPS.GHR_SF113_A dependencies on GHR_NATURE_OF_ACTIONS
12.1.1
-
eTRM - GHR Tables and Views
12.1.1
description: Routing List members detail ,
-
APPS.GHR_SF113_A dependencies on GHR_PA_REQUESTS
12.2.2
-
APPS.GHR_SF113_A dependencies on GHR_PA_REQUESTS
12.1.1
-
APPS.GHR_SF113_A dependencies on HR_LOCATION_EXTRA_INFO
12.2.2
-
APPS.GHR_SF113_A dependencies on HR_LOCATION_EXTRA_INFO
12.1.1
-
APPS.GHR_SF113_A dependencies on GHR_DUTY_STATIONS_F
12.2.2
-
APPS.GHR_SF113_A dependencies on GHR_DUTY_STATIONS_F
12.1.1
-
VIEW: APPS.PER_ASSIGNMENTS_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_F, object_name:PER_ASSIGNMENTS_F, status:VALID,
-
VIEW: APPS.PER_ASSIGNMENTS_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_F, object_name:PER_ASSIGNMENTS_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
PACKAGE BODY: APPS.GHR_SF113_A
12.1.1
-
PACKAGE BODY: APPS.GHR_SF113_A
12.2.2
-
eTRM - GHR Tables and Views
12.2.2
description: Routing List members detail ,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - GHR Tables and Views
12.1.1
description: Routing List members detail ,
-
12.2.2 DBA Data
12.2.2