Search Results igf_aw_db_cod_dtls
Overview
IGF_AW_DB_COD_DTLS is a Financial Aid (IGF) module table in Oracle E-Business Suite that stores disbursement-level details for Title IV federal student aid processed through the Common Origination and Disbursement (COD) system. It captures both Direct Loan disbursements and Pell Grant disbursements in the form in which they are transmitted to, and acknowledged by, COD. In practice, this table functions as the disbursement staging and reconciliation layer between the internal award and disbursement records held in Oracle Student Financial Aid and the external COD system that governs federal fund delivery.
Each row represents a single disbursement event against a specific award, identified by award, disbursement number, and disbursement sequence number. Because it also carries COD-facing identifiers and confirmation flags, the table supports both outbound reporting (origination of disbursement records to COD) and inbound processing (acceptance, adjustment, and reconciliation of COD responses).
Under a heuristic Data Vault classification, this object is satellite-leaning. Its composite primary key is inherited from the parent award, and it contributes descriptive, time-stamped attributes rather than defining new business entities or relationships. This suggests it should be modeled as a satellite attached to the award hub, with AWARD_ID as the linking key.
Key Information Stored
The primary key IGF_AW_DB_COD_DTLS_PK is defined over (AWARD_ID, DISB_NUM, DISB_SEQ_NUM), combining a foreign key to the parent award with the disbursement ordinal and sequence number. There is no separate surrogate key column in the documented metadata; the business identity and the relational identity coincide.
- AWARD_ID — foreign key to IGF_AW_AWARD_ALL, anchoring each row to its parent award.
- DISB_NUM and DISB_SEQ_NUM — the disbursement number and sequence, distinguishing multiple disbursements and their revisions within an award.
- DOCUMENT_ID_TXT — the COD document identifier used for submission and reconciliation.
- DISB_ACCEPTED_AMT — the amount accepted by COD for the disbursement.
- DISB_NET_AMT and ORIG_FEE_AMT — net disbursement amount and the origination fee applied, respectively.
- INTEREST_REBATE_AMT — rebate credited on Direct Loan disbursements.
- DISB_DATE and DISB_REL_FLAG — the disbursement date and a release indicator.
- FIRST_DISB_FLAG — indicates whether the row is the first disbursement of the award.
- DISB_CONF_FLAG — COD confirmation status for the disbursement.
- REP_ENTITY_ID_TXT and ATD_ENTITY_ID_TXT — reporting and additional entity identifiers required by COD.
- PROGRAM_APPLICATION_ID, PROGRAM_ID, and REQUEST_ID — concurrent program context identifying the process that created or updated the record.
Standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and PROGRAM_UPDATE_DATE are also present for traceability.
Common Use Cases and Queries
Typical usage centers on COD disbursement reconciliation: verifying that amounts reported to COD match internally accepted amounts, and identifying disbursements that remain unconfirmed.
- Disbursement detail for an award:
SELECT disb_num, disb_seq_num, disb_date, disb_net_amt, disb_accepted_amt, disb_conf_flag FROM igf.igf_aw_db_cod_dtls WHERE award_id = :award_id ORDER BY disb_num, disb_seq_num; - Unconfirmed disbursements requiring follow-up: filter on rows where DISB_CONF_FLAG is null or does not indicate acceptance.
- Fee and rebate analysis: aggregate ORIG_FEE_AMT and INTEREST_REBATE_AMT by award to reconcile net versus gross disbursement totals.
- First-disbursement reporting: use FIRST_DISB_FLAG to isolate the initial disbursement per award.
- Auditing batch activity: group by REQUEST_ID or PROGRAM_ID with CREATION_DATE to trace which concurrent process produced each record.
Related Objects
- IGF_AW_AWARD_ALL — parent award table; joined on IGF_AW_DB_COD_DTLS.AWARD_ID = IGF_AW_AWARD_ALL.AWARD_ID, the only documented foreign key relationship.
- IGF_AW_DISB_ALL — internal award disbursement records, commonly joined to compare internal versus COD-facing amounts.
- IGF_AW_AWARD_DISB — award-to-disbursement association used to trace disbursement records across the award lifecycle.
- IGF_AP_COD_* / COD interface tables — staging objects used to transmit disbursement data to COD and receive responses.
- Concurrent program definitions referenced by PROGRAM_APPLICATION_ID and PROGRAM_ID for batch identification.
-
Table: 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, product: IGF - Financial Aid , description: Table storing disbursement details for the Direct Loan as well as Pell which are sent to COD , implementation_dba_data: IGF.IGF_AW_DB_COD_DTLS ,
-
Table: IGF_AW_DB_COD_DTLS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Table storing disbursement details for the Direct Loan as well as Pell which are sent to COD , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AW_DB_COD_DTLS_V
12.1.1
-
VIEW: APPS.IGF_SL_DB_COD_REP_V
12.1.1
-
APPS.IGF_AW_DB_COD_DTLS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGF_AW_DB_COD_DTLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_AW_DB_COD_DTLS, status:VALID,
-
VIEW: APPS.IGF_GR_REP_SMRY_V
12.1.1
-
VIEW: APPS.IGF_SL_REP_SMRY_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 ,
-
PACKAGE BODY: APPS.IGF_AW_DB_COD_DTLS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_DB_COD_DTLS_PKG, status:VALID,
-
View: IGF_GR_REP_SMRY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the financial summary tag in the outbound XML for Pell , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AW_DB_COD_DTLS_PKG
12.1.1
-
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 ,
-
Table: IGF_AW_AWARD_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_AWARD_ALL, object_name:IGF_AW_AWARD_ALL, status:VALID, product: IGF - Financial Aid , description: Stores all details of awards given to students , implementation_dba_data: IGF.IGF_AW_AWARD_ALL ,
-
Table: IGF_AW_AWARD_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores all details of awards given to students , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_SMRY_V, object_name:IGF_GR_REP_SMRY_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the financial summary tag in the outbound XML for Pell , implementation_dba_data: APPS.IGF_GR_REP_SMRY_V ,
-
View: IGF_SL_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_SMRY_V, object_name:IGF_SL_REP_SMRY_V, status:VALID, product: IGF - Financial Aid , description: View used for reproting the financial summary tag in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_REP_SMRY_V ,
-
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_SL_REP_SMRY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reproting the financial summary tag in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AW_LI_IMPORT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_LI_IMPORT, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_DL_GEN_XML
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_GEN_XML, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_GEN_XML
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_GEN_XML, status:VALID,
-
VIEW: APPS.IGF_GR_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_SMRY_V, object_name:IGF_GR_REP_SMRY_V, status:VALID,
-
VIEW: APPS.IGF_SL_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_SMRY_V, object_name:IGF_SL_REP_SMRY_V, status:VALID,
-
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,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
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,
-
APPS.IGF_GR_GEN_XML SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGF_SL_DL_GEN_XML dependencies on IGF_AW_DB_COD_DTLS
12.1.1
-
APPS.IGF_GR_GEN_XML dependencies on IGF_AW_DB_COD_DTLS
12.1.1
-
APPS.IGF_AW_LI_IMPORT dependencies on IGF_AW_DB_COD_DTLS
12.1.1
-
APPS.IGF_AW_DB_COD_DTLS_PKG dependencies on IGF_AW_DB_COD_DTLS
12.1.1
-
APPS.IGF_SL_DL_GEN_XML SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_GEN_XML
12.1.1
-
APPS.IGF_GR_GEN_XML dependencies on IGF_GR_COD_DTLS
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_AW_DB_CHG_DTLS
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_UPLOAD_XML
12.1.1
-
APPS.IGF_AW_LI_IMPORT SQL Statements
12.1.1
-
APPS.IGF_GR_GEN_XML dependencies on STANDARD
12.1.1
-
APPS.IGF_AW_DB_COD_DTLS_PKG dependencies on IGF_AW_DB_COD_DTLS_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_GR_DB_RESP_DTLS
12.1.1
-
APPS.IGF_AW_LI_IMPORT dependencies on IGF_AW_AWARD_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_GEN_XML
12.1.1