Results for “igf_td_item_status”

15 results




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

Overview

APPS.IGF_AP_TD_ITEM_INST_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, residing in the IGF (Oracle Student System / Financial Aid) application schema. It presents the instance-level state of "to-do" items associated with a financial aid applicant's base record, joining each item instance against its item master definition, its decoded status meaning, preferred lender information, and the underlying applicant base record. The view is the canonical surface through which the operational status of a to-do checklist item, such as "Submit Verification Worksheet" or "Complete Master Promissory Note," is exposed for inquiry, reporting, and downstream processing.

The view is particularly relevant when a user searches for igf_td_item_status, since it resolves that lookup type explicitly: status codes stored on the item instance are decoded through IGF_LOOKUPS_VIEW using LOOKUP_TYPE = 'IGF_TD_ITEM_STATUS', producing a human-readable STATUS_DESC. This makes the view suitable for both end-user reporting and programmatic consumption.

Underlying Base Objects

The view is defined over five objects through an inner-join structure with one outer join:

All joins except the preferred-lender join are inner joins, so a row is returned only where a matching master item, valid lookup, and applicant base record exist.

Key Columns

Common Use Cases and Queries

Typical scenarios include outstanding-item reporting per applicant, status trending, and lender-affiliation checks. A representative query lists outstanding items for a person:

SELECT base_id, person_id, item_code, item_description,
       status, status_desc, status_date
FROM   apps.igf_ap_td_item_inst_v
WHERE  person_id = :p_person_id
AND    inactive_flag = 'N'
ORDER BY status_date;

A second common pattern aggregates items by decoded status to produce workload summaries:

SELECT status_desc, COUNT(*) item_count
FROM   apps.igf_ap_td_item_inst_v
WHERE  required_for_application = 'Y'
GROUP BY status_desc;

Because STATUS_DESC is sourced from the IGF_TD_ITEM_STATUS lookup, the view is the recommended access path whenever item status interpretation is required, avoiding the need to re-implement lookup decoding in custom SQL.