Search Results fund_exp_da
Overview
IGFBV_FUNDS is a base view owned by the APPS schema within the IGF (Financial Aid) product module of Oracle E-Business Suite. It is defined over the FMAST base table (the fund master entity) and exposes the full set of details and properties associated with each financial aid fund. In EBS 12.1.1 and 12.2.2, this view functions as the presentation and integration layer for fund definitions, allowing reporting tools, concurrent programs, and custom extensions to query fund attributes through a stable, APPS-owned synonym-less object rather than accessing the underlying FMAST table directly. The view is documented as VALID in the ETRM repository.
A distinguishing characteristic of the view is its use of the "_LA:" (lookup attribute) convention. Rather than returning raw lookup codes, the view text maps enumerated columns such as DISCONTINUE_FUND, ENTITLEMENT, AUTO_PKG, SELF_HELP, and others through IGF_LOOKUPS_VIEW (using lookup types such as IGF_AP_YES_NO, IGF_AW_NEED_METHOD, IGF_AW_ROUND_OFF, and IGF_AWARD_STATUS) to their MEANING values. This means report builders obtain human-readable descriptions directly, without needing to join to the lookup views themselves.
Underlying Base Objects
The documented view text references a single base object, aliased FMAST, which is the fund master table (IGF_FM_FMAST or its equivalent in the IGF schema boundary). Every column projected by IGFBV_FUNDS originates from FMAST; the view performs no joins in the excerpt provided. The lookup decoding described above is embedded as correlated lookup expressions rather than explicit joins in the base definition.
The ETRM metadata for the 12.2.2 release lists no separately documented referenced base objects, so integrators should treat FMAST as the sole authoritative source. Because the view is a thin projection over FMAST, it inherits the table's validation state and any fund-level descriptive flexfield behavior is not included unless explicitly projected.
Key Columns
- FUND_CODE, DESCRIPTION — the fund's primary identifier and its textual name.
- CI_CAL_TYPE, CI_SEQUENCE_NUMBER — the calendar type and sequence number governing the fund's aid year.
- AVAILABLE_AMT, OFFERED_AMT, PENDING_AMT, ACCEPTED_AMT, DECLINED_AMT, CANCELLED_AMT, REMAINING_AMT — the core award-lifecycle monetary balances at fund level.
- COMMITTED_AMT and TOTAL_COMMITTED — the committed amount and running committed total, which is the column most commonly searched by users reconciling fund commitments; DISBURSED_AMT, TOTAL_DISBURSED and the parallel TOTAL_OFFERED, TOTAL_ACCEPTED, TOTAL_DECLINED, TOTAL_REVOKED, TOTAL_CANCELLED columns provide the aggregate totals side by side with the current-period amounts.
- MIN_AWARD_AMT, MAX_AWARD_AMT, MAX_YEARLY_AMT, MAX_LIFE_AMT, MAX_LIFE_TERM — award ceiling and floor controls.
- OVER_AWARD_AMT, OVER_AWARD_PERCT — over-award tolerance amounts and percentages.
- MIN_NUM_DISB, MAX_NUM_DISB, FEE_TYPE — disbursement count limits and fee classification.
- Enumerated flags — DISCONTINUE_FUND, ENTITLEMENT, AUTO_PKG, SELF_HELP, ALLOW_MAN_PKG, UPDATE_NEED, DISBURSE_FUND, PRN_AWARD_LETTER, ORG_RECORD_REQ, DISB_RECORD_REQ, PROM_NOTE_REQ, FM_FC_METHD, ROUNDOFF_FACT, REPLACE_FC, ALLOW_OVERAWARD, PCKG_AWD_STAT, ENROLLMENT_STATUS, AWD_NOTICE_TXT, DISB_VERF_DA.
Common Use Cases and Queries
Typical usage includes fund setup validation, award-year reconciliation, and commitment-versus-disbursement analysis. Because the view already resolves lookup meanings, reports can be written without supplemental lookup joins.
To inspect committed amounts across funds:
SELECT fund_code,
ci_cal_type,
ci_sequence_number,
committed_amt,
total_committed,
disbursed_amt,
total_disbursed,
accepted_amt,
remaining_amt
FROM apps.igfbv_funds
WHERE committed_amt > 0
ORDER BY fund_code;
To compare committed against offered and accepted balances per fund-year, replace the WHERE clause with a calendar filter on CI_CAL_TYPE and CI_SEQUENCE_NUMBER. To review control settings, select MIN_AWARD_AMT, MAX_AWARD_AMT, OVER_AWARD_AMT, OVER_AWARD_PERCT, REPLACE_FC, and ALLOW_OVERAWARD alongside FUND_CODE. For integration or interface extracts, the full column list supports a direct SELECT * into staging tables, though explicit column selection is recommended to insulate against future release changes. As with any APPS-owned database object, the view should be referenced with the APPS schema prefix in custom SQL.
-
View: IGFBV_FUNDS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FUNDS, object_name:IGFBV_FUNDS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: APPS.IGFBV_FUNDS ,
-
View: IGFFV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FUNDS, object_name:IGFFV_FUNDS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: APPS.IGFFV_FUNDS ,
-
View: IGFFV_FUNDS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FUND_MAST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST, object_name:IGF_AW_FUND_MAST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_FUND_MAST ,
-
View: IGF_SP_FUND_MAST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores Details and the properties of all the funds , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FUND_MAST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SP_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SP_FUND_MAST_V, object_name:IGF_SP_FUND_MAST_V, status:VALID, product: IGF - Financial Aid , description: Stores Details and the properties of all the funds , implementation_dba_data: APPS.IGF_SP_FUND_MAST_V ,
-
APPS.IGF_AW_CANCEL_AWD SQL Statements
12.1.1
-
View: IGF_AW_FUND_MAST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores all the details and the properties for each fund , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST_V, object_name:IGF_AW_FUND_MAST_V, status:VALID, product: IGF - Financial Aid , description: Stores all the details and the properties for each fund , implementation_dba_data: APPS.IGF_AW_FUND_MAST_V ,
-
VIEW: APPS.IGFBV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FUNDS, object_name:IGFBV_FUNDS, status:VALID,
-
VIEW: APPS.IGFFV_FUNDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FUNDS, object_name:IGFFV_FUNDS, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST_V, object_name:IGF_AW_FUND_MAST_V, status:VALID,
-
VIEW: APPS.IGF_SP_FUND_MAST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SP_FUND_MAST_V, object_name:IGF_SP_FUND_MAST_V, status:VALID,
-
TABLE: IGF.IGF_AW_FUND_MAST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FUND_MAST_ALL, object_name:IGF_AW_FUND_MAST_ALL, status:VALID,
-
VIEW: APPS.IGF_AW_FUND_MAST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FUND_MAST, object_name:IGF_AW_FUND_MAST, status:VALID,
-
APPS.IGF_AW_FUND_MAST_PKG SQL Statements
12.1.1
-
APPS.IGF_AW_CANCEL_AWD dependencies on IGF_AW_FUND_MAST_ALL
12.1.1
-
APPS.IGF_AW_CANCEL_AWD dependencies on IGF_AW_FUND_MAST
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_FUND_MAST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_CANCEL_AWD
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,