Search Results spnsr_charge_id
Overview
APPS.IGF_DB_AWD_DISB_DTL is a multi-org view in the Oracle E-Business Suite Financial Aid (IGF) module, exposing award disbursement detail records used by the Student Financial Aid and Grants Management processes. In EBS 12.1.1 and 12.2.2, this view is registered with FND Design Data as IGF.IGF_DB_AWD_DISB_DTL and is owned by the APPS schema with a VALID status. The view is defined as a multi-org view, meaning it automatically restricts rows to the operating unit currently set in the user's session and ignores disbursement data belonging to other operating units. This behavior is enforced through the standard Oracle multi-org security mechanism, which typically resolves through the ORG_ID column of the underlying base table rather than exposing ORG_ID in the view's select list.
The view presents a consolidated picture of award-level disbursement activity including gross amounts, fees, net amounts, adjustments, disbursement dates, and status information related to the Student Finance (SF) interface. It is used in financial aid reporting, disbursement reconciliation, and downstream integration with student accounts and third-party servicers.
Underlying Base Objects
The ETRM documentation excerpt for this object does not explicitly list referenced base objects, and the documented base objects section returns none for the 12.2.2 metadata. Functionally, IGF_DB_AWD_DISB_DTL is a view over the IGF award disbursement detail entity, which in the IGF schema is the IGF_DB_AWD_DISB_DTL table (or its equivalent base table storing award disbursement rows keyed by AWARD_ID, DISB_NUM, and DISB_SEQ_NUM). The view applies the multi-org predicate on the base table's ORG_ID column. Because the view is owned by APPS with FND Design Data registered, it is intended to be queried directly by applications and reports rather than through the base table, ensuring operating unit security is applied consistently.
Key Columns
- ROW_ID – ROWID of the underlying base row, useful for direct updates or joins.
- AWARD_ID – Identifier linking the disbursement to the parent award record.
- DISB_NUM, DISB_SEQ_NUM – Disbursement number and sequence, forming the natural key within an award.
- DISB_GROSS_AMT, FEE_1, FEE_2, DISB_NET_AMT, DISB_ADJ_AMT – Gross disbursement amount, origination fees, net amount, and adjustment amount.
- DISB_DATE, FEE_PAID_1, FEE_PAID_2 – Disbursement date and fee payment indicators.
- DISB_ACTIVITY – Current activity or processing state of the disbursement.
- SF_STATUS, SF_STATUS_DATE, SF_INVOICE_NUM – Student Finance status, status date, and invoice reference used for downstream SF integration.
- SPNSR_CREDIT_ID, SPNSR_CHARGE_ID, SF_CREDIT_ID – Sponsor credit, sponsor charge, and SF credit identifiers. The SPNSR_CHARGE_ID column is the sponsor charge linkage used to reconcile disbursements against sponsor billing and charge records.
- ERROR_DESC – Error text captured during processing or interface runs.
- NOTIFICATION_DATE, INTEREST_REBATE_AMT, LD_CAL_TYPE, LD_SEQUENCE_NUMBER – Correspondence process date for the Loan Disbursement Letter, interest rebate amount, and load calendar type/sequence.
- WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and concurrent program columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE).
Several columns are retained for backward compatibility only and are documented as no longer used: DISB_BATCH_ID, DISB_ACK_DATE, BOOKING_BATCH_ID, BOOKED_DATE, DISB_STATUS, and DISB_STATUS_DATE.
Common Use Cases and Queries
This view is commonly used to report award disbursement activity by operating unit, to reconcile sponsor charge and credit amounts, and to trace Student Finance interface outcomes. Because the user searched for SPNSR_CHARGE_ID, a typical query retrieves disbursements tied to a specific sponsor charge:
SELECT award_id, disb_num, disb_seq_num, disb_gross_amt, disb_net_amt, disb_date, sf_status, sf_invoice_num, spnsr_charge_id, spnsr_credit_id FROM apps.igf_db_awd_disb_dtl WHERE spnsr_charge_id = :p_charge_id;
A second common pattern lists disbursements for an award within a date range and evaluates fee and net amounts:
SELECT disb_num, disb_seq_num, disb_date, disb_gross_amt, fee_1, fee_2, disb_net_amt, disb_activity FROM apps.igf_db_awd_disb_dtl WHERE award_id = :p_award_id AND disb_date BETWEEN :p_from AND :p_to ORDER BY disb_num, disb_seq_num;
Because the view enforces multi-org security, callers must initialize the operating unit (via FND_CLIENT_INFO or an equivalent session setup) before querying, so results reflect only the current operating unit. Reporting on cross-operating-unit data requires querying the base table or using a multi-org aware reporting tool configured accordingly.
-
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
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: 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 ,
-
APPS.IGF_DB_AWD_DISB_DTL_PKG SQL Statements
12.1.1
-
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,
-
PACKAGE BODY: APPS.IGF_DB_AWD_DISB_DTL_PKG
12.1.1
-
APPS.IGF_DB_AWD_DISB_DTL_PKG dependencies on IGF_DB_AWD_DISB_DTL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,