Search Results fee_1
Overview
The view IGF_SL_AWD_DISB_LOC belongs to the IGF – Financial Aid product family within Oracle E-Business Suite. In the ETRM metadata, IGF is flagged as Obsolete, and the object itself is documented as not implemented in this database. This designation is significant: the view exists in the historical data model and appears in reference documentation, but it is not deployed as a runtime database object in the environments covered by the ETRM repository. Consequently, the view should be understood as a legacy artifact rather than an active reporting or integration surface.
Conceptually, the view exposes award disbursement records at the location level. It is the location-aware counterpart to the base disbursement table, presenting one row per disbursement (identified by award and disbursement number) with the associated amounts, fees, dates, and audit columns. Its likely historical role was to support institution- and location-scoped querying of student financial aid disbursements — the kind of reporting consumed by financial aid administrators and downstream integrations. The _LOC suffix and the presence of ORG_ID indicate the view was intended to filter records based on the operating unit (multi-org) context in effect for the session.
Underlying Base Objects
The view is defined over a single base object: IGF_SL_AWD_DISB_LOC_ALL. The documented view text selects explicitly named columns from this table and does not introduce any joins, unions, or derived subqueries. The projection is therefore a straight column mapping, with one computed exception: ROW_ID is populated from AWDL.ROWID, exposing the physical row identifier of the underlying record.
The only transformation applied is a multi-org security predicate in the WHERE clause. The view compares the ORG_ID column to the operating unit value derived from USERENV('CLIENT_INFO'). The expression extracts the first ten characters of the client information string, converting it to a number, and handles the case where the string begins with a space by returning NULL. Both sides of the comparison are wrapped in NVL(..., -99), so records lacking an operating unit (NULL) are matched against a session context that also lacks one. This is a standard Oracle multi-org pattern and confirms that the view was designed to enforce operating unit isolation for location-based disbursement data.
Key Columns
ROW_ID— the physical row identifier of the base table record.AWARD_ID— foreign key to the award to which the disbursement belongs.DISB_NUM— the disbursement sequence number within the award.DISB_GROSS_AMT— the gross disbursement amount before fees. This is the column most commonly searched for and the primary monetary figure exposed by the view.FEE_1,FEE_2— the fee amounts applied to the disbursement.DISB_NET_AMT— the net disbursement amount after fees are deducted.DISB_DATE— the date the disbursement was made.HOLD_REL_IND— indicator of whether a hold on the disbursement has been released.FEE_PAID_1,FEE_PAID_2— the portions of the respective fees actually paid.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard WHO audit columns.REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE— concurrent program and request tracking columns populated during batch processing.ORG_ID— the operating unit identifier used by the multi-org security predicate.
Common Use Cases and Queries
Because the object is documented as obsolete and not implemented, any query should be treated as reference or migration-oriented rather than as production reporting code. A typical reconstruction of a gross-versus-net disbursement report would resemble the following, executed within an operating unit session so that the multi-org predicate resolves correctly:
- Listing disbursements for an award:
SELECT disb_num, disb_gross_amt, fee_1, fee_2, disb_net_amt, disb_date FROM igf_sl_awd_disb_loc WHERE award_id = :award_id ORDER BY disb_num; - Summarizing gross disbursements by award:
SELECT award_id, SUM(disb_gross_amt) gross_total, SUM(disb_net_amt) net_total FROM igf_sl_awd_disb_loc GROUP BY award_id; - Identifying unreleased holds:
SELECT award_id, disb_num, disb_gross_amt, hold_rel_ind FROM igf_sl_awd_disb_loc WHERE hold_rel_ind = 'N';
In migration or recovery scenarios, developers frequently query the base table IGF_SL_AWD_DISB_LOC_ALL directly, since the view may not exist in a given environment. In all cases, verifying object existence and consulting the appropriate ETRM release documentation before relying on this view is recommended.
-
View: IGF_SL_AWD_DISB_LOC
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_AWD_DISB_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_AWD_DISB_LOC, object_name:IGF_SL_AWD_DISB_LOC, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_AWD_DISB_LOC ,
-
View: IGF_DB_DL_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_DL_DISB_DTL_V, object_name:IGF_DB_DL_DISB_DTL_V, status:VALID, product: IGF - Financial Aid , description: Shows Direct Loan disbursement details for each of disbursements for loan , implementation_dba_data: APPS.IGF_DB_DL_DISB_DTL_V ,
-
View: IGF_DB_DL_DISB_DTL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows Direct Loan disbursement details for each of disbursements for loan , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_AWD_DISB_LOC
12.1.1
-
VIEW: APPS.IGF_SL_AWD_DISB_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_AWD_DISB_LOC, object_name:IGF_SL_AWD_DISB_LOC, status:VALID,
-
VIEW: APPS.IGF_DB_DL_DISB_DTL_V
12.1.1
-
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_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 ,
-
View: IGF_AW_AWD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_AWD_DISB
12.1.1
-
VIEW: APPS.IGF_DB_AWD_DISB_V
12.1.1
-
VIEW: APPS.IGF_DB_DL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_DL_DISB_RESP, object_name:IGF_DB_DL_DISB_RESP, status:VALID,
-
TABLE: IGF.IGF_SL_AWD_DISB_LOC_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_AWD_DISB_LOC_ALL, object_name:IGF_SL_AWD_DISB_LOC_ALL, 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_DB_AWD_DISB_DTL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL, object_name:IGF_DB_AWD_DISB_DTL, status:VALID,
-
VIEW: APPS.IGF_DB_AWD_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL_V, object_name:IGF_DB_AWD_DISB_DTL_V, status:VALID,
-
View: IGF_DB_AWD_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL_V, object_name:IGF_DB_AWD_DISB_DTL_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_AWD_DISB_DTL_V ,
-
View: IGF_DB_AWD_DISB_DTL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_DB_CL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP, object_name:IGF_DB_CL_DISB_RESP, status:VALID,
-
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,
-
View: IGF_DB_DL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_DL_DISB_RESP, object_name:IGF_DB_DL_DISB_RESP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_DL_DISB_RESP ,
-
View: IGF_DB_AWD_DISB_DTL
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_DB_AWD_DISB_DTL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL, object_name:IGF_DB_AWD_DISB_DTL, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_AWD_DISB_DTL ,
-
View: IGF_DB_DL_DISB_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_DB_DL_DISB_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_DB_DL_DISB_RESP_ALL, object_name:IGF_DB_DL_DISB_RESP_ALL, 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: 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_DB_DL_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_DL_DISB_DTL_V, object_name:IGF_DB_DL_DISB_DTL_V, status:VALID,
-
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
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_AWD_DISB, object_name:IGF_AW_AWD_DISB, status:VALID,
-
TABLE: IGF.IGF_DB_AWD_DISB_DTL_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL_ALL, object_name:IGF_DB_AWD_DISB_DTL_ALL, status:VALID,
-
View: IGF_DB_CL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP, object_name:IGF_DB_CL_DISB_RESP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_CL_DISB_RESP ,
-
APPS.IGF_SL_AWD_DISB_LOC_PKG SQL Statements
12.1.1
-
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_DB_CL_DISB_RESP
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 ,
-
APPS.IGF_DB_DL_DISB_RESP_PKG 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_DB_AWD_DISB_DTL_PKG SQL Statements
12.1.1
-
TABLE: IGF.IGF_DB_CL_DISB_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP_ALL, object_name:IGF_DB_CL_DISB_RESP_ALL, status:VALID,
-
APPS.IGF_DB_CL_DISB_RESP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGFBV_AWARD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_AWARD_DISBURSEMENTS, object_name:IGFBV_AWARD_DISBURSEMENTS, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_AWD_DISB_LOC_PKG
12.1.1
-
VIEW: APPS.IGFFV_AWARD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_AWARD_DISBURSEMENTS, object_name:IGFFV_AWARD_DISBURSEMENTS, status:VALID,
-
PACKAGE BODY: APPS.IGF_DB_DL_DISB_RESP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_DB_AWD_DISB_DTL_PKG
12.1.1
-
APPS.IGF_AW_AWD_DISB_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_DL_VALIDATION SQL Statements
12.1.1