Search Results alt_prog_type_code
Overview
IGF_DB_CL_DISB_RESP is a multi-org view owned by the APPS schema in Oracle E-Business Suite, registered under FND Design Data as IGF.IGF_DB_CL_DISB_RESP. It falls within the Financial Aid / Student Loan processing area of the Oracle EBS footprint, historically aligned with the Intellection/IGF (International Government Finance) product family used to support Title IV and related student loan disbursement reporting. The view exposes a wide, denormalized record set describing loan disbursement activity at the student borrower level, combining guarantor, lender, school, disbursement, fee, and cancellation attributes in a single queryable structure. Its multi-org behavior means that query results are automatically filtered to the operating unit of the active session, so data from other operating units is excluded unless the view is queried in a context that ignores the ORG_ID filter.
The view is registered as a VALID object in 12.1.1 and 12.2.2. It is not a base table itself, and no base objects are documented in the ETRM metadata, meaning the view definition is not surfaced as a set of documented underlying tables. Treat it as a reporting and integration surface rather than as a transactional source of truth.
Underlying Base Objects
The documented metadata does not list the base tables or synonyms referenced by the view definition; the ETRM entry records "Referenced base objects: none documented." As a consequence, the physical lineage can only be confirmed by querying the view definition itself or by inspecting DBA_VIEWS / DBA_DEPENDENCIES in the target instance. The presence of a ROW_ID (ROWID) column and the multi-org designation indicate that the view is a join or union over one or more organization-enabled tables in the IGF schema, likely combining disbursement, borrower, school, lender, and guarantor entities into a single flattened record for downstream reporting.
The column set suggests a composite of at least a disbursement table (CDBR_ID, CBTH_ID, DISB_NUM, FUND_RELEASE_DATE, GROSS_DISB_AMT, NET_DISB_AMT), a borrower table (B_LAST_NAME, B_FIRST_NAME, B_SSN), a student table (S_LAST_NAME, S_SSN, SCHOOL_ID), and lender/guarantor reference tables (LENDER_ID, GUARANTOR_ID). Because the lineage is undocumented, the safest handling is to treat IGF_DB_CL_DISB_RESP as an interface view whose shape is contractual, not its internals.
Key Columns
- ROW_ID, CDBR_ID, CBTH_ID — Row identifier, disbursement record ID, and parent batch/header ID for the disbursement.
- RECORD_TYPE, LOAN_NUMBER, CL_SEQ_NUMBER, CL_LOAN_TYPE — Loan type and sequencing attributes used to classify the disbursement.
- B_* columns — Borrower name, SSN, address, and address change date.
- S_* columns and SCHOOL_ID — Student identity and school identifiers.
- DUNS_SCHOOL_ID, DUNS_LENDER_ID, DUNS_GUARNT_ID — DUNS identifiers for the school, lender, and guarantor. DUNS_SCHOOL_ID is explicitly flagged Obsolete in the metadata; queries joining on this column should treat it as legacy and verify against current school identifiers before use.
- GUARANTEE_DATE, GUARANTEE_AMT, GUARANTOR_ID — Guarantor-level guarantee details.
- GROSS_DISB_AMT, FEE_1, FEE_2, FEE_PAID_1, FEE_PAID_2, NET_DISB_AMT — Disbursement amount, origination/guarantee fees, and net amounts.
- NET_CANCEL_AMT, NETTED_CANCEL_AMT, OUTSTD_CANCEL_AMT — Cancellation accounting for the disbursement.
- ERR_CODE1..ERR_CODE5 — Validation error codes returned from downstream processing.
- HOLD_REL_IND, LATE_DISB_IND, PREV_REPORTED_IND, BORW_CONFIRM_IND — Status and confirmation indicators used by reporting.
Common Use Cases and Queries
Typical scenarios include reconciling disbursement totals by school, producing borrower-level disbursement reports, auditing net-versus-gross amounts after fee deduction, and extracting records flagged with error codes for remediation. Because the view is multi-org, any query executed with a valid operating unit context returns only that organization's rows.
SELECT cl_seq_number,
loan_number,
b_last_name,
b_first_name,
s_last_name,
school_id,
gross_disb_amt,
net_disb_amt,
fund_release_date,
disb_num
FROM apps.igf_db_cl_disb_resp
WHERE fund_release_date >= :p_from_date
AND fund_release_date < :p_to_date
ORDER BY school_id, cl_seq_number;
Auditing net amounts after fee deduction:
SELECT cdbr_id,
gross_disb_amt,
NVL(fee_1,0) + NVL(fee_2,0) AS total_fees,
net_disb_amt,
gross_disb_amt - (NVL(fee_1,0) + NVL(fee_2,0)) AS computed_net
FROM apps.igf_db_cl_disb_resp
WHERE NVL(net_disb_amt,0) <> gross_disb_amt - (NVL(fee_1,0) + NVL(fee_2,0));
Identifying records with downstream errors:
SELECT cdbr_id, loan_number, err_code1, err_code2, err_code3, err_code4, err_code5
FROM apps.igf_db_cl_disb_resp
WHERE err_code1 IS NOT NULL
OR err_code2 IS NOT NULL
OR err_code3 IS NOT NULL;
Because DUNS_SCHOOL_ID is flagged obsolete, joins to current school master data should use SCHOOL_ID rather than the DUNS column, and results should be validated against the current school reference in the instance.
-
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,
-
View: IGF_SL_CL_RESP_R1
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_CL_RESP_R1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R1, object_name:IGF_SL_CL_RESP_R1, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_RESP_R1 ,
-
VIEW: APPS.IGFBV_FFELP_ORIG_RESPONSES
12.1.1
-
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 ,
-
VIEW: APPS.IGFFV_FFELP_ORIG_RESPONSES
12.1.1
-
View: IGF_SL_LOR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_DTLS_V, object_name:IGF_SL_LOR_DTLS_V, status:VALID, product: IGF - Financial Aid , description: Obsolete , implementation_dba_data: APPS.IGF_SL_LOR_DTLS_V ,
-
View: IGF_DB_CL_DISB_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
-
View: IGF_SL_LOR
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR ,
-
VIEW: APPS.IGF_SL_LOR_DTLS_V
12.1.1
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R1, object_name:IGF_SL_CL_RESP_R1, status:VALID,
-
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: IGFBV_FFELP_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds FFELP Origination Response Details , 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,
-
View: IGFBV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FFELP_ORIG_RESPONSES, object_name:IGFBV_FFELP_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds FFELP Origination Response Details , implementation_dba_data: APPS.IGFBV_FFELP_ORIG_RESPONSES ,
-
View: IGF_SL_LOR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: IGF_SL_LOR_LOC
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_LOC ,
-
View: IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_V ,
-
APPS.IGF_DB_CL_DISB_RESP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID,
-
TABLE: IGF.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,
-
VIEW: APPS.IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID,
-
VIEW: APPS.IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID,
-
APPS.IGF_SL_CL_RESP_R1_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_LOR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_DTLS_V, object_name:IGF_SL_LOR_DTLS_V, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_ALL, object_name:IGF_SL_LOR_ALL, status:VALID,
-
APPS.IGF_SL_LOR_PKG SQL Statements
12.1.1
-
TABLE: IGF.IGF_SL_LOR_LOC_HISTORY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_HISTORY, object_name:IGF_SL_LOR_LOC_HISTORY, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_LOC_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_ALL, object_name:IGF_SL_LOR_LOC_ALL, status:VALID,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: Loan Fields , description: Loan Fields ,
-
PACKAGE BODY: APPS.IGF_DB_CL_DISB_RESP_PKG
12.1.1
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Loan Fields , description: Loan Fields ,
-
APPS.IGF_SL_LOR_LOC_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_LOR_LOC_HISTORY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_RESP_R1_PKG
12.1.1
-
APPS.IGF_SL_UPLOAD_XML SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_HISTORY_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_PKG
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_ORIG_ACK
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_UPLOAD_XML
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on WF_EVENT
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on WF_PARAMETER_LIST_T
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on FND_DATE
12.1.1