Search Results current_ssn_txt
Overview
IGF_GR_YTD_DISB is a reporting view owned by the APPS schema within the IGF (Financial Aid) product family of Oracle E-Business Suite, available in both 12.1.1 and 12.2.2. The view presents year-to-date disbursement activity associated with financial aid origination records, consolidating disbursement reference data, acceptance amounts, payment period dates, and student identifiers into a single queryable structure. Its primary role is to support reporting and integration requirements where disbursement history must be retrieved in a flattened, business-friendly form rather than through direct joins against the underlying transaction tables. The view is defined as a secured query, applying an organization-level filter derived from the session's CLIENT_INFO context, which restricts returned rows to the operating unit currently in scope. This makes it suitable for use within Oracle Forms-based inquiries, concurrent program extracts, and external integrations that expect operating-unit-aware results without having to implement multi-org security logic themselves. The inclusion of columns such as CURRENT_SSN_TXT, STUDENT_NAME, and STUDENT_BIRTH_DATE reflects the view's orientation toward student-level compliance and reconciliation reporting.
Underlying Base Objects
The view is defined over a single documented base object: IGF_GR_YTD_DISB_ALL, aliased as GRYTDDB in the view text. IGF_GR_YTD_DISB_ALL is the multi-org (partitioned by ORG_ID) table that stores year-to-date disbursement records for financial aid grant and loan processing. Because the _ALL table carries the ORG_ID column, the view applies a predicate that evaluates the first ten characters of USERENV('CLIENT_INFO') and compares it against GRYTDDB.ORG_ID, with NVL handling to default unresolved context to -99. Queries against IGF_GR_YTD_DISB therefore return only records belonging to the current operating unit established by the client session. The view does not appear to join to additional tables, so all attributes are sourced directly from IGF_GR_YTD_DISB_ALL. The ROW_ID column is populated from the base table's ROWID, providing a stable identifier for row-level operations or drill-down navigation.
Key Columns
- YTDDS_ID — Primary identifier for the year-to-date disbursement record.
- ORIGINATION_ID — Links the disbursement to its originating financial aid award or loan record.
- CURRENT_SSN_TXT — Text representation of the student's Social Security Number, commonly used in compliance extracts, 1098-T style reporting, and reconciliation files where the SSN must be rendered as character data.
- STUDENT_NAME, STUDENT_BIRTH_DATE — Student identity attributes supporting demographic reporting and matching.
- DISB_REF_NUM, DISB_SEQ_NUM, PREV_DISB_SEQ_NUM, DISB_REL_IND — Disbursement reference and sequencing information used to trace payment releases and releases.
- DISB_ACCPT_AMT, DB_CR_FLAG — Accepted disbursement amount and debit/credit indicator.
- DISB_DT, PYMT_PRD_START_DT, DISB_PROCESS_DATE — Disbursement, payment period, and processing dates.
- ROUTING_ID_TXT, ATTEND_ENTITY_ID_TXT — Text fields for routing and attending entity identifiers.
- ORG_ID — Operating unit; drives the view's security predicate.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include year-to-date disbursement reconciliation, SSN-based student matching, and multi-org disbursement extracts. A representative query retrieving disbursements for a given origination follows:
SELECT ytdds_id, origination_id, disb_ref_num, disb_acpt_amt, disb_dt, current_ssn_txt, student_name
FROM apps.igf_gr_ytd_disb
WHERE origination_id = :p_origination_id
ORDER BY disb_seq_num;
To list all year-to-date activity for a student identified by SSN within the current operating unit:
SELECT student_name, disb_ref_num, disb_acpt_amt, disb_dt, db_cr_flag
FROM apps.igf_gr_ytd_disb
WHERE current_ssn_txt = :p_ssn
AND fin_award_year_num = :p_award_year;
Because the view enforces operating unit context via CLIENT_INFO, integrations executing outside an EBS Forms session must set the client info context, or alternatively query IGF_GR_YTD_DISB_ALL directly with an explicit ORG_ID predicate. For batch extracts, callers should also filter on DISB_PROCESS_DATE or DISB_DT ranges to bound result sets.
-
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 ,
-
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,
-
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: IGF_GR_YTD_DISB
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_GR_YTD_DISB_PKG SQL Statements
12.1.1
-
View: IGF_AP_ISIR_INTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INTS, object_name:IGF_AP_ISIR_INTS, status:VALID, product: IGF - Financial Aid , description: ISIR Interface view for holding ISIRs received from CPS , implementation_dba_data: APPS.IGF_AP_ISIR_INTS ,
-
VIEW: APPS.IGF_AP_ISIR_INTS
12.1.1
-
View: IGF_AP_ISIR_INTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: ISIR Interface view for holding ISIRs received from CPS , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_GR_YTD_DISB_PKG
12.1.1
-
TABLE: IGF.IGF_AP_LI_ISIR_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_LI_ISIR_INTS, object_name:IGF_AP_LI_ISIR_INTS, status:VALID,
-
APPS.IGF_AP_ISIR_GEN_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AP_ISIR_INTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INTS, object_name:IGF_AP_ISIR_INTS, status:VALID,
-
TABLE: IGF.IGF_AP_ISIR_INTS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_INTS_ALL, object_name:IGF_AP_ISIR_INTS_ALL, status:VALID,
-
APPS.IGF_AP_ISIR_GEN_PKG dependencies on IGF_AP_ISIR_INTS_ALL
12.1.1
-
APPS.IGF_AP_ISIR_GEN_PKG dependencies on IGF_AP_ISIR_INTS
12.1.1
-
APPS.IGF_AP_MATCHING_PROCESS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_ISIR_GEN_PKG
12.1.1
-
APPS.IGF_AP_MATCHING_PROCESS_PKG dependencies on IGF_AP_ISIR_MATCHED
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_LI_ISIR_IMP_PROC
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_MATCHING_PROCESS_PKG
12.1.1
-
APPS.IGF_AP_LI_ISIR_IMP_PROC dependencies on FND_MESSAGE
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,