Search Results igf_ap_td_inst_req_reas_all_u1
Overview
The IGF_AP_TD_INST_REQRS_ALL table is a core data repository within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Student Financial Aid module. It is owned by the IGF (iGrants Foundation) schema and functions as the central store for tracking the reasons associated with incomplete or required to-do items for a student's financial aid application. Its primary role is to support the processing and verification of student aid by categorizing why a particular item is pending, whether due to a standard requirement or an identified data incompleteness, thereby enabling targeted follow-up and resolution.
Key Information Stored
The table's structure is designed to link reason codes to specific student to-do items. The primary key is a composite of four columns: BASE_ID, ITEM_SEQUENCE_NUMBER, TDIRR_REQ_REASON_FLAG, and TDIRR_REQ_REASON_CODE. The most critical columns for business logic include:
- BASE_ID and ITEM_SEQUENCE_NUMBER: Together, they uniquely identify the student's financial aid record and the specific to-do item.
- TDIRR_REQ_REASON_FLAG: A pivotal flag that differentiates the type of reason. A value of 'R' denotes a standard requirement reason, while 'I' indicates a reason for incompleteness.
- TDIRR_REQ_REASON_CODE: The specific reason code, whose meaning is interpreted based on the accompanying flag (e.g., a code meaning "Transcript Required" could be linked with either flag).
- OVERRIDE_FLAG, OVERRIDE_BY, OVERRIDE_DATE: These columns support workflow exceptions, allowing authorized users to override the standard requirement or incompleteness status of a verification item.
- ORG_ID: Enables multi-org partitioning by storing the operating unit identifier.
Common Use Cases and Queries
A primary use case is generating reports for financial aid officers to review all pending items for a cohort of students, categorized by the nature of the holdup. For instance, a query can isolate all items marked as incomplete ('I') to prioritize data collection efforts. Another common scenario involves auditing overrides to ensure compliance. Sample SQL patterns include identifying reasons for a specific student's to-do item or listing all overridden items within a date range.
-- Find all incomplete reasons for a specific student and to-do item SELECT TDIRR_REQ_REASON_CODE FROM IGF.IGF_AP_TD_INST_REQRS_ALL WHERE BASE_ID = :1 AND ITEM_SEQUENCE_NUMBER = :2 AND TDIRR_REQ_REASON_FLAG = 'I'; -- Report on overridden verification items SELECT a.BASE_ID, a.ITEM_SEQUENCE_NUMBER, a.OVERRIDE_BY, a.OVERRIDE_DATE FROM IGF.IGF_AP_TD_INST_REQRS_ALL a WHERE a.OVERRIDE_FLAG = 'Y' AND a.OVERRIDE_DATE > SYSDATE - 30;
Related Objects
The table's integrity and context are maintained through defined relationships with other key financial aid tables. The primary key ensures uniqueness for each reason attached to a to-do item instance. Crucially, the table references the parent to-do item table via a foreign key relationship:
- Foreign Key (References): The BASE_ID column in IGF_AP_TD_INST_REQRS_ALL references the IGF_AP_TD_ITEM_INST_ALL table. This links every reason record back to its master student financial aid to-do item instance, ensuring that reasons cannot exist without a valid parent item.
The table itself is referenced by the unique index IGF_AP_TD_INST_REQ_REAS_ALL_U1 to enforce its primary key constraint.
-
INDEX: IGF.IGF_AP_TD_INST_REQ_REAS_ALL_U1
12.1.1
owner:IGF, object_type:INDEX, object_name:IGF_AP_TD_INST_REQ_REAS_ALL_U1, status:VALID,
-
TABLE: IGF.IGF_AP_TD_INST_REQRS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_TD_INST_REQRS_ALL, object_name:IGF_AP_TD_INST_REQRS_ALL, status:VALID,
-
12.1.1 DBA Data
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 ,