Search Results required_for_application
Overview
IGF_AP_TD_ITEM_MST is a valid Oracle E-Business Suite view owned by the APPS schema within the IGF (Financial Aid) product family. It presents master reference data for financial aid tracking items and "to-do" requirements that applicants must complete as part of the aid application lifecycle. In EBS 12.1.1 and 12.2.2, the view functions as an organization-secured, Multi-Org-compliant projection over the underlying base table IGF_AP_TD_ITEM_MST_ALL, exposing only the rows relevant to the operating unit identified through the session's CLIENT_INFO context. Because the view is defined with a WHERE clause that resolves against ORG_ID, it serves as the standard access point for forms, concurrent programs, OAF pages, and custom reporting rather than querying the _ALL table directly.
Underlying Base Objects
The ETRM metadata documents no separately listed referenced base objects, but the embedded view text establishes the definition precisely. The view selects from IGF_AP_TD_ITEM_MST_ALL and applies an organization security predicate:
- Base table: IGF_AP_TD_ITEM_MST_ALL, which stores the unfiltered, Multi-Org enabled rows spanning all operating units.
- Row filter: NVL(ORG_ID, NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL,SUBSTRB(USERENV('CLIENT_INFO'),1,10))),-99)) = NVL(TO_NUMBER(...),-99). This classic Multi-Org view pattern derives the current operating unit from CLIENT_INFO, substituting -99 when the session context is blank, and preserves rows whose ORG_ID is null.
- Structure: The view is a simple single-table projection; it introduces no joins, unions, or aggregations, so it remains updatable in the same manner as the base table for the visible organization.
Key Columns
- ROWID: Pseudocolumn exposed as ROW_ID, used for direct row addressing and updateability.
- TODO_NUMBER / ITEM_CODE: Core identifiers for the tracking item and its associated to-do requirement.
- CI_CAL_TYPE / CI_SEQUENCE_NUMBER: Link the item to a specific calendar type and sequence, aligning the requirement to an academic or processing cycle.
- DESCRIPTION / CORSP_MESG: Descriptive text and the correspondence message presented to the applicant.
- CAREER_ITEM / REQUIRED_FOR_APPLICATION: Flag career-level eligibility and whether the item is mandatory for application completion.
- FREQ_ATTEMPT / MAX_ATTEMPT: Control attempt frequency and maximum attempts permitted for the item.
- ORG_ID: Operating unit discriminator enforced by the view predicate.
- SYSTEM_TODO_TYPE_CODE / APPLICATION_CODE: Classify the system to-do type and the associated application context; APPLICATION_CODE is the column most commonly referenced when filtering or joining item master data to application records.
- DISPLAY_IN_SS_FLAG / SS_INSTRUCTION_TXT / ALLOW_ATTACHMENT_FLAG / DOCUMENT_URL_TXT: Govern self-service presentation, applicant instructions, attachment permission, and external document links.
- Audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical reporting scenarios include listing mandatory application items, validating self-service display configuration, and resolving document URLs for applicant portals. Because ORG_ID filtering is implicit, queries executed under a properly initialized session return only the current operating unit's rows.
- Retrieve all required items:
SELECT TODO_NUMBER, ITEM_CODE, DESCRIPTION FROM APPS.IGF_AP_TD_ITEM_MST WHERE REQUIRED_FOR_APPLICATION = 'Y'; - Filter by application context:
SELECT ITEM_CODE, APPLICATION_CODE, SYSTEM_TODO_TYPE_CODE FROM APPS.IGF_AP_TD_ITEM_MST WHERE APPLICATION_CODE = :p_app_code; - Identify self-service enabled documents:
SELECT ITEM_CODE, SS_INSTRUCTION_TXT, DOCUMENT_URL_TXT FROM APPS.IGF_AP_TD_ITEM_MST WHERE DISPLAY_IN_SS_FLAG = 'Y' AND ALLOW_ATTACHMENT_FLAG = 'Y'; - Inspect attempt controls:
SELECT ITEM_CODE, FREQ_ATTEMPT, MAX_ATTEMPT FROM APPS.IGF_AP_TD_ITEM_MST ORDER BY ITEM_CODE;
When the value of :p_app_code must resolve across applications, join to the corresponding application table on APPLICATION_CODE, taking care to initialize FND_CLIENT_INFO or use MO_GLOBAL so the Multi-Org predicate returns the intended organization's rows.
-
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 ,
-
VIEW: APPS.IGF_AP_TD_ITEM_MST
12.1.1
-
View: IGF_AP_TD_ITEM_MST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AP_TD_ITEM_TYPE_ALL_OLD
12.1.1
owner:IGF, object_type:TABLE, object_name:IGF_AP_TD_ITEM_TYPE_ALL_OLD, status:VALID,
-
VIEW: APPS.IGF_AP_TD_ITEM_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_INST, object_name:IGF_AP_TD_ITEM_INST, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.IGF_AP_TD_ITEM_MST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_MST_V, object_name:IGF_AP_TD_ITEM_MST_V, status:VALID,
-
VIEW: APPS.IGF_AP_TD_ITEM_INST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_INST_V, object_name:IGF_AP_TD_ITEM_INST_V, status:VALID,
-
View: IGF_AP_TD_ITEM_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_INST, object_name:IGF_AP_TD_ITEM_INST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_TD_ITEM_INST ,
-
View: IGF_AP_TD_ITEM_INST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.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,
-
View: IGF_AP_TD_ITEM_INST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_INST_V, object_name:IGF_AP_TD_ITEM_INST_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_TD_ITEM_INST_V ,
-
TABLE: IGF.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,
-
View: IGF_AP_TD_ITEM_INST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_TD_ITEM_MST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_TD_ITEM_MST_V, object_name:IGF_AP_TD_ITEM_MST_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_TD_ITEM_MST_V ,
-
View: IGF_AP_TD_ITEM_MST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AP_TD_ITEM_MST_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_TD_ITEM_INST_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_TODO_GRPS_PRC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_TD_ITEM_MST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_TD_ITEM_INST_PKG
12.1.1
-
APPS.IGF_AP_TD_ITEM_INST_PKG dependencies on IGF_AP_TD_ITEM_INST_ALL
12.1.1
-
APPS.IGF_AP_TODO_GRPS_PRC_PKG dependencies on IGF_AP_TD_ITEM_MST
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_TODO_GRPS_PRC_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,