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.
-
Table: IGF_AP_TD_ITEM_MST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_TD_ITEM_MST_ALL, object_name:IGF_AP_TD_ITEM_MST_ALL, status:VALID, product: IGF - Financial Aid , description: Holds the To Do Items , implementation_dba_data: IGF.IGF_AP_TD_ITEM_MST_ALL ,
-
Table: IGF_AP_TD_ITEM_MST_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds the To Do Items , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AP_VER_GRPS_PRC_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_DB_DISB dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_INST_APP dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_TODO_GRPS_PRC_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_LG_TD_IMP dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_TODO_GRPS_PRC_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_SL_PREF_LENDER dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AW_ROLLOVER dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_GEN dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_TD_ITEM_MST_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_SL_REL_DISB dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_VER_GRPS_PRC_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_TD_ITEM_INST_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_BATCH_VER_PRC_PKG dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AP_TD_ITEM_MST_PKG dependencies on IGF_AP_TD_ITEM_MST
12.1.1
-
APPS.IGF_AW_ROLLOVER dependencies on IGF_AP_TD_ITEM_MST
12.1.1
-
APPS.IGF_AP_INST_APP dependencies on IGF_AP_TD_ITEM_INST_ALL
12.1.1
-
APPS.IGF_SL_REL_DISB dependencies on IGF_AW_FUND_TD_MAP_ALL
12.1.1
-
APPS.IGF_AP_LG_TD_IMP dependencies on IGF_AP_TD_ITEM_INST_ALL
12.1.1
-
APPS.IGF_AP_BATCH_VER_PRC_PKG dependencies on IGF_AP_TD_ITEM_INST_ALL
12.1.1
-
APPS.IGF_AP_INST_APP dependencies on IGF_AP_FA_BASE_REC_ALL
12.1.1
-
APPS.IGF_DB_DISB dependencies on IGF_AW_FUND_TD_MAP_ALL
12.1.1
-
APPS.IGF_AW_ROLLOVER dependencies on IGF_AW_FUND_TD_MAP_ALL
12.1.1
-
SYNONYM: APPS.IGF_AP_TD_ITEM_MST_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_AP_TD_ITEM_MST_ALL, status:VALID,
-
APPS.IGF_AP_TD_ITEM_MST_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGFFV_TRACK_STUDENT_TODO_ITEMS
12.1.1
-
VIEW: APPS.IGFBV_TRACK_STUDENT_TODO_ITEMS
12.1.1
-
VIEW: APPS.IGF_AP_TD_ITEM_MST
12.1.1
-
APPS.IGF_AW_ROLLOVER dependencies on IGF_AW_FUND_TD_MAP
12.1.1
-
APPS.IGF_AP_LG_TD_IMP dependencies on IGF_AP_TD_ITEM_INST
12.1.1
-
APPS.IGF_SL_REL_DISB dependencies on IGF_AP_TD_ITEM_INST_V
12.1.1
-
Table: IGF_AP_TD_ITEM_INST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_TD_ITEM_INST_ALL, object_name:IGF_AP_TD_ITEM_INST_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the item instance information , implementation_dba_data: IGF.IGF_AP_TD_ITEM_INST_ALL ,
-
APPS.IGF_DB_DISB dependencies on IGF_AP_TD_ITEM_INST_V
12.1.1
-
Table: IGF_AP_TD_ITEM_INST_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the item instance information , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGF_AP_VER_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AP_VER_GRPS_PRC_PKG, status:VALID,
-
APPS.IGF_AP_TD_ITEM_INST_PKG dependencies on IGF_AP_APPL_SETUP_ALL
12.1.1
-
APPS.IGF_SL_PREF_LENDER dependencies on IGF_AP_TD_ITEM_INST_ALL
12.1.1
-
Table: IGF_AW_FUND_TD_MAP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FUND_TD_MAP_ALL, object_name:IGF_AW_FUND_TD_MAP_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the to do item mapping with fund , implementation_dba_data: IGF.IGF_AW_FUND_TD_MAP_ALL ,
-
Table: IGF_AW_FUND_TD_MAP_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the to do item mapping with fund , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AP_LG_TD_IMP dependencies on IGS_CA_INST_ALL
12.1.1
-
PACKAGE: APPS.IGF_AP_TODO_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AP_TODO_GRPS_PRC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_TD_ITEM_INST_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_TD_ITEM_INST_PKG, status:VALID,
-
View: IGF_AP_TD_ITEM_MST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_MST, object_name:IGF_AP_TD_ITEM_MST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_TD_ITEM_MST ,
-
PACKAGE BODY: APPS.IGF_AP_INST_APP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_INST_APP, status:VALID,
-
APPS.IGF_AP_LG_TD_IMP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_TODO_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_TODO_GRPS_PRC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_VER_GRPS_PRC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_VER_GRPS_PRC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_TD_ITEM_MST_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_TD_ITEM_MST_PKG, status:VALID,