Search Results disb_date
Overview
IGF_AW_DB_COD_DTLS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered under the IGF (Financial Aid) product family. It exposes disbursement-level detail for COD (Common Origination and Disbursement) records processed through the financial aid award cycle. In practice, the view presents a denormalized, read-friendly projection of the disbursement COD detail table, allowing reporting tools, concurrent programs, and integration extracts to retrieve key COD disbursement attributes without navigating the full set of administrative and WHO columns maintained on the underlying entity.
The object is documented as VALID in both ETRM 12.1.1 and 12.2.2 references, meaning its definition is stable across those releases. It is a simple SELECT-from-single-table view with no aggregation, joins, or filtering logic, which makes it safe for direct query use in custom reports and for external systems that need to consume COD disbursement data in a flat structure. Because the view includes ROWID as its first column, it preserves row identification capability for the base table, though consumers should generally key on AWARD_ID, DISB_NUM, and DISB_SEQ_NUM rather than ROWID.
Underlying Base Objects
The view is defined over a single base object: IGF_AW_DB_COD_DTLS, also owned by APPS. The ETRM metadata does not document any additional referenced base objects, and the view text confirms that all columns are drawn from that one disbursement COD detail table. There are no joins to auxiliary financial aid tables, no lookup resolutions, and no outer joins hiding optional relationships.
Because the definition is a straight projection, row counts and row keys in IGF_AW_DB_COD_DTLS_V match the base table exactly. Inserts, updates, and deletions are performed against IGF_AW_DB_COD_DTLS; the view is a read vehicle and should not be treated as an integrity boundary or an alternative DML target. Any performance characteristics observed when querying the view — including index usage and predicate pushdown — are inherited directly from the base table and the indexes defined on it.
Key Columns
- AWARD_ID — Foreign key to the financial aid award record; the primary anchor for correlating disbursements with awards and students.
- DOCUMENT_ID_TXT — The COD document identifier, stored as text, used to reference the disbursement record in COD external communications.
- DISB_NUM and DISB_SEQ_NUM — The disbursement number and its sequence within the award, together forming the natural key for a specific disbursement instance.
- DISB_ACCEPTED_AMT — The disbursement amount accepted by COD.
- ORIG_FEE_AMT — Origination fee applied to the disbursement.
- DISB_NET_AMT — The net disbursement amount, net of fees such as the origination fee. This column is the object of the user's search and is the most commonly referenced monetary figure for reconciliation, cash posting, and COD response processing.
- DISB_DATE — Date the disbursement is scheduled or recorded.
- DISB_REL_FLAG, FIRST_DISB_FLAG, DISB_CONF_FLAG — Status indicators for release, first-disbursement designation, and COD confirmation.
- INTEREST_REBATE_AMT — Interest rebate amount associated with the disbursement.
- PYMNT_PER_START_DATE — Start of the payment period covered by the disbursement.
- REP_ENTITY_ID_TXT and ATD_ENTITY_ID_TXT — Reporting entity and additional entity identifiers used in COD transmission.
- NOTE_MESSAGE — Free-text note attached to the disbursement record.
- Standard WHO and concurrent columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, REQUEST_ID — supporting audit and concurrent request traceability.
Common Use Cases and Queries
Typical uses include COD reconciliation reporting, net disbursement analysis, and extracts feeding downstream accounting or external COD interfaces. A representative query aggregating net disbursement by award is shown below.
SELECT award_id,
SUM(disb_net_amt) total_net_disb
FROM igf_aw_db_cod_dtls_v
GROUP BY award_id;
To isolate confirmed disbursements within a date range:
SELECT document_id_txt, disb_num, disb_seq_num, disb_net_amt, disb_date
FROM igf_aw_db_cod_dtls_v
WHERE disb_conf_flag = 'Y'
AND disb_date BETWEEN :start_date AND :end_date;
To compare accepted versus net amounts and surface fee impact:
SELECT disb_num, disb_seq_num, disb_accepted_amt, orig_fee_amt, disb_net_amt,
disb_accepted_amt - disb_net_amt fee_impact
FROM igf_aw_db_cod_dtls_v
WHERE award_id = :award_id;
Because the view is a direct projection, filtering by AWARD_ID is strongly recommended and benefits from the indexes on the base table. Reporting joins to award or person tables should be performed against AWARD_ID after extracting from this view.
-
View: IGF_AW_DB_COD_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DB_COD_DTLS_V, object_name:IGF_AW_DB_COD_DTLS_V, status:VALID, product: IGF - Financial Aid , description: View for disbursement COD details. , implementation_dba_data: APPS.IGF_AW_DB_COD_DTLS_V ,
-
View: IGF_SL_DB_COD_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the disbursement tags in the outbound XML file. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_DB_COD_DTLS_V
12.1.1
-
View: IGF_SL_DB_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DB_COD_REP_V, object_name:IGF_SL_DB_COD_REP_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the disbursement tags in the outbound XML file. , implementation_dba_data: APPS.IGF_SL_DB_COD_REP_V ,
-
View: IGF_AW_DB_COD_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View for disbursement COD details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFBV_FFELP_DISB_RESP_DETAILS
12.1.1
-
View: IGF_SL_CL_RESP_R8
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_DB_COD_REP_V
12.1.1
-
VIEW: APPS.IGFFV_FFELP_DISB_RESP_DETAILS
12.1.1
-
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: APPS.IGF_SL_AWD_DISB_LOC
12.1.1
-
VIEW: APPS.IGF_AW_ADISB_COA_MATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_ADISB_COA_MATCH_V, object_name:IGF_AW_ADISB_COA_MATCH_V, status:VALID,
-
View: IGF_SL_CL_RESP_R8
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R8, object_name:IGF_SL_CL_RESP_R8, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_RESP_R8 ,
-
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_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: 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: 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: IGF_AW_AWD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_CL_RESP_R8
12.1.1
-
VIEW: APPS.IGS_FI_PLN_CREDITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PLN_CREDITS_V, object_name:IGS_FI_PLN_CREDITS_V, 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 ,
-
View: IGF_AW_ADISB_COA_MATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_ADISB_COA_MATCH_V, object_name:IGF_AW_ADISB_COA_MATCH_V, status:VALID, product: IGF - Financial Aid , description: Retrieves the awards that a student has to the extent of his common Cost of Attendance terms. , implementation_dba_data: APPS.IGF_AW_ADISB_COA_MATCH_V ,
-
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_DL_DISB_DTL_V
12.1.1
-
VIEW: APPS.IGF_SL_DB_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DB_COD_REP_V, object_name:IGF_SL_DB_COD_REP_V, status:VALID,
-
View: IGFBV_FFELP_DISB_RESP_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FFELP_DISB_RESP_DETAILS, object_name:IGFBV_FFELP_DISB_RESP_DETAILS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds FFELP Disbursement Response Details , implementation_dba_data: APPS.IGFBV_FFELP_DISB_RESP_DETAILS ,
-
VIEW: APPS.IGF_SL_CL_RESP_R8
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R8, object_name:IGF_SL_CL_RESP_R8, 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_DB_AWD_DISB_V
12.1.1
-
VIEW: APPS.IGF_AW_AWD_DISB
12.1.1
-
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,
-
TABLE: IGF.IGF_SL_CL_RESP_R8_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CL_RESP_R8_ALL, object_name:IGF_SL_CL_RESP_R8_ALL, status:VALID,
-
View: IGFBV_FFELP_DISB_RESP_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds FFELP Disbursement Response Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_DB_COD_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DB_COD_DTLS_V, object_name:IGF_AW_DB_COD_DTLS_V, status:VALID,
-
Lookup Type: IGF_SL_CL_CHANGE_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: CommonLine Change Fields , description: CommonLine Change Fields ,
-
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_AW_ADISB_COA_MATCH_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the awards that a student has to the extent of his common Cost of Attendance terms. , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: IGF_SL_CL_CHANGE_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: CommonLine Change Fields , description: CommonLine Change Fields ,
-
View: IGF_AW_DB_CHG_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DB_CHG_DTLS_V, object_name:IGF_AW_DB_CHG_DTLS_V, status:VALID, product: IGF - Financial Aid , description: View for disbursement change details. , implementation_dba_data: APPS.IGF_AW_DB_CHG_DTLS_V ,
-
View: IGF_AW_DB_CHG_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View for disbursement change details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_DB_CHG_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_DB_CHG_DTLS_V, object_name:IGF_AW_DB_CHG_DTLS_V, status:VALID,
-
TABLE: IGF.IGF_GR_DB_RESP_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_DB_RESP_DTLS, object_name:IGF_GR_DB_RESP_DTLS, status:VALID,
-
View: IGFFV_FFELP_DISB_RESP_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FFELP_DISB_RESP_DETAILS, object_name:IGFFV_FFELP_DISB_RESP_DETAILS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds FFELP Disbursement Response Details , implementation_dba_data: APPS.IGFFV_FFELP_DISB_RESP_DETAILS ,
-
View: IGFFV_FFELP_DISB_RESP_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds FFELP Disbursement Response Details , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AW_DB_COD_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_DB_COD_DTLS, object_name:IGF_AW_DB_COD_DTLS, status:VALID,
-
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 ,
-
TABLE: IGF.IGF_AW_LI_DACT_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_LI_DACT_INTS, object_name:IGF_AW_LI_DACT_INTS, 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 ,