Search Results igf_sl_cl_batch_all
Overview
IGF_SL_CL_BATCH_ALL is a table owned by the IGF schema within the Oracle E-Business Suite Financial Aid (IGF) module. It maintains the CommonLine batch file information for send files created by the module, as well as response files received and loaded into the module. CommonLine is the standardized electronic data exchange protocol used by the U.S. federal student loan community, and this table serves as the header-level registry that ties together the demographic and disbursement records exchanged with lenders, guarantors, and servicers.
From a Data Vault modeling perspective, the heuristic classification of this table is hub-leaning. That is a modeling suggestion: CBTH_ID behaves as a durable, unique business key that anchors the batch identity, while the surrounding descriptive and monetary columns resemble satellite attributes. Downstream tables in the IGF schema reference the hub through CBTH_ID as a foreign key, reinforcing the hub interpretation rather than a pure transactional link.
Key Information Stored
The table contains 29 documented columns. The most significant are described below.
- CBTH_ID — The surrogate primary key (IGF_SL_CL_BATCH_ALL_PK) and the column referenced by downstream tables. It also appears as a unique business-key candidate via index IGF_SL_CL_BATCH_ALL_U1, meaning it is both the technical and business identifier for a batch.
- BATCH_ID — The operational batch identifier used within the send or response cycle.
- FILE_CREATION_DATE and FILE_TRANS_DATE — The date the batch file was produced and the date it was transmitted or received.
- FILE_IDENT_CODE — The file identification code assigned by the CommonLine process.
- SOURCE_ID, SOUCE_NON_ED_BRC_ID, RECIPIENT_ID, RECIP_NON_ED_BRC_ID — The sending and receiving parties, including their non-ED branch identifiers (BRC IDs).
- SEND_RESP — Flags whether the batch is a send file or a response file.
- RECORD_COUNT_NUM — The number of records contained in the batch.
- TOTAL_NET_DISB_AMT, TOTAL_NET_EFT_AMT, TOTAL_NET_NON_EFT_AMT, TOTAL_REISSUE_AMT, TOTAL_CANCEL_AMT, TOTAL_DEFICIT_AMT, TOTAL_NET_CANCEL_AMT, TOTAL_NET_OUT_CANCEL_AMT — Monetary control totals used for reconciliation of disbursements, EFT and non-EFT amounts, reissues, cancellations, and deficits against downstream detail records.
Standard audit and ownership columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, and ORG_ID — are also present and are commonly used for multi-org filtering and concurrency tracking.
Common Use Cases and Queries
Typical scenarios include batch reconciliation, transmission auditing, and response-file processing. A common control-total reconciliation query compares the batch header sum against detail records:
SELECT b.cbth_id, b.batch_id, b.send_resp,
b.record_count_num, b.total_net_disb_amt
FROM igf.igf_sl_cl_batch_all b
WHERE b.file_trans_date BETWEEN :p_from AND :p_to
AND b.org_id = :p_org;
To locate batches that have generated a response, join to IGF_SL_CL_RESP_R1_ALL on CBTH_ID. For disbursement response analysis, join to IGF_DB_CL_DISB_RESP_ALL on CBTH_ID. Reporting use cases include daily CommonLine transmission logs, disbursement control-total verification, and month-end reconciliation of net disbursement and cancellation amounts.
Related Objects
The following tables depend on IGF_SL_CL_BATCH_ALL through documented foreign keys:
- IGF_DB_CL_DISB_RESP_ALL — references IGF_SL_CL_BATCH_ALL via CBTH_ID; holds disbursement response detail.
- IGF_SL_CL_RESP_R1_ALL — references IGF_SL_CL_BATCH_ALL via CBTH_ID; holds CommonLine response R1 records.
- IGF_SL_CL_BATCH_ALL_PK — the primary key constraint/index on CBTH_ID.
- IGF_SL_CL_BATCH_ALL_U1 — the unique index on CBTH_ID supporting business-key interpretation.
These relationships support tracing a batch header to every disbursement and response record exchanged with external CommonLine partners.
-
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 ,
-
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: APPS.IGF_SL_CL_BATCH
12.1.1
-
SYNONYM: APPS.IGF_SL_CL_BATCH_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_SL_CL_BATCH_ALL, status:VALID,
-
APPS.IGF_SL_CL_BATCH_PKG SQL Statements
12.1.1
-
Table: IGF_SL_CL_RESP_R1_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains the CommonLine response from external processor , implementation_dba_data: Not implemented in this database ,
-
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.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,
-
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 ,
-
Table: IGF_SL_CL_RESP_R1_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CL_RESP_R1_ALL, object_name:IGF_SL_CL_RESP_R1_ALL, status:VALID, product: IGF - Financial Aid , description: Maintains the CommonLine response from external processor , implementation_dba_data: IGF.IGF_SL_CL_RESP_R1_ALL ,
-
PACKAGE BODY: APPS.IGF_SL_CL_BATCH_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_CL_BATCH_PKG, status:VALID,
-
View: IGF_SL_CL_BATCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_BATCH, object_name:IGF_SL_CL_BATCH, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_BATCH ,
-
PACKAGE BODY: APPS.IGF_SL_CL_BATCH_PKG
12.1.1
-
View: IGF_SL_CL_BATCH
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_DB_CL_ROSTER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_DB_CL_ROSTER, status:VALID,
-
VIEW: APPS.IGF_SL_CL_BATCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_BATCH, object_name:IGF_SL_CL_BATCH, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
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,
-
VIEW: APPS.IGFFV_FFELP_ORIG_RESPONSES
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_LI_IMP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_LI_IMP_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_CL_ORIG_ACK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_CL_ORIG_ACK, 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
-
View: IGFFV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FFELP_ORIG_RESPONSES, object_name:IGFFV_FFELP_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds FFELP Origination Response Details , implementation_dba_data: APPS.IGFFV_FFELP_ORIG_RESPONSES ,
-
View: IGFFV_FFELP_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds FFELP Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG SQL Statements
12.1.1
-
APPS.IGF_DB_CL_ROSTER dependencies on IGF_SL_CL_BATCH_ALL
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on IGF_SL_CL_BATCH_ALL
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_SL_CL_BATCH_ALL
12.1.1
-
APPS.IGF_SL_CL_BATCH_PKG dependencies on IGF_SL_CL_BATCH_ALL
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on IGF_SL_CL_BATCH_ALL
12.1.1
-
VIEW: APPS.IGFFV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FFELP_ORIG_RESPONSES, object_name:IGFFV_FFELP_ORIG_RESPONSES, status:VALID,
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on IGF_SL_CL_BATCH_PKG
12.1.1
-
APPS.IGF_SL_CL_BATCH_PKG dependencies on IGF_SL_CL_BATCH_PKG
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on IGF_SL_CL_BATCH
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
-
APPS.IGF_SL_CL_ORIG_ACK SQL Statements
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on FND_LOG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_ORIG_ACK
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
12.1.1 DBA Data
12.1.1