Search Results igf_db_cl_disb_resp_all
Overview
IGF_DB_CL_DISB_RESP_ALL is a Financial Aid (IGF) transactional table in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores all records received through the disbursement roster file — the inbound interface response that confirms, rejects, or adjusts loan and grant disbursements processed against a CommonLine (CL) disbursement batch. Each row represents a single disbursement response record tied to a parent batch, carrying borrower, school, lender, guarantor, and disbursement amount details along with error codes and status values returned by the processing agency.
Under a heuristic Data Vault classification mined from its foreign key structure, this table is satellite-leaning: it hangs off the batch parent through CBTH_ID and records descriptive, time-stamped attributes about each disbursement event rather than serving as a standalone hub or a pure many-to-many link. In practice, treat it as a child detail table subordinate to IGF_SL_CL_BATCH_ALL.
Key Information Stored
- CDBR_ID — surrogate primary key, enforced by unique index IGF_DB_CL_DISB_RESP_ALL_PK. This is the column users search on (the "cdbr_id" query).
- CBTH_ID — foreign key to IGF_SL_CL_BATCH_ALL; identifies the parent disbursement roster batch.
- RECORD_TYPE / STATUS — classify the response record and its processing state.
- LOAN_NUMBER, CL_SEQ_NUMBER, DISB_NUM — business identifiers for the loan and individual disbursement sequence.
- B_LAST_NAME, B_FIRST_NAME, B_SSN — borrower identity fields as reported in the roster.
- SCHOOL_ID, LENDER_ID, GUARANTOR_ID — participating party identifiers (plus DUNS variants).
- GROSS_DISB_AMT, NET_DISB_AMT, GUARANTEE_AMT, FEE_1, FEE_2, NET_CANCEL_AMT — monetary amounts for the disbursement, fees, and cancellations.
- ERR_CODE1 … ERR_CODE5 — rejection or exception codes returned by the agency.
- ORG_ID — Multi-Org operating unit context.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, REQUEST_ID — standard audit and concurrent request traceability columns.
The 77 documented columns provide far richer detail than the list above; the surrogate key CDBR_ID is the only documented unique business-key candidate, so joins and lookups should key on it rather than on natural columns such as LOAN_NUMBER.
Common Use Cases and Queries
Typical scenarios include reconciling inbound disbursement responses against outbound roster submissions, reporting disbursement rejects by error code, and auditing monetary totals per batch or per school.
SELECT r.CDBR_ID, r.LOAN_NUMBER, r.DISB_NUM,
r.GROSS_DISB_AMT, r.NET_DISB_AMT,
r.ERR_CODE1, r.ERR_CODE2, r.STATUS
FROM IGF.IGF_DB_CL_DISB_RESP_ALL r
WHERE r.CDBR_ID = :cdbr_id;
To aggregate results per parent batch:
SELECT b.CBTH_ID, COUNT(*) recs,
SUM(r.GROSS_DISB_AMT) gross_total,
SUM(r.NET_DISB_AMT) net_total
FROM IGF.IGF_DB_CL_DISB_RESP_ALL r,
IGF.IGF_SL_CL_BATCH_ALL b
WHERE r.CBTH_ID = b.CBTH_ID
GROUP BY b.CBTH_ID;
Rejection analysis groups rows with any non-null error code by ERR_CODE1 through ERR_CODE5 to identify systematic agency rejects for remediation.
Related Objects
- IGF_SL_CL_BATCH_ALL — parent batch table; join on
IGF_DB_CL_DISB_RESP_ALL.CBTH_ID = IGF_SL_CL_BATCH_ALL.CBTH_ID(the sole documented foreign key). - IGF_DB_CL_DISB_RESP_ALL_PK — the unique index backing the CDBR_ID primary key.
- CommonLine disbursement processing concurrent programs and roster loaders that populate this table from inbound files.
- Financial Aid reporting views that summarize disbursement responses by borrower, school, or lender for reconciliation.
Because the metadata documents only one foreign key, additional integration points should be validated against the live IGF schema before use.
-
Table: 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, product: IGF - Financial Aid , description: Stores all the records received through the disbursement roster file , implementation_dba_data: IGF.IGF_DB_CL_DISB_RESP_ALL ,
-
Table: IGF_DB_CL_DISB_RESP_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores all the records received through the disbursement roster file , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_DB_CL_DISB_RESP
12.1.1
-
SYNONYM: APPS.IGF_DB_CL_DISB_RESP_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_DB_CL_DISB_RESP_ALL, status:VALID,
-
Table: IGF_SL_CL_BATCH_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains the CommonLine batch file information for send file which was created by module or response files which were received and loaded into module , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_DB_CL_DISB_RESP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_DB_CL_DISB_RESP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_DB_CL_DISB_RESP_PKG, status:VALID,
-
Table: IGF_SL_CL_BATCH_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CL_BATCH_ALL, object_name:IGF_SL_CL_BATCH_ALL, status:VALID, product: IGF - Financial Aid , description: Maintains the CommonLine batch file information for send file which was created by module or response files which were received and loaded into module , implementation_dba_data: IGF.IGF_SL_CL_BATCH_ALL ,
-
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 ,
-
PACKAGE BODY: APPS.IGF_DB_CL_ROSTER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_DB_CL_ROSTER, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_CL_LI_IMP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_CL_LI_IMP_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: IGF_DB_CL_DISB_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGF_DB_CL_DISB_RESP_PKG
12.1.1
-
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,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGF_DB_CL_ROSTER dependencies on IGF_DB_CL_DISB_RESP_ALL
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on IGF_DB_CL_DISB_RESP_ALL
12.1.1
-
APPS.IGF_DB_CL_DISB_RESP_PKG dependencies on IGF_DB_CL_DISB_RESP_ALL
12.1.1
-
APPS.IGF_DB_CL_DISB_RESP_PKG dependencies on IGF_DB_CL_DISB_RESP_PKG
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG SQL Statements
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
PACKAGE BODY: APPS.IGF_SL_CL_LI_IMP_PKG
12.1.1
-
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 ,