Search Results igf_award




Overview

The IGF_AP_LI_BAT_INTS table is a core technical table within the Oracle E-Business Suite (EBS) Financial Aid module (IGF). It functions as the master batch identifier for all legacy data import processes. Its primary role is to provide a unique tracking and control mechanism for inbound data feeds from external systems, such as government agencies or legacy financial aid systems, before that data is processed and integrated into the core EBS award tables. The table's designation within the IGF_AWARD category underscores its critical function in the award management lifecycle, serving as the initial point of entry for batch data that ultimately populates student financial aid records.

Key Information Stored

The table stores metadata that describes and categorizes each import batch. The key columns are:

  • BATCH_NUM: A mandatory, unique numeric identifier (NUMBER(15)) for each import batch, serving as the primary key.
  • BATCH_DESC: A descriptive field (VARCHAR2(80)) providing contextual information about the batch's contents or source.
  • BATCH_TYPE: A critical classification field (VARCHAR2(30)) that dictates the nature of the data being imported. Based on the metadata, valid types include ISIR, PROFILE, LOANS, GRANTS, COA, TODO, VERIF, BASE, and specifically for award-related data, 'AWD' (Award Detail) and 'AWG' (Award Aggregate).
  • Standard Who Columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN, which provide audit trail information.

Common Use Cases and Queries

This table is central to batch import operations and subsequent auditing. A common use case involves generating a report of all award-related import batches processed within a specific timeframe for reconciliation purposes. Administrators may query this table to monitor the status of imports or to identify a specific batch for troubleshooting. A typical query pattern involves filtering by BATCH_TYPE and creation date.

Sample Query: Retrieve Recent Award Detail Import Batches
SELECT batch_num, batch_desc, creation_date, created_by
FROM igf.igf_ap_li_bat_ints
WHERE batch_type = 'AWD'
AND creation_date > TRUNC(SYSDATE) - 30
ORDER BY creation_date DESC;

Another critical use case is joining this batch header table to corresponding interface line tables (which store the actual data records) using BATCH_NUM as the foreign key, enabling full traceability from the processed data back to its import source.

Related Objects

As a foundational batch control table, IGF_AP_LI_BAT_INTS is referenced by other interface tables within the IGF schema that hold the detailed line items for each import type. While the provided dependency information does not list specific foreign key relationships, the table's primary key (BATCH_NUM) is logically referenced by various legacy interface line tables (e.g., tables with names like IGF_AP_LI_[TYPE]_INTS). These child tables would store the actual ISIR, award, or loan data rows, each linked to a parent batch identifier in this table. The table is stored in the APPS_TS_INTERFACE tablespace, which is standard for EBS interface staging tables.