Search Results igf_ap_td_item_mst_all




Overview

The table IGF_AP_TD_ITEM_MST_ALL is a core repository within the Oracle E-Business Suite (EBS) Financial Aid module (IGF). It serves as the master definition table for "To Do" items, which are tasks or documentation requirements that must be completed by a student or financial aid administrator as part of the aid application and disbursement process. Its role is to centrally define the characteristics and rules for each type of task, such as submitting a verification document or completing an entrance interview. This master data is then associated with specific student instances and can be linked to funding requirements, enabling automated tracking and compliance within the financial aid lifecycle across all operating units (indicated by the _ALL suffix).

Key Information Stored

While the provided metadata does not list specific columns, the structure and relationships indicate the table stores the defining attributes for each To Do item type. The primary key, TODO_NUMBER (or a similarly named column like ITEM_SEQUENCE_NUMBER as referenced by foreign keys), uniquely identifies each master To Do item. Based on standard EBS design patterns for such master tables, it likely contains descriptive columns such as ITEM_CODE, DESCRIPTION, and ACTIVE_FLAG. It may also hold configuration fields controlling the item's priority, category, whether it is required, and the business process it supports. The critical data point is the unique identifier that is referenced throughout the system to associate specific student tasks with their master definition.

Common Use Cases and Queries

This table is primarily used for setup, reporting, and transactional integration. Administrators query it to review or maintain the catalog of available To Do items. A common reporting use case is to list all active master items to understand the universe of potential student requirements. The table is also central to queries that analyze the relationship between funding sources and required tasks. A typical SQL pattern involves joining the master table to its instance table to report on defined versus assigned items.

  • Listing Active Master To Do Items: SELECT todo_number, item_code, description FROM igf_ap_td_item_mst_all WHERE active_flag = 'Y' ORDER BY item_code;
  • Identifying To Do Items Linked to a Specific Fund: This requires joining through the IGF_AW_FUND_TD_MAP_ALL table: SELECT mst.* FROM igf_ap_td_item_mst_all mst, igf_aw_fund_td_map_all map WHERE mst.todo_number = map.item_sequence_number AND map.fund_id = :fund_id;

Related Objects

The IGF_AP_TD_ITEM_MST_ALL table has documented foreign key relationships with two key transactional tables, establishing its role as a source of master data.

  • IGF_AP_TD_ITEM_INST_ALL: This table holds the specific instances of To Do items assigned to individual students. The foreign key from IGF_AP_TD_ITEM_INST_ALL.ITEM_SEQUENCE_NUMBER to IGF_AP_TD_ITEM_MST_ALL creates the link between a student's actual task and its master definition, enabling tracking of completion status per student.
  • IGF_AW_FUND_TD_MAP_ALL: This mapping table links financial aid funds (awards) to the To Do items that must be completed before disbursement. The foreign key IGF_AW_FUND_TD_MAP_ALL.ITEM_SEQUENCE_NUMBER references the master table, defining which requirements are attached to which funding sources.