Search Results disb_ref_num
Overview
The IGF_GR_RFMS_DISB_ALL table is a core data repository within the Oracle E-Business Suite (EBS) Grants (IGF) module, specifically for versions 12.1.1 and 12.2.2. It serves as the definitive store for disbursement data that must be transmitted to an external Recipient Financial Management System (RFMS), typically a government entity. This table is critical for managing the lifecycle of grant disbursements, from creation and transmission to tracking acceptance and status updates received from the external system. Its "ALL" suffix indicates it is a multi-organization access control (MOAC) enabled table, storing data for all operating units.
Key Information Stored
The table's columns are designed to capture the complete disbursement transaction and its subsequent processing status. The primary identifier is the RFMD_ID, a system-generated unique key. Essential disbursement details include the ORIGINATION_ID, DISB_REF_NUM, DISB_DT, and DISB_AMT. The table also stores the response and reconciliation data from the RFMS, such as DISB_ACK_ACT_STATUS, ACCPT_DISB_DT, DISB_ACCPT_AMT, and EDIT_CODE. The DB_CR_FLAG and ACCPT_DB_CR_FLAG indicate whether the disbursement amount is a debit (positive) or credit (negative). Standard EBS "Who" columns (CREATED_BY, CREATION_DATE, etc.) are present for auditing.
Common Use Cases and Queries
Primary use cases involve generating disbursement reports, reconciling sent data with accepted amounts from the government, and troubleshooting transmission errors. Common SQL queries include identifying disbursements by status, batch, or origination, and reconciling amounts.
- Finding disbursements in a specific batch for transmission:
SELECT * FROM igf.igf_gr_rfms_disb_all WHERE rfmb_id = <batch_id> ORDER BY rfmd_id; - Identifying disbursements with errors (EDIT_CODE) for a given origination:
SELECT origination_id, disb_ref_num, edit_code, disb_amt, disb_accept_amt FROM igf.igf_gr_rfms_disb_all WHERE origination_id = '<ID>' AND edit_code IS NOT NULL; - Reconciling proposed versus accepted disbursement amounts:
SELECT disb_ref_num, disb_amt, disb_accept_amt, (disb_amt - disb_accept_amt) AS variance FROM igf.igf_gr_rfms_disb_all WHERE disb_ack_act_status = 'ACCEPTED' AND disb_amt != disb_accept_amt;
Related Objects
The table maintains defined foreign key relationships with other critical RFMS staging tables, forming a key data model for grant disbursement processing.
- Primary Key: The table's primary key is IGF_GR_RFMS_DISB_ALL_PK on the RFMD_ID column.
- Foreign Key References:
- IGF_GR_RFMS_BATCH_ALL: The RFMB_ID column references this table to associate each disbursement record with a specific transmission batch sent to the external RFMS.
- IGF_GR_RFMS_ALL: The ORIGINATION_ID column references this table, linking the disbursement to its parent grant origination record.
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on IGF_AW_GEN
12.1.1
-
APPS.IGF_DB_DISB dependencies on IGF_GR_RFMS_DISB
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS_DISB
12.1.1
-
TABLE: IGF.IGF_GR_RFMS_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_RFMS_DISB_ALL, object_name:IGF_GR_RFMS_DISB_ALL, status:VALID,
-
APPS.IGF_GR_RFMS_ORIG dependencies on IGF_GR_RFMS_DISB
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS_DISB_PKG
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_AW_GEN
12.1.1
-
VIEW: APPS.IGF_GR_RFMS_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_DISB, object_name:IGF_GR_RFMS_DISB, status:VALID,
-
APPS.IGF_GR_RFMS_DISB_PKG dependencies on IGF_GR_RFMS_DISB_ALL
12.1.1
-
Table: IGF_GR_RFMS_DISB_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the RFMS disbursement data that is sent to the RFMS , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_DB_DISB dependencies on IGF_GR_RFMS
12.1.1
-
Table: IGF_GR_RFMS_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_RFMS_DISB_ALL, object_name:IGF_GR_RFMS_DISB_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the RFMS disbursement data that is sent to the RFMS , implementation_dba_data: IGF.IGF_GR_RFMS_DISB_ALL ,
-
View: IGF_GR_RFMS_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_DISB_V, object_name:IGF_GR_RFMS_DISB_V, status:VALID, product: IGF - Financial Aid , description: Shows the recipient financial management system disbursement data , implementation_dba_data: APPS.IGF_GR_RFMS_DISB_V ,
-
VIEW: APPS.IGF_GR_YTD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_YTD_DISB, object_name:IGF_GR_YTD_DISB, status:VALID,
-
VIEW: APPS.IGF_GR_RFMS_DISB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_DISB_V, object_name:IGF_GR_RFMS_DISB_V, status:VALID,
-
View: IGF_GR_RFMS_DISB_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows the recipient financial management system disbursement data , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_YTD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_YTD_DISB, object_name:IGF_GR_YTD_DISB, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_YTD_DISB ,
-
View: IGF_GR_YTD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_DISB, object_name:IGF_GR_RFMS_DISB, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_RFMS_DISB ,
-
TABLE: IGF.IGF_GR_YTD_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_YTD_DISB_ALL, object_name:IGF_GR_YTD_DISB_ALL, status:VALID,
-
APPS.IGF_GR_RFMS_DISB_PKG SQL Statements
12.1.1
-
Lookup Type: IGF_GR_LOOKUPS
12.1.1
product: IGF - Financial Aid , meaning: Grant Upload Columns , description: Grant Upload Columns ,
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on FND_FILE
12.1.1
-
APPS.IGF_GR_YTD_DISB_PKG SQL Statements
12.1.1
-
Lookup Type: IGF_GR_LOOKUPS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Grant Upload Columns , description: Grant Upload Columns ,
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS
12.1.1
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGF_GR_RFMS_DISB_ORIG SQL Statements
12.1.1
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on IGF_GR_RFMS_DISB
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS_ALL
12.1.1
-
APPS.IGF_GR_RFMS_ORIG SQL Statements
12.1.1
-
APPS.IGF_GR_GEN dependencies on FND_FILE
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_RFMS_DISB_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_RFMS_DISB_ORIG
12.1.1
-
APPS.IGF_DB_DISB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_YTD_DISB_PKG
12.1.1
-
APPS.IGF_GR_RFMS_ORIG dependencies on IGF_GR_RFMS
12.1.1
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on IGF_GR_RFMS
12.1.1
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on IGF_GR_GEN
12.1.1
-
APPS.IGF_GR_GEN SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_GEN
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_RFMS_ORIG
12.1.1
-
PACKAGE BODY: APPS.IGF_DB_DISB
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,