Search Results alternate_code
Overview
IGF_AP_AWARD_YEAR_V is a reporting view in the Oracle E-Business Suite IGF — Financial Aid product, a module now classified as obsolete in the ETRM repository. The view exposes Award Year definitions used by the financial aid processing and disbursement side of the application, specifically the linkage between institutional calendar instances and batch award-year configuration records. Rather than presenting raw calendar data alone, it joins each award year calendar instance to its corresponding award-year mapping record and resolves multiple coded values into their descriptive equivalents through a lookup function.
The object carries the same identity across the 12.1.1 and 12.2.2 documentation sets; the ETRM metadata for 12.2.2 records no separately owned base objects, and implementation notes state that the view is not implemented in the documented database. Consequently it should be treated as a reference definition rather than an active runtime object in a standard installation. Its value is chiefly historical and analytical: it documents the structure that customer-specific or upgraded IGF implementations may still contain.
Underlying Base Objects
The view text is defined over two physical objects, joined on calendar type and sequence number:
- IGS_CA_INST — the calendar instance table, aliased
CI. This supplies the calendar attributes, including the sequence number, start and end dates, calendar status, alternate code, organization identifier, and the standard Who columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN). - IGF_AP_BATCH_AW_MAP_ALL — the award-year mapping table, aliased
BM. This supplies the award year status code, Pell and Direct Loan participant codes, and the social services publishing flag.
IGS_CA_INST is a core Student Systems calendar table, which explains why no IGF-owned table is listed among the documented base objects in the 12.2.2 metadata. The join condition is BM.CI_CAL_TYPE = CI.CAL_TYPE AND BM.CI_SEQUENCE_NUMBER = CI.SEQUENCE_NUMBER, meaning only calendar instances that have a matching award-year mapping row are returned — an inner join that filters the calendar population down to designated award years.
Key Columns
The view returns twenty-three columns. The identity columns ROW_ID, CAL_TYPE, and SEQUENCE_NUMBER uniquely describe each award year. START_DT and END_DT bound the award year, while CAL_STATUS and SUP_CAL_STATUS_DIFFER_IND describe its lifecycle state.
The column of particular interest to users searching on PRIOR_CI_SEQUENCE_NUMBER is precisely that column. It is sourced directly from IGS_CA_INST and records the sequence number of the calendar instance that precedes the current award year within the same calendar type. It effectively provides an in-row pointer to the prior award year, allowing chronological ordering and year-over-year comparison without a self-join or window function. Note that because the view performs an inner join against the batch award-year map, a predecessor calendar instance will only be visible as a row if it too carries a mapping record.
The remaining descriptive columns include CAL_DESCRIPTION (from CI.DESCRIPTION) plus six lookup-resolved values derived through IGF_AW_GEN.LOOKUP_DESC: AWARD_YEAR_STATUS_DESC, PELL_PARTICIPANT_DESC, and DL_PARTICIPANT_DESC, each decoded from its underlying code column using the IGF_AWARD_YEAR_STATUS and IGF_COD_PARTICIPANT_TYPE lookup types. PUBLISH_IN_SS_FLAG indicates whether the award year is published to the social services interface.
Common Use Cases and Queries
Typical usage centres on validating award-year setup, sequencing award years, and reporting disbursement eligibility. A representative query listing active award years together with their predecessors is:
SELECT cal_type, sequence_number, prior_ci_sequence_number, start_dt, end_dt, award_year_status_desc FROM igf_ap_award_year_v ORDER BY cal_type, sequence_number;SELECT sequence_number, cal_description, pell_participant_desc, dl_participant_desc FROM igf_ap_award_year_v WHERE publish_in_ss_flag = 'Y';SELECT a.sequence_number, a.cal_description, p.sequence_number prior_seq FROM igf_ap_award_year_v a, igf_ap_award_year_v p WHERE a.prior_ci_sequence_number = p.sequence_number AND a.cal_type = p.cal_type;
Given the obsolete status and the absence of documented base objects in 12.2.2, any such query should be preceded by a check of ALL_VIEWS to confirm the view exists in the target instance.
-
View: IGF_AP_AWARD_YEAR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Award Years , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_DISBURSEMENT_ADJUSTMENTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that Stores all the actual disbursement transactions and adjustments made to these, after they have been posted to the student finance interface table. For planned disbursements, this view will not have any records. , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_DISBURSEMENT_ADJUSTMENTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that Stores all the actual disbursement transactions and adjustments made to these, after they have been posted to the student finance interface table. For planned disbursements, this view will not have any records. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_CL_SETUP_ORG_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: FFELP Organization Unit , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_ATTEND_PELL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds Attending Pell Identifiers for a Reporting Pell , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REPORT_PELL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds Reporting Pell Identifiers for a Award Year , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_DP_TEACH_PRDS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Award Distribution Plan Teaching Periods , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_DP_TERMS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Award Distribution Plan Terms , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_TUITION_FEES_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the start and end range amounts of low tuition fee codes , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_PR_PRG_TYPE_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores basic information about year specific Program Types that can be used to define Grade Levels for specific program type's class standing. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ATTEND_MAP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the mapping from Attendance Types, which are user-defined in OSS to the Attendance Types(enrollment status of Pell Grants/FFELP Loans/Application Processing) which is used in Financial Aid , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_AWD_CERT_RESPS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Award Certification Texts Response , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FISAP_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Displays the FISAP reporting data populated by the FISAP report , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_CL_SETUP_OVRD_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: FFELP Organization Unit Setup Override , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_BATCH_AW_MAP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_TARGET_GRP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Target group master , implementation_dba_data: Not implemented in this database ,
-
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_AW_SS_AWD_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds Awards that are published to Student Self-Service , implementation_dba_data: Not implemented in this database ,