Search Results igf_aw_awd_disb_v
Overview
The IGF_AW_AWD_DISB_V view is a reporting and integration object within the IGF – Financial Aid product of Oracle E-Business Suite (available in both 12.1.1 and 12.2.2). Owned by the APPS schema, it exposes line-level detail for every disbursement associated with an award. A disbursement represents the actual release (or intended release) of financial aid funds to a student, and this view consolidates the scheduling, monetary, status, and lifecycle attributes that surround that release.
The view does not simply project columns from a single base table. It joins the award disbursement record to the academic calendar instance that defines the disbursement period and to a separate calendar instance for the loan/late-disbursement period. It also dereferences several coded columns into human-readable meanings through calls to IGF_AW_GEN.LOOKUP_DESC. This design makes the view a self-contained presentation layer: consumers receive fully decoded status, transaction type, eligibility, hold-release, and fund-status values without needing to resolve lookup codes themselves.
Because it is a database view registered in ETRM with status VALID, it is safe to reference in custom reports, extracts, and interfaces across both the 12.1.1 and 12.2.2 application versions. It is particularly relevant to users who searched for the igf_sl_cl_disb_status lookup type, since that lookup is embedded directly in the view to translate the DISB_STATUS code into a meaningful description.
Underlying Base Objects
The documented ETRM metadata for this object records no explicitly listed base tables; the view definition is supplied through the reflected view text. From that text, the principal underlying objects are:
- IGF_AW_AWD_DISB_ALL (aliased ADISB) — the primary award disbursement table supplying identifiers, amounts, dates, statuses, and audit columns.
- IGF_CA_CAL_INSTANCES (aliased CI) — the calendar instance providing the disbursement period's
ALTERNATE_CODE,START_DT, andEND_DTvia theTP_CAL_TYPE/TP_SEQUENCE_NUMBERpairing. - IGF_CA_CAL_INSTANCES (aliased LD) — a second reference to the calendar instance for the late-disbursement period through
LD_CAL_TYPE/LD_SEQUENCE_NUMBER. - Lookup/reference descriptions —
RVSN.DESCPfor revision text andATD.DESCRIPTIONfor attendance type, plus repeatedIGF_AW_GEN.LOOKUP_DESCcalls that resolve coded columns against lookup types such asIGF_SL_CL_DISB_STATUS,FEE_CLASS,IGF_DB_TRANS_TYPE,IGF_DB_ELIG_STATUS,IGF_AP_YES_NO,IGF_SL_CL_HOLD_REL_IND_TF,IGF_SL_CL_DB_FUND_DISB_METH, andIGF_SL_CL_DB_FUND_STATUS.
The view therefore behaves as a denormalized read model over the disbursement transaction, its period calendars, and the IGF lookup framework.
Key Columns
- ROW_ID, AWARD_ID, DISB_NUM — primary identifiers for the disbursement row and its parent award.
- TP_CAL_TYPE, TP_SEQUENCE_NUMBER and the derived START_DT, END_DT, ALTERNATE_CODE — the calendar period to which the disbursement belongs.
- DISB_GROSS_AMT, FEE_1, FEE_2, DISB_NET_AMT, DISB_ACCEPTED_AMT, DISB_PAID_AMT, INT_REBATE_AMT — the monetary breakdown of the disbursement.
- DISB_DATE, DISB_EXP_DT, FUND_RELEASE_DATE, VERF_ENFR_DT — key scheduling and enforcement dates.
- DISB_STATUS and its decoded description via
IGF_SL_CL_DISB_STATUS, together with DISB_STATUS_DATE — the current state of the disbursement and when it was set. - ELIG_STATUS, FUND_STATUS and their decoded meanings — eligibility and fund-release state.
- AFFIRM_FLAG, HOLD_REL_IND, MANUAL_HOLD_IND, LATE_DISB_IND, FORCE_DISB, PREV_REPORTED_IND — flags governing holds, affirmations, and late or forced disbursements.
- FEE_CLASS and FEE_CLASS_MEANING, TRANS_TYPE, FUND_DIST_MTHD, ATTENDANCE_TYPE_CODE / DESCRIPTION — classification and distribution attributes.
- CHEQUE_NUMBER, SHOW_ON_BILL — payment and billing indicators.
Common Use Cases and Queries
Typical scenarios include award-disbursement tracking, funds-disbursed reporting, and feeds to downstream payment or student systems. A straightforward disbursement-status report joins the view to the award header:
SELECT d.award_id, d.disb_num, d.disb_status,
d.disb_net_amt, d.disb_date
FROM igf_aw_awd_disb_v d
WHERE d.disb_status = :p_status
ORDER BY d.award_id, d.disb_num;
To reconcile paid versus accepted funds within a period, filter on the calendar instance:
SELECT d.tp_cal_type, d.alternate_code,
SUM(d.disb_paid_amt), SUM(d.disb_accepted_amt)
FROM igf_aw_awd_disb_v d
WHERE d.tp_cal_type = :cal_type
GROUP BY d.tp_cal_type, d.alternate_code;
Because IGF_SL_CL_DISB_STATUS is already resolved in the view, reporting tools and extracts can display the status meaning directly without a separate lookup query, and modules such as billing or third-party interfaces can filter on SHOW_ON_BILL and FUND_STATUS to decide which disbursements to surface.
-
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_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores details of each disbursement , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_DB_AWD_DISB_V
12.1.1
-
VIEW: APPS.IGF_AW_AWD_RVSN_RSN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_RVSN_RSN, object_name:IGF_AW_AWD_RVSN_RSN, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_PACKNG_SUBFNS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_PACKNG_SUBFNS, status:VALID,
-
View: IGF_DB_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_V, object_name:IGF_DB_AWD_DISB_V, status:VALID, product: IGF - Financial Aid , description: Award disbursement details , implementation_dba_data: APPS.IGF_DB_AWD_DISB_V ,
-
View: IGF_DB_AWD_DISB_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Award disbursement details , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
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: APPS.IGS_EN_ATD_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ATD_TYPE, object_name:IGS_EN_ATD_TYPE, status:VALID,
-
PACKAGE: APPS.IGF_AW_GEN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AW_GEN, status:VALID,
-
APPS.IGF_AW_PACKNG_SUBFNS SQL Statements
12.1.1
-
VIEW: APPS.IGF_DB_AWD_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_V, object_name:IGF_DB_AWD_DISB_V, status:VALID,
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AW_AWD_DISB_V
12.1.1
-
VIEW: APPS.IGS_CA_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST, object_name:IGS_CA_INST, status:VALID,
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AW_AWARD_ALL
12.1.1
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AW_AWARD
12.1.1
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AW_PACKAGING
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_PACKNG_SUBFNS
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,