Search Results fund_code_desc
Overview
The view APPS.IGF_SE_WORK_AWD_PRG_V is a reporting and integration construct within the Oracle E-Business Suite (EBS) financial aid module, part of the Oracle iGovernment / Student Financial Aid component. It exposes a consolidated, denormalized projection that joins awards, fund masters, fund category definitions, and student employment authorizations. The view is characterized as an inner-plus-outer join composite: award records drive the result set, while the student employment authorization (IGF_SE_AUTH) portion is applied through outer joins via the (+) operator, and only authorizations whose FLAG equals 'A' are included.
The view name encodes its purpose: Student Employment (SE) work-study award progress. Its result set is filtered specifically to Federal Work-Study (FWS) funds through the predicate FC.FED_FUND_CODE = 'FWS'. Because the source embeds business logic (progress percentage calculation, remaining amounts, FWS restriction), it presents a ready-made data set suitable for upstream reporting, page regions in Oracle Forms/OAF, concurrent program output, and integration extraction. The presence of audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) indicates it is designed to surface standard EBS Who columns alongside financial metrics.
Underlying Base Objects
The view is defined over four documented base objects:
IGF_AW_AWARD_ALL(aliasedAWD) — the award header, driving the join and supplying base, award, fund, status, and monetary measures.IGF_AW_FUND_MAST_ALL(aliasedFM) — fund master, joined onAWD.FUND_ID = FM.FUND_ID, supplyingFUND_CODEandDESCRIPTION.IGF_AW_FUND_CAT(aliasedFC) — fund category, joined onFM.FUND_CODE = FC.FUND_CODE, supplyingFED_FUND_CODEand enforcing the FWS filter.IGF_SE_AUTH(aliasedSE) — student employment authorization, outer-joined onSE.AWARD_ID(+) = AWD.AWARD_IDwith the restrictive outer predicateSE.FLAG(+) = 'A'.
Award rows therefore always appear (subject to the FWS category constraint), while authorization columns are populated only where a matching "active" authorization exists.
Key Columns
Monetary and status columns from the award include AWARD_STATUS, OFFERED_AMT, ACCEPTED_AMT, and PAID_AMT. The fund description column most relevant to the searched term is FUND_CODE_DESC, which is the alias given to FM.DESCRIPTION. A parallel student-employment figure, SE.ACCEPTED_AMNT, is exposed separately. Derived columns include REMAINING_AMT (accepted minus paid, using NVL guards) and PROGRESS_TWDS_LMT, which computes the paid percentage of accepted amount with DECODE to avoid division by zero. Authorization columns include AUTH_ID, AUTHORIZATION_DATE, and NOTIFICATION_DATE. The LEGACY_RECORD_FLAG identifies migrated historical records.
Common Use Cases and Queries
Typical usage retrieves FWS work-study progress per award and fund description. The search term fund_code_desc maps directly to the exposed alias:
SELECT award_id, fund_code, fund_code_desc,
accepted_amt, paid_amt, remaining_amt, progress_twds_lmt
FROM apps.igf_se_work_awd_prg_v
WHERE award_status = 'A';
Because the view already restricts to FED_FUND_CODE = 'FWS', no additional category filter is required. Analysts commonly aggregate paid versus accepted amounts by fund_code_desc, or join the view back to IGF_AW_AWARD_ALL for attributes not projected here.
-
VIEW: APPS.IGF_SE_WORK_AWD_PRG_V
12.1.1
-
View: IGF_SE_WORK_AWD_PRG_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View that holds student work award progress information in an award year , implementation_dba_data: Not implemented in this database ,
-
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: APPS.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,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,