Search Results igf_gr_rfms_batch
Overview
The IGF_GR_RFMS_BATCH view is a Financial Aid (IGF) product database object owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It exposes batch-level records associated with the RFMS (Record Format Management System) interface used to transmit Title IV student financial aid data between Oracle EBS and the U.S. Department of Education's Common Origination and Disbursement (COD) system. The view presents metadata about each RFMS batch, including the batch identifier, processing and acknowledgement dates, acknowledgement batch identifiers, rejection reasons, and standard Oracle WHO columns for auditing and concurrent program tracking.
Functionally, the view acts as an application-level, operating-unit-secured presentation layer over the underlying batch table. It is primarily consumed by Financial Aid batch extracts, reconciliation reports, and integration routines that need to enumerate RFMS transmissions and their outcomes. Because it enforces multi-org access through the ORG_ID predicate, it is typically invoked in a session where CLIENT_INFO has been initialized through FND_CLIENT_INFO or an equivalent multi-org setup routine.
Underlying Base Objects
The view is defined over a single base object: IGF_GR_RFMS_BATCH_ALL. This base table is a multi-org (per-operating-unit) table, indicated by the "_ALL" suffix and the presence of the ORG_ID column. The view filters the base table with the standard Oracle multi-org security predicate:
- It compares RFMSBT.ORG_ID against the operating unit value parsed from USERENV('CLIENT_INFO'), specifically the first ten characters of CLIENT_INFO.
- When CLIENT_INFO is blank or null, the NVL/DECODE logic substitutes -99, meaning only rows with ORG_ID of -99 (or null, evaluated through the same path) are returned.
- ROW_ID is projected from the base table's ROWID, providing a pseudo-key for the view.
The view is read-only with respect to DML; any insert, update, or delete must be performed against IGF_GR_RFMS_BATCH_ALL. The ETRM metadata documents no additional referenced objects, so the view is a direct, single-table projection.
Key Columns
- ROW_ID — ROWID of the underlying row, useful for locating the base record.
- RFMB_ID — Primary identifier of the RFMS batch record.
- BATCH_ID — Business batch identifier used in RFMS transmissions.
- DATA_REC_LENGTH — Length of the data record within the batch.
- OPE_ID — Office of Postsecondary Education identifier for the institution.
- SOFTWARE_PROVIDOR — Software provider code (note the original spelling) associated with the batch.
- RFMS_PROCESS_DT — Date the batch was processed.
- RFMS_ACK_DT — Date the batch was acknowledged by the receiving system.
- RFMS_ACK_BATCH_ID — Batch identifier returned in the acknowledgement.
- REJECT_REASON — Reason code or text describing why a batch was rejected.
- CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard audit (WHO) columns.
- PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, REQUEST_ID — Concurrent program and request context columns.
- ORG_ID — Operating unit that owns the batch.
Common Use Cases and Queries
Typical uses include monitoring RFMS batch transmissions, identifying unacknowledged batches, and diagnosing rejections. A representative query lists unacknowledged batches for the current operating unit:
SELECT batch_id, rfmb_id, ope_id,
rfms_process_dt, rfms_ack_dt, reject_reason
FROM apps.igf_gr_rfms_batch
WHERE rfms_ack_dt IS NULL
ORDER BY rfms_process_dt;
Reconciliation reporting compares processed and acknowledged dates, while rejection analysis filters on REJECT_REASON. Because the view applies multi-org security automatically, the query above returns only rows visible to the session's operating unit. Scripts requiring cross-org access should query IGF_GR_RFMS_BATCH_ALL directly with an explicit ORG_ID predicate.
-
View: IGF_GR_RFMS_BATCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_BATCH, object_name:IGF_GR_RFMS_BATCH, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_RFMS_BATCH ,
-
View: IGF_GR_RFMS_BATCH
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_GR_RFMS_BATCH_V
12.1.1
-
VIEW: APPS.IGF_GR_RFMS_DISB_V
12.1.1
-
SYNONYM: APPS.IGF_GR_RFMS_BATCH_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_GR_RFMS_BATCH_ALL, status:VALID,
-
View: IGF_GR_RFMS_BATCH_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows details of RFMS batch records , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_GR_RFMS_BATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_BATCH_V, object_name:IGF_GR_RFMS_BATCH_V, status:VALID,
-
VIEW: APPS.IGF_GR_RFMS_V
12.1.1
-
VIEW: APPS.IGF_GR_RFMS_BATCH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_BATCH, object_name:IGF_GR_RFMS_BATCH, status:VALID,
-
View: IGF_GR_RFMS_BATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_BATCH_V, object_name:IGF_GR_RFMS_BATCH_V, status:VALID, product: IGF - Financial Aid , description: Shows details of RFMS batch records , implementation_dba_data: APPS.IGF_GR_RFMS_BATCH_V ,
-
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_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 ,
-
PACKAGE BODY: APPS.IGF_GR_RFMS_DISB_ORIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_RFMS_DISB_ORIG, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_RFMS_ORIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_RFMS_ORIG, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_GEN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_GR_GEN, status:VALID,
-
View: IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID, product: IGF - Financial Aid , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: APPS.IGF_GR_RFMS_V ,
-
PACKAGE: APPS.IGF_GR_GEN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_GR_GEN, status:VALID,
-
View: IGF_GR_RFMS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
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,
-
APPS.IGF_GR_RFMS_DISB_ORIG SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGF_GR_RFMS_ORIG SQL Statements
12.1.1
-
APPS.IGF_GR_GEN SQL Statements
12.1.1
-
VIEW: APPS.IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID,
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS_BATCH
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS_BATCH
12.1.1
-
APPS.IGF_GR_RFMS_ORIG dependencies on IGF_GR_RFMS_BATCH
12.1.1
-
APPS.IGF_GR_RFMS_DISB_ORIG dependencies on IGF_GR_RFMS_BATCH
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_GEN
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS
12.1.1
-
APPS.IGF_GR_GEN dependencies on IGF_GR_RFMS_BATCH_ALL
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
-
PACKAGE BODY: APPS.IGF_GR_RFMS_DISB_ORIG
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_GR_RFMS_ORIG
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 ,