Search Results max_hr_rate
Overview
The view IGFFV_STUDENT_AUTHORIZATIONS belongs to the IGF (Financial Aid) product family in Oracle EBS and is documented as an obsolete object. Its stated purpose is to serve as the full view for the entity that holds Student Work Authorizations, exposing authorization attributes alongside the identifying and demographic details of the student, the funding source, the award and load calendar context, and the person party record. Because the underlying IGF Financial Aid product line has been superseded, the view is retained primarily for reference and for historical reporting on the legacy Student Employment authorization data model.
In Oracle EBS reporting and integration, such a "full view" acts as a denormalized presentation layer that joins a primary transaction entity to its descriptive lookups, sparing report authors and interfaces from repeatedly reconstructing the same multi-table joins. The IGFFV_STUDENT_AUTHORIZATIONS view follows this convention, joining the authorization table to fund master, calendar instance, and person party tables. A user searching for the column accepted_amnt has reached this view, since ACCEPTED_AMNT is one of its exposed columns representing the accepted award amount recorded on the authorization.
Underlying Base Objects
Although the ETRM documentation records no referenced base objects in the 12.2.2 metadata, the embedded view text reveals the constituent tables used in the view definition. The driving table is IGF_SE_AUTH (aliased SEAUT), with which the view's authorization-centric columns are associated. It is joined to IGF_AW_FUND_MAST_ALL (FMAST) on FUND_ID, providing fund code and description. The award calendar instance is resolved through IGS_CA_INST_ALL (AWARD_CI), linked via the fund master's CI_CAL_TYPE and CI_SEQUENCE_NUMBER. A second instance of IGS_CA_INST_ALL (LOAD_CI) resolves the load calendar through LD_CAL_TYPE and LD_SEQUENCE_NUMBER on the authorization. Finally, HZ_PARTIES (HZ) is joined on PARTY_ID to supply the person number. The view is defined with WITH READ ONLY, so it cannot be used as an updateable entity.
Key Columns
- ACCEPTED_AMNT — the accepted authorization amount, mapped from
SEAUT.ACCEPTED_AMNT; the column most commonly sought for award acceptance reporting. - ACTIVE_FLAG — the authorization record's active indicator, sourced from
SEAUT.FLAG. - AUTHORIZATION_ID, PERSON_ID, FUND_ID, SEQUENCE_N — keys identifying the authorization, the student, the funding source, and the sequential line.
- FIRST_NAME, LAST_NAME, SSN, BIRTH_DATE, ADDRESS_LINE_1..4, CITY, STATE, PROVINCE, COUNTY, COUNTRY, SEX, MARITAL_STATUS — student demographic attributes held on the authorization record.
- VISA_TYPE, VISA_CATEGORY, VISA_NUMBER, VISA_EXPIRY_DT, ENTRY_DATE — visa and entry details relevant to work eligibility.
- THRESHOLD_PERCT, THRESHOLD_VALUE — earnings thresholds governing the authorization.
- AWARD_CALENDAR_TYPE, AWARD_YEAR_SEQUENCE_NUMBER, LOAD_CALENDAR_TYPE, LOAD_SEQUENCE_NUMBER, AWARD_YEAR, LOAD_CALENDAR — award and load calendar context.
- FUND_CODE, FUND_DESCRIPTION — descriptive attributes of the funding source.
- PERSON_NUMBER — the HZ party number for the student.
Common Use Cases and Queries
Typical reporting scenarios include listing authorized students with their accepted amounts per fund and award year, verifying active authorizations, and reconciling visa or demographic data used for work eligibility. Because the view is read-only and obsolete, it should be used for query purposes only.
To report accepted amounts by fund:
SELECT fund_code, fund_description, person_number, first_name, last_name, accepted_amnt, award_year FROM igffv_student_authorizations WHERE active_flag = 'Y';SELECT fund_code, SUM(accepted_amnt) total_accepted FROM igffv_student_authorizations GROUP BY fund_code;
To trace a specific student's authorizations, filter on PERSON_ID or PERSON_NUMBER. Note that several view columns (for example GOVT_SHARE_PERCT and SALARY_BASED) are populated with literal NULLs, so they carry no data.
-
View: IGFFV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_AUTHORIZATIONS, object_name:IGFFV_STUDENT_AUTHORIZATIONS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Student Work Authorizations , implementation_dba_data: APPS.IGFFV_STUDENT_AUTHORIZATIONS ,
-
View: IGFFV_STUDENT_AUTHORIZATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Student Work Authorizations , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SE_AUTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTH_V, object_name:IGF_SE_AUTH_V, status:VALID,
-
View: IGFBV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FUNDS, object_name:IGFBV_FUNDS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: APPS.IGFBV_FUNDS ,
-
View: IGFFV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FUNDS, object_name:IGFFV_FUNDS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: APPS.IGFFV_FUNDS ,
-
View: IGF_SE_AUTH_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: The entity contains the authorization details sent to the interface layer. This entity also at the same time has the history or inactive authorization records. At one line only one authorization record can remain active. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SE_AUTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTH_V, object_name:IGF_SE_AUTH_V, status:VALID, product: IGF - Financial Aid , description: The entity contains the authorization details sent to the interface layer. This entity also at the same time has the history or inactive authorization records. At one line only one authorization record can remain active. , implementation_dba_data: APPS.IGF_SE_AUTH_V ,
-
TABLE: IGF.IGF_SE_AUTH
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SE_AUTH, object_name:IGF_SE_AUTH, status:VALID,
-
View: IGFBV_FUNDS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFFV_STUDENT_AUTHORIZATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_AUTHORIZATIONS, object_name:IGFFV_STUDENT_AUTHORIZATIONS, status:VALID,
-
View: IGFFV_FUNDS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FUND_MAST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST, object_name:IGF_AW_FUND_MAST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_FUND_MAST ,
-
View: IGF_AW_FUND_MAST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SP_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SP_FUND_MAST_V, object_name:IGF_SP_FUND_MAST_V, status:VALID, product: IGF - Financial Aid , description: Stores Details and the properties of all the funds , implementation_dba_data: APPS.IGF_SP_FUND_MAST_V ,
-
View: IGF_AW_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST_V, object_name:IGF_AW_FUND_MAST_V, status:VALID, product: IGF - Financial Aid , description: Stores all the details and the properties for each fund , implementation_dba_data: APPS.IGF_AW_FUND_MAST_V ,
-
View: IGF_AW_FUND_MAST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SP_FUND_MAST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores Details and the properties of all the funds , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFBV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FUNDS, object_name:IGFBV_FUNDS, status:VALID,
-
VIEW: APPS.IGFFV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FUNDS, object_name:IGFFV_FUNDS, status:VALID,
-
VIEW: APPS.IGF_SP_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SP_FUND_MAST_V, object_name:IGF_SP_FUND_MAST_V, status:VALID,
-
TABLE: IGF.IGF_AW_FUND_MAST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FUND_MAST_ALL, object_name:IGF_AW_FUND_MAST_ALL, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST_V, object_name:IGF_AW_FUND_MAST_V, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_MAST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST, object_name:IGF_AW_FUND_MAST, status:VALID,
-
PACKAGE: APPS.IGF_SE_AUTH_PKG
12.1.1
-
APPS.IGF_SE_AUTH_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SE_AUTH_PKG
12.1.1
-
APPS.IGF_AW_FUND_MAST_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_FUND_MAST_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,