Search Results igf_ap_li_css_act_ints_pk




Overview

The IGF_AP_LI_CSS_ACT_INTS table is a core interface table within the Oracle E-Business Suite's Financial Aid module (IGF). Its primary role is to serve as a staging area for importing and processing "Active Profiles" data, which are critical for determining a student's financial aid eligibility. As an interface table, it acts as a temporary holding area for data from external systems or legacy sources before it is validated and migrated into the application's base transactional tables through a dedicated import process. This structure is essential for maintaining data integrity and supporting batch operations in both EBS 12.1.1 and 12.2.2 implementations.

Key Information Stored

The table stores a record for each active profile being interfaced. While the full column list is not detailed in the provided metadata, the documented primary and foreign keys reveal its critical structure. The primary key column, CSAINT_ID, uniquely identifies each interface record. The BATCH_NUM column is a crucial foreign key that links all interface records to a specific control batch in the IGF_AP_LI_BAT_INTS table. This batch-level grouping allows for the processing, error tracking, and auditing of all profile data imported in a single job. Other typical columns in such an interface table would include the detailed profile data points (like student identifiers, profile codes, and effective dates) and status/error message columns used by the import program.

Common Use Cases and Queries

The primary use case is the batch loading of active student financial aid profiles. A common operational pattern involves an external system populating this table, followed by the execution of a Financial Aid import concurrent program that validates the data and transfers it to production tables. Key queries involve monitoring the interface for errors or checking batch status. For example:

  • Identifying unprocessed records: SELECT * FROM igf_ap_li_css_act_ints WHERE batch_num = &BATCH_ID AND process_status IS NULL;
  • Reviewing data for a specific batch before submission: SELECT caint_id, student_id, profile_code FROM igf_ap_li_css_act_ints WHERE batch_num = &BATCH_ID ORDER BY caint_id;
  • Troubleshooting failed imports by joining with the batch interface table to see error messages and batch details.

Related Objects

This table has a direct and documented dependency on the batch control interface table. The key relationships are:

  • Primary Key: The table is uniquely identified by its IGF_AP_LI_CSS_ACT_INTS_PK constraint on the CSAINT_ID column.
  • Foreign Key (Outbound): The table references IGF_AP_LI_BAT_INTS via the BATCH_NUM column. This relationship ensures every profile interface record is associated with a valid import batch, enabling coordinated processing and rollback.

While not listed in the provided metadata, this interface table would be the source for a Financial Aid import program (likely a concurrent request) which, upon successful validation, populates core transactional tables in the IGF schema.