Search Results aw_alternate_code




Overview

The IGF_SE_AUTH_V view resides in the APPS schema and belongs to the IGF (Financial Aid) product family within Oracle E-Business Suite releases 12.1.1 and 12.2.2. It exposes authorization records that have been transmitted to the student financial aid interface layer, and it simultaneously preserves historical and inactive authorization rows. The view is therefore both a transactional feeder for downstream processing (such as loan certification, disbursement authorization, and Title IV reporting) and an audit trail covering the full lifecycle of an authorization.

A governing business rule is embedded in the underlying design: for any single award line, only one authorization record may remain active at a time. Superseded authorizations are retained as inactive history, which makes the view suitable for reconciliation, change tracking, and compliance evidence. Because it is a view rather than a table, no DML should be issued against it; consumers read it directly or embed it in concurrent programs and BI Publisher data templates.

Underlying Base Objects

The documented SQL definition joins four base objects:

Notably, the user search term aw_alternate_code maps to the view column AW_ALTERNATE_CODE, sourced from CA1.ALTERNATE_CODE in IGS_CA_INST, alongside AW_START_DATE and AW_END_DATE.

Key Columns

Common Use Cases and Queries

Typical scenarios include verifying which authorization is active for a given award line, extracting award-year context via the alternate code, and reconciling accepted amounts against fund masters for disbursement.

SELECT auth_id, person_id, fund_code, accepted_amnt,
       aw_cal_type, aw_sequence_number, aw_alternate_code,
       aw_start_date, aw_end_date, auth_date, flag
FROM   apps.igf_se_auth_v
WHERE  award_id = :p_award_id
AND    flag = 'Y';

To identify active authorizations by award year:

SELECT aw_alternate_code, fund_code, COUNT(*)
FROM   apps.igf_se_auth_v
WHERE  aw_alternate_code = :p_alt_code
GROUP  BY aw_alternate_code, fund_code;

Because the view returns DISTINCT rows and includes inactive history, filters on FLAG and AUTH_DATE are essential to avoid double counting when aggregating amounts for interface feeds or audit reports.

  • 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 Aiddescription: 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

  • View: IGF_AW_AWD_LD_CAL_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:IGF.IGF_AW_AWD_LD_CAL_V,  object_name:IGF_AW_AWD_LD_CAL_V,  status:VALID,  product: IGF - Financial Aiddescription: Retrieves all the load calendars that fall within an award year ,  implementation_dba_data: APPS.IGF_AW_AWD_LD_CAL_V