Search Results auth_date
Overview
APPS.IGF_SE_EARNINGS_SUMMARY_V is a reporting view in the Oracle E-Business Suite Financials/Student Systems family, residing in the IGF (Grants/Financial Aid) schema. It consolidates award-level disbursement data into a summary of amounts awarded, amounts paid to date, remaining balances, and progress toward an award limit. The view is defined specifically for the Federal Work-Study (FWS) program, as evidenced by the filter AWD.FED_FUND_CODE = 'FWS', and is intended to support earnings monitoring, limit tracking, and downstream notification workflows for financial aid administrators. From an integration standpoint, the view presents a stable, denormalized projection that reporting tools, concurrent programs, or external consumers can query without needing to join award, disbursement, and calendar-instance tables directly.
The inclusion of the notification_sent column is significant in the context of the user search term. Although the column is populated as a literal NULL in the view definition, its presence signals that the view is designed as a template for earnings-limit notification logic, where a consumer or a derived query can overlay notification state (whether an alert has been sent, when, and under what authorization) onto computed earnings summary data.
Underlying Base Objects
The view is defined over three documented source objects:
- IGF_AW_AWARD_V (aliased AWD) — supplies the award identity (AWARD_ID, BASE_ID, FUND_ID) and the federal fund code used in the FWS filter.
- IGF_AW_AWD_DISB (aliased AWDISB) — the award disbursement table, providing accepted, gross, and paid amounts keyed to the award and calendar instance.
- IGS_CA_INST (aliased LOAD) — the calendar instance table, joined on LD_CAL_TYPE and LD_SEQUENCE_NUMBER to resolve the alternate code and period definitions.
Joins are performed on AWARD_ID between the award and disbursement objects, and on (CAL_TYPE, SEQUENCE_NUMBER) between the disbursement records and the calendar instance. The result set is grouped by BASE_ID, FUND_ID, LD_CAL_TYPE, LD_SEQUENCE_NUMBER, and ALTERNATE_CODE, producing one summarized row per award-fund-period combination. No additional base objects are documented for this view in the ETRM metadata.
Key Columns
- BASE_ID, FUND_ID — identify the award base record and the funding source.
- LD_CAL_TYPE, LD_SEQUENCE_NUMBER, LD_ALTERNATE_CODE — identify the loan/period calendar instance and its human-readable alternate code.
- AWARD_AMOUNT — derived conditionally: if the sum of accepted disbursement amounts is zero, the sum of gross amounts is used; otherwise the sum of accepted amounts. This reflects the accepted-versus-gross distinction in disbursement accounting.
- EARNINGS_TILL_DATE — the sum of DISB_PAID_AMT, representing amounts actually paid.
- REMAINING_AMOUNT — computed as AWARD_AMOUNT minus EARNINGS_TILL_DATE.
- PROGRESS_TO_LIMIT — computed as ROUND(EARNINGS_TILL_DATE/AWARD_AMOUNT) * 100, used to gauge utilization.
- NOTIFICATION_SENT, NOTIFICATION_DATE, AUTH_ID, AUTH_DATE — exposed as NULL placeholders, reserved for notification tracking and authorization metadata.
Common Use Cases and Queries
Typical uses include monitoring FWS earnings against award limits, identifying awards nearing their limit, and driving notification routines. A representative query filters rows exceeding a utilization threshold:
SELECT base_id, fund_id, ld_alternate_code, award_amount, earnings_till_date, remaining_amount, progress_to_limit FROM apps.igf_se_earnings_summary_v WHERE progress_to_limit >= 80;- Aggregation by fund:
SELECT fund_id, SUM(earnings_till_date) FROM apps.igf_se_earnings_summary_v GROUP BY fund_id; - Notification template selection:
SELECT base_id, ld_alternate_code, notification_sent FROM apps.igf_se_earnings_summary_v;
Because NOTIFICATION_SENT is currently NULL, consumers typically join or union the view with a notification tracking table or apply their own state logic. Reporting users should treat the notification columns as placeholders pending underlying logic, and validate AWARD_AMOUNT arithmetic where accepted amounts are zero to avoid division issues in PROGRESS_TO_LIMIT.
-
VIEW: APPS.IGF_SE_EARNINGS_SUMMARY_V
12.1.1
-
View: IGF_SE_EARNINGS_SUMMARY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: The entity is used to display the computed information about students funds payment/disbursement details. Thiswill be used by Student Employment to display computed figures for the fund payment and its percentage disbursement with respect t , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SE_EARNINGS_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_EARNINGS_SUMMARY_V, object_name:IGF_SE_EARNINGS_SUMMARY_V, status:VALID, product: IGF - Financial Aid , description: The entity is used to display the computed information about students funds payment/disbursement details. Thiswill be used by Student Employment to display computed figures for the fund payment and its percentage disbursement with respect t , implementation_dba_data: APPS.IGF_SE_EARNINGS_SUMMARY_V ,
-
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 ,
-
VIEW: APPS.IGF_SE_AUTH_V
12.1.1
-
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: APPS.IGF_SE_EARNINGS_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_EARNINGS_SUMMARY_V, object_name:IGF_SE_EARNINGS_SUMMARY_V, status:VALID,
-
VIEW: APPS.IGF_SE_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AWD_DISB_V, object_name:IGF_SE_AWD_DISB_V, status:VALID,
-
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: IGF_SE_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SE_AWD_DISB_V, object_name:IGF_SE_AWD_DISB_V, status:VALID, product: IGF - Financial Aid , description: Retrives all the award disbursement details for the student employment awards , implementation_dba_data: APPS.IGF_SE_AWD_DISB_V ,
-
View: IGF_SE_AWD_DISB_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrives all the award disbursement details for the student employment awards , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB_V, object_name:IGF_AW_AWD_DISB_V, status:VALID,
-
VIEW: APPS.IGF_AW_AWD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB, object_name:IGF_AW_AWD_DISB, status:VALID,
-
View: IGF_AW_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB_V, object_name:IGF_AW_AWD_DISB_V, status:VALID, product: IGF - Financial Aid , description: Stores details of each disbursement , implementation_dba_data: APPS.IGF_AW_AWD_DISB_V ,
-
View: IGF_AW_AWD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB, object_name:IGF_AW_AWD_DISB, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_AWD_DISB ,
-
View: IGF_AW_AWD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_AWD_DISB_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores details of each disbursement , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGF_SE_GEN_001
12.1.1
-
TABLE: IGF.IGF_AW_AWD_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_AWD_DISB_ALL, object_name:IGF_AW_AWD_DISB_ALL, status:VALID,
-
APPS.GHR_US_NFC_EXTRACTS SQL Statements
12.2.2
-
APPS.GHR_US_NFC_EXTRACTS SQL Statements
12.1.1
-
APPS.OE_VERIFY_PAYMENT_PUB SQL Statements
12.1.1
-
APPS.OE_VERIFY_PAYMENT_PUB SQL Statements
12.2.2
-
PACKAGE: APPS.IBY_FNDCPT_TRXN_PUB
12.1.1
-
APPS.GHR_US_NFC_EXTRACTS dependencies on GHR_PA_REQUESTS
12.1.1
-
APPS.GHR_US_NFC_EXTRACTS dependencies on GHR_PA_REQUESTS
12.2.2
-
PACKAGE: APPS.IBY_FNDCPT_TRXN_PUB
12.2.2
-
APPS.OE_VERIFY_PAYMENT_PUB dependencies on IBY_TRANS_ALL_V
12.2.2
-
APPS.OE_VERIFY_PAYMENT_PUB dependencies on IBY_TRANS_ALL_V
12.1.1
-
PACKAGE BODY: APPS.GHR_US_NFC_EXTRACTS
12.1.1
-
PACKAGE BODY: APPS.GHR_US_NFC_EXTRACTS
12.2.2
-
PACKAGE BODY: APPS.IGF_SE_GEN_001
12.1.1
-
PACKAGE BODY: APPS.OE_VERIFY_PAYMENT_PUB
12.1.1
-
PACKAGE BODY: APPS.OE_VERIFY_PAYMENT_PUB
12.2.2
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
APPS.OE_VERIFY_PAYMENT_PUB dependencies on OE_DEBUG_PUB
12.1.1
-
APPS.OE_VERIFY_PAYMENT_PUB dependencies on OE_DEBUG_PUB
12.2.2