Search Results authorization_date
Overview
IGFBV_AWARD_DISBURSEMENTS is a base view owned by the APPS schema in the Oracle E-Business Suite Financial Aid (IGF) module. It is the entity view that exposes one row for each disbursement associated with a financial aid award, drawing together award-level, disbursement-level, calendar, academic period, and party identification data into a single reporting surface. Its purpose is to serve as a foundation for forms, concurrent programs, OAF pages, and integration extracts within the Financial Aid product, presenting disbursement records in a denormalized, human-readable shape.
The view is documented as VALID in ETRM for 12.2.2 and applies equally to 12.1.1 environments using the same Financial Aid schema. It should not be confused with the underlying transactional table IGF_AW_AWD_DISB_ALL, though it maps almost column-for-column from that table and adds joined descriptive attributes. This view is important for reporting on student disbursements because it joins disbursement records to student identity (HZ_PARTIES), award context, and calendar instances without requiring the report author to reconstruct the joins manually.
Underlying Base Objects
The view's FROM clause is composed of five base objects:
- IGF_AW_AWD_DISB_ALL — alias AAD; the primary disbursement table supplying amounts, statuses, dates, and flags.
- IGF_AW_AWARD_ALL — alias AWD; the award header table, joined to AAD via AWARD_ID.
- IGF_AP_FA_BASE_REC_ALL — alias BASE; the financial aid base record, joined to AWD via BASE_ID and to CI and PE.
- IGS_CA_INST_ALL — alias CI; the calendar instance/period table, joined on BASE.CI_CAL_TYPE and BASE.CI_SEQUENCE_NUMBER.
- HZ_PARTIES — alias PE; the trading community party, joined on BASE.PERSON_ID = PE.PARTY_ID.
The view is defined WITH READ ONLY, ensuring consumers cannot issue DML against it. Lookup-displayed columns are modeled through '_LA:' pseudo-columns, which instruct the Forms/OAF layer to resolve coded values from IGF_LOOKUPS_VIEW or IGS_LOOKUP_VALUES using the appropriate lookup type.
Key Columns
- AWARD_ID, DISB_NUM — identify the award and the specific disbursement within it.
- DISB_GROSS_AMT, FEE_1, FEE_2, DISB_NET_AMT, DISB_PAID_AMT, DISB_ACCEPTED_AMT, INT_REBATE_AMT — the monetary breakdown of the disbursement.
- DISB_DATE, DISB_EXP_DT, VERF_ENFR_DT, FUND_RELEASE_DATE — the principal dates on the disbursement.
- AUTH_ID, RVSN_ID — the authorization identifier referenced by the user search term "authorization_date". In this view, authorization is represented via AUTH_ID; the associated authorization date is not exposed directly but must be resolved against the authorization entity using AUTH_ID.
- DISB_STATUS, DISB_STATUS_DATE, ELIG_STATUS, ELIG_STATUS_DATE, FUND_STATUS, FUND_STATUS_DATE — status codes and their effective dates; lookups render their MEANING values.
- TP_CAL_TYPE, TP_SEQUENCE_NUMBER, LD_CAL_TYPE, LD_SEQUENCE_NUMBER — teaching period and load/loan period calendar references.
- PARTY_NUMBER, PARTY_NAME, ALTERNATE_CODE, DESCRIPTION, PERSON_ID — the student identity carried from HZ_PARTIES, the program instance, and the base record.
Common Use Cases and Queries
Typical uses include disbursement registers, reconciliation extracts, authorization tracking, and student self-service displays. Because authorization_date is not a column on this view, a query filtering by authorization date must join out to the authorization source (for example IGF_AW_AWD_AUTH or the corresponding authorization base record) using AUTH_ID. A typical disbursement register might select:
SELECT AWARD_ID, DISB_NUM, PERSON_ID, PARTY_NUMBER, PARTY_NAME, DISB_DATE, DISB_NET_AMT, DISB_STATUS, AUTH_ID FROM APPS.IGFBV_AWARD_DISBURSEMENTS WHERE DISB_DATE BETWEEN :p_start AND :p_end;
To locate authorizations by date, the pattern is:
SELECT d.AWARD_ID, d.DISB_NUM, d.AUTH_ID, a.AUTHORIZATION_DATE FROM APPS.IGFBV_AWARD_DISBURSEMENTS d, <authorization_table> a WHERE d.AUTH_ID = a.AUTH_ID AND a.AUTHORIZATION_DATE = :p_auth_date;
The exact authorization table must be confirmed against the deployed IGF schema, since the view documentation exposes AUTH_ID but not the parent authorization table or its date column. Analysts should confirm the mapped column before relying on it.
-
View: IGFBV_AWARD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_AWARD_DISBURSEMENTS, object_name:IGFBV_AWARD_DISBURSEMENTS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the information of each disbursement. , implementation_dba_data: APPS.IGFBV_AWARD_DISBURSEMENTS ,
-
View: IGF_SE_AUTHORIZATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AUTHORIZATION_V, object_name:IGF_SE_AUTHORIZATION_V, status:VALID, product: IGF - Financial Aid , description: Public view to derive active work authorizations , implementation_dba_data: APPS.IGF_SE_AUTHORIZATION_V ,
-
View: IGFFV_STUDENT_FWS_AWAD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_FWS_AWAD_DETAILS, object_name:IGFFV_STUDENT_FWS_AWAD_DETAILS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Student Work Study Award Details , implementation_dba_data: APPS.IGFFV_STUDENT_FWS_AWAD_DETAILS ,
-
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: IGF_SE_WORK_AWD_PRG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_WORK_AWD_PRG_V, object_name:IGF_SE_WORK_AWD_PRG_V, status:VALID, product: IGF - Financial Aid , description: View that holds student work award progress information in an award year , implementation_dba_data: APPS.IGF_SE_WORK_AWD_PRG_V ,
-
View: IGFBV_STUDENT_FWS_AWAD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_FWS_AWAD_DETAILS, object_name:IGFBV_STUDENT_FWS_AWAD_DETAILS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Student Work Study Award Details , implementation_dba_data: APPS.IGFBV_STUDENT_FWS_AWAD_DETAILS ,
-
View: IGFFV_AWARD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_AWARD_DISBURSEMENTS, object_name:IGFFV_AWARD_DISBURSEMENTS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the information of each disbursement. , implementation_dba_data: APPS.IGFFV_AWARD_DISBURSEMENTS ,
-
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 ,