Search Results committed_amount
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 ,