Results for “igf_ap_td_item_inst_v”

50+ results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The IGF_AP_TD_ITEM_INST_V view is a reporting and integration object owned by the APPS schema within the Oracle E-Business Suite Financial Aid (IGF) product family. It exposes data related to "To Do" item instances associated with a financial aid applicant's base record, combining item instance details with descriptive lookup information, master item definitions, preferred lender relationships, and applicant identity. The view is documented as VALID in ETRM for both EBS 12.1.1 and 12.2.2.

The object serves as a denormalized read layer that joins a child item-instance table to several parent and lookup objects. Its primary function is to present a single, queryable row per To Do item instance, enriched with human-readable status meanings and item descriptions. Users frequently search this view by the STATUS_DESC column, which resolves the internal STATUS code into its lookup meaning (lookup type IGF_TD_ITEM_STATUS), making it valuable for status-driven reporting without requiring a separate join to lookup tables.

Underlying Base Objects

The view text documents the following base objects and join conditions:

The metadata notes no separately documented base objects beyond those embedded in the view definition.

Key Columns

The view returns 28 columns. Notable columns include:

Common Use Cases and Queries

Typical scenarios include tracking outstanding To Do items per applicant, reporting by status description, and enriching downstream integrations with lender relationship data.

SELECT base_id, item_code, item_description,
       status, status_desc, status_date, person_id
FROM   apps.igf_ap_td_item_inst_v
WHERE  status_desc = :p_status
ORDER  BY status_date DESC;

To find active items for an applicant:

SELECT item_code, item_description, status_desc,
       required_for_application, freq_attempt, max_attempt
FROM   apps.igf_ap_td_item_inst_v
WHERE  person_id = :p_person_id
AND    inactive_flag = 'N';

To review preferred lender relationships on To Do items:

SELECT base_id, item_code, status_desc,
       relationship_cd, relationship_cd_desc
FROM   apps.igf_ap_td_item_inst_v
WHERE  clprl_id IS NOT NULL;

Because it resolves lookup meanings inline, the view is well suited for ad hoc reporting and interface extraction within the Financial Aid module.