Search Results ytdds_id
Overview
The view IGFFV_PELL_YTD_DISBURSEMENTS is a full-view object defined within the Oracle E-Business Suite Financial Aid module (IGF). Its documented purpose is to expose the entity that holds year-to-date (YTD) disbursement data, presenting a denormalized, read-only projection over the underlying YTD disbursement records. The view is classified as obsolete within the ETRM documentation, and the metadata explicitly states that it is "Not implemented in this database." This status is significant: while the view definition remains available as reference material, it is not instantiated or supported in the current 12.1.1 / 12.2.2 environment, and consumers should not assume its availability at runtime.
The object carries the designation "Full View," indicating that it surfaces the complete column set of the base entity rather than a restricted subset. In the context of financial aid processing and third-party Pell Grant reporting, such views historically served as stable integration surfaces, allowing downstream reporting tools, extracts, and custom extensions to read disbursement data without binding directly to the transactional table structure.
Underlying Base Objects
The view text confirms that IGFFV_PELL_YTD_DISBURSEMENTS is defined over a single base object: IGF_GR_YTD_DISBURSEMENTS_ALL, aliased as YTDDS. All columns in the SELECT list are drawn from this table. The query is declared WITH READ ONLY, enforcing non-modifiable access semantics; no DML is possible through it.
Notably, the ETRM "Documented view metadata" section records no referenced base objects, and the owner field is blank. This omission reflects the view's obsolete and unimplemented status rather than a true absence of a defining table; the view text itself provides the authoritative relationship. The naming convention is consistent with EBS Financial Aid views, where the _ALL suffix on the base table signals a multi-organization or partitioned data structure.
Key Columns
The view exposes the full YTD disbursement record set. Primary and business-critical columns include:
- YTDDS_ID — The system identifier for the year-to-date disbursement record and the column referenced by the user's search term. It functions as the surrogate primary key for the entity.
- DISBURSEMENT_REFERENCE_NUMBER — The disbursement reference number, mapped from DISB_REF_NUM.
- DISBURSEMENT_ACCPTED_AMOUNT — The accepted disbursement amount, mapped from DISB_ACCPT_AMT.
- DEBIT_CREDIT_FLAG — Indicates whether the entry is a debit or credit, mapped from DB_CR_FLAG.
- DISBURSEMENT_DATE — The date the disbursement occurred, mapped from DISB_DT.
- PAYMENT_PERD_START_DATE — The start date of the applicable payment period.
- DISBURSEMENT_BATCH_ID — Identifier linking the record to its originating disbursement batch process.
- ORIGINATION_ID — Identifier for the origination record associated with the disbursement.
- INST_CROSS_REF_CODE — The institution cross-reference code.
- "_LA:ACTION_CODE" — A lookup-label descriptor that resolves to a meaningful action code description via
IGF_LOOKUPS_VIEWusing lookup typeIGF_GR_ACTION_CODE. - Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
Common Use Cases and Queries
Because the view is read-only and unimplemented in the current 12.1.1 / 12.2.2 database, its historical use cases are primarily reconciliation and reporting against the base table when the view existed. A representative query retrieving YTD disbursement activity by batch would take the following form:
SELECT ytdds_id, disbursement_reference_number, disbursement_accpted_amount, debit_credit_flag, disbursement_date, disbursement_batch_id FROM igffv_pell_ytd_disbursements WHERE disbursement_batch_id = :p_batch ORDER BY disbursement_date;
For a YTD amount total by origination, the following aggregation applies:
SELECT origination_id, SUM(disbursement_accpted_amount) ytd_accepted FROM igffv_pell_ytd_disbursements GROUP BY origination_id;
Administrators validating the object's status in 12.1.1 or 12.2.2 may query ALL_VIEWS or DBA_VIEWS for the view name to confirm precedence. Given the obsolete classification, the recommended approach is to query IGF_GR_YTD_DISBURSEMENTS_ALL directly, applying equivalent column projections and read-only access to achieve the same reporting outcome.
-
View: IGFFV_PELL_YTD_DISBURSEMENTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the information about the year to date disbursement data , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFFV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_YTD_DISBURSEMENTS, object_name:IGFFV_PELL_YTD_DISBURSEMENTS, status:VALID,
-
TABLE: IGF.IGF_GR_YTD_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_YTD_DISB_ALL, object_name:IGF_GR_YTD_DISB_ALL, status:VALID,
-
VIEW: APPS.IGFBV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_YTD_DISBURSEMENTS, object_name:IGFBV_PELL_YTD_DISBURSEMENTS, status:VALID,
-
Table: IGF_GR_YTD_DISB_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the year to date disbursement data , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_GR_YTD_DISB_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_YTD_DISB_ALL, object_name:IGF_GR_YTD_DISB_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the year to date disbursement data , implementation_dba_data: IGF.IGF_GR_YTD_DISB_ALL ,
-
View: IGFFV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_YTD_DISBURSEMENTS, object_name:IGFFV_PELL_YTD_DISBURSEMENTS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the information about the year to date disbursement data , implementation_dba_data: APPS.IGFFV_PELL_YTD_DISBURSEMENTS ,
-
View: IGFBV_PELL_YTD_DISBURSEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_YTD_DISBURSEMENTS, object_name:IGFBV_PELL_YTD_DISBURSEMENTS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the information about the year to date disbursement data , implementation_dba_data: APPS.IGFBV_PELL_YTD_DISBURSEMENTS ,
-
View: IGFBV_PELL_YTD_DISBURSEMENTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the information about the year to date disbursement data , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_GR_YTD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_YTD_DISB, object_name:IGF_GR_YTD_DISB, status:VALID,
-
View: IGF_GR_YTD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_YTD_DISB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_YTD_DISB, object_name:IGF_GR_YTD_DISB, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_YTD_DISB ,
-
APPS.IGF_GR_YTD_DISB_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_YTD_DISB_PKG
12.1.1
-
APPS.IGF_GR_YTD_DISB_PKG dependencies on IGF_GR_YTD_DISB_ALL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,