Search Results career_item
Overview
APPS.IGF_AP_TD_ITEM_MST is a reporting and integration view in Oracle E-Business Suite that exposes the master definition of financial aid "to-do" items used by the Student Financial Aid component of Oracle iGovernment / Oracle Student System. The view is a filtered projection of the underlying entity table IGF_AP_TD_ITEM_MST_ALL, presenting the columns of the base table in a stable, read-only form intended for queries, reports, and interface extraction rather than for direct DML.
The defining characteristic of the view is its organizational security filter. The WHERE clause compares the ORG_ID column against the operating unit (or organization) value that Oracle EBS stores in the session attribute USERENV('CLIENT_INFO'). The expression NVL(ORG_ID, NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL, SUBSTRB(USERENV('CLIENT_INFO'),1,10))),-99)) is applied on both sides of the equality, so that rows belonging to the current session organization are returned. Rows with a null ORG_ID are treated as organization-independent, or "global," definitions. This multi-org style filtering is what distinguishes the _MST view from its _ALL base table.
The user search term "career_item" corresponds directly to one of the columns exposed by this view. CAREER_ITEM is part of the to-do item master and indicates that the item is associated with a career or career-related requirement in the financial aid processing cycle. Users searching on this term are typically tracing how a to-do item is classified against a student's academic career.
Underlying Base Objects
The documented definition shows the view is defined over a single base object: the table IGF_AP_TD_ITEM_MST_ALL. No other referenced base objects are documented in the ETRM metadata. The projection is a direct column list, with no joins, unions, or computed expressions in the SELECT list; the only transformation is the ROWID pseudo-column and the organization filter in the WHERE clause.
Because IGF_AP_TD_ITEM_MST_ALL is the "_ALL" table in the Oracle multi-organization naming convention, it holds rows for every organization. IGF_AP_TD_ITEM_MST therefore acts as the organization-scoped access layer over that table. This means the base table is the authoritative source for inserts and updates, while the view is the appropriate access point for queries that must respect the current organization context.
Key Columns
- TODO_NUMBER and ITEM_CODE — the identifying keys of the to-do item definition.
- CI_CAL_TYPE and CI_SEQUENCE_NUMBER — the calendar type and sequence used to schedule or evaluate the item.
- DESCRIPTION — the descriptive text of the to-do item.
- CORSP_MESG — the correspondence message associated with the item.
- CAREER_ITEM — the column matching the "career_item" search; flags or classifies the item in relation to a career.
- REQUIRED_FOR_APPLICATION — indicates whether the item is mandatory for a financial aid application.
- FREQ_ATTEMPT and MAX_ATTEMPT — the frequency and maximum number of attempts permitted for the item.
- SYSTEM_TODO_TYPE_CODE and APPLICATION_CODE — system classification and owning application context.
- DISPLAY_IN_SS_FLAG, SS_INSTRUCTION_TXT, ALLOW_ATTACHMENT_FLAG, DOCUMENT_URL_TXT — self-service presentation and document handling attributes.
- ORG_ID — the organization owning the row; NULL denotes a global definition.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns.
Common Use Cases and Queries
The view is commonly used to report the catalogue of financial aid to-do items for the current organization, to validate whether an item is mandatory for an application, and to retrieve self-service instructions and document URLs.
To list career-related items currently visible to the session organization:
SELECT todo_number, item_code, description, career_item FROM apps.igf_ap_td_item_mst WHERE career_item IS NOT NULL;
To identify mandatory application items with attempt limits:
SELECT item_code, description, freq_attempt, max_attempt FROM apps.igf_ap_td_item_mst WHERE required_for_application = 'Y';
To retrieve self-service display information and document links:
SELECT item_code, ss_instruction_txt, document_url_txt FROM apps.igf_ap_td_item_mst WHERE display_in_ss_flag = 'Y';
Because the view applies the USERENV('CLIENT_INFO') organization filter, queries should be executed in a session whose CLIENT_INFO is initialized to the intended operating unit; otherwise the filter resolves to the -99 sentinel and returns only rows that satisfy the null-organization branch.
-
VIEW: APPS.IGF_AP_TD_ITEM_MST
12.1.1
-
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: IGF_AP_TD_ITEM_MST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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_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_LG_TD_IMP SQL Statements
12.1.1
-
APPS.IGF_AP_TODO_GRPS_PRC_PKG SQL Statements
12.1.1
-
APPS.IGF_AW_ROLLOVER SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_TD_ITEM_MST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_LG_TD_IMP
12.1.1
-
APPS.IGF_AP_LG_TD_IMP dependencies on IGF_AP_TD_ITEM_MST_ALL
12.1.1
-
APPS.IGF_AW_ROLLOVER dependencies on IGF_AP_TD_ITEM_MST
12.1.1
-
APPS.IGF_AW_ROLLOVER 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
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_ROLLOVER
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_TODO_GRPS_PRC_PKG
12.1.1
-
APPS.IGF_AW_ROLLOVER dependencies on IGS_CA_INST_ALL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,