Search Results s_phone
Overview
APPS.IGF_SL_DL_PNOTE_S_P is a multi-org view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 application schema, registered under FND Design Data as IGF.IGF_SL_DL_PNOTE_S_P and holding VALID status in the ETRM repository. It belongs to the Oracle Student Financial Aid (IGF) product family and exposes promissory note (PNOTE) data associated with student loan disbursements and borrower records. The "_S_P" suffix indicates that this is a secured, multi-org filtered view — Oracle EBS creates a synonym/secure view layer over an underlying "_ALL" table so that queries automatically restrict rows to the current operating unit identified by ORG_ID, ignoring data belonging to other operating units. This design is standard for EBS entities that are partitioned by operating unit and reinforces the Multi-Org Access Control (MOAC) model.
Functionally, the view presents borrower personal data (name, SSN, date of birth, driver license attributes, permanent address, email, and phone) joined to loan and batch identifiers, making it suitable for reporting, printing, and integration scenarios involving Federal Direct Loan or similar student lending promissory notes. The presence of the request/program context columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) indicates the view is populated or refreshed via concurrent program processing, consistent with EBS batch loading conventions.
Underlying Base Objects
The documented dependency chain shows that APPS.IGF_SL_DL_PNOTE_S_P references the base table APPS.IGF_SL_DL_PNOTE_S_P_ALL. In EBS multi-org architecture, the "_ALL" table stores records for every operating unit, carrying an ORG_ID column, while the "_S_P" secured view applies the MOAC predicate against ORG_ID so that only the currently-selected operating unit's rows are visible. The view is further referenced by APPS.IGF_SL_DL_PNOTE_S_P_V and by the concurrent program object IGF_SL_DL_PRINT_PNOTE, indicating that the promissory note print concurrent program reads from this layered view to obtain borrower data. ETRM documents the view's query text as a straight SELECT of ROW_ID-based column list from the APPS schema, with no documented additional joins or aggregations.
Key Columns
- ROW_ID (ROWID): Physical row address pseudo-column, useful for locating the base table record.
- PNSP_ID (NUMBER): Primary identifier for the promissory note record.
- BATCH_SEQ_NUM, LOAN_ID, LOAN_NUMBER: Batch sequencing and loan identifiers linking the promissory note to a specific student loan.
- PERSON_ID: Foreign key to the Oracle person/party record for the borrower.
- S_SSN, S_FIRST_NAME, S_LAST_NAME, S_MIDDLE_NAME, S_DATE_OF_BIRTH: Sensitive borrower identity attributes; the "S_" prefix denotes secured subject data.
- S_LICENSE_NUM, S_LICENSE_STATE: Driver license number and issuing state.
- S_PERMT_ADDR1, S_PERMT_ADDR2, S_PERMT_CITY, S_PERMT_STATE, S_PERMT_ZIP: Borrower permanent address components.
- S_EMAIL_ADDR, S_PHONE: Borrower contact details; S_PHONE is the column most likely matched by the search term "s_phone" (VARCHAR2(100)).
- STATUS: Current promissory note processing status.
- ORG_ID: Operating unit identifier driving the multi-org filter.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN: Standard EBS audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE: Concurrent program context columns.
Common Use Cases and Queries
This view is typically queried to extract borrower promissory note information for printing, reconciliation, or downstream reporting within the current operating unit. A representative query retrieving borrower phone and loan details follows:
SELECT PNSP_ID, LOAN_NUMBER, S_FIRST_NAME, S_LAST_NAME, S_PHONE, S_EMAIL_ADDR, STATUS FROM APPS.IGF_SL_DL_PNOTE_S_P WHERE LOAN_NUMBER = :loan_number;SELECT PNSP_ID, S_SSN, S_PERMT_ADDR1, S_PERMT_CITY, S_PERMT_STATE, S_PERMT_ZIP FROM APPS.IGF_SL_DL_PNOTE_S_P WHERE PERSON_ID = :person_id;SELECT PNSP_ID, BATCH_SEQ_NUM, LOAN_ID, S_PHONE FROM APPS.IGF_SL_DL_PNOTE_S_P WHERE REQUEST_ID = :request_id ORDER BY BATCH_SEQ_NUM;
Because ORG_ID filtering is implicit in the "_S_P" layer, callers do not need to add the ORG_ID predicate manually, provided the correct operating unit context is set through the EBS MOAC framework. Direct ad-hoc queries should set the client identifier or operating unit context to avoid returning misleading row sets.
-
VIEW: APPS.IGF_SL_DL_PNOTE_S_P
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_S_P, object_name:IGF_SL_DL_PNOTE_S_P, status:VALID,
-
VIEW: APPS.IGF_SL_DL_PNOTE_S_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_S_P_V, object_name:IGF_SL_DL_PNOTE_S_P_V, status:VALID,
-
VIEW: APPS.IGF_SL_PRK_LOAN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PRK_LOAN_V, object_name:IGF_SL_PRK_LOAN_V, status:VALID,
-
View: IGF_SL_DL_PNOTE_S_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_S_P_V, object_name:IGF_SL_DL_PNOTE_S_P_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_PNOTE_S_P_V ,
-
VIEW: APPS.IGF_SL_DL_PNOTE_P_P
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_P_P, object_name:IGF_SL_DL_PNOTE_P_P, status:VALID,
-
TABLE: IGF.IGF_SL_DL_PNOTE_S_P_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_PNOTE_S_P_ALL, object_name:IGF_SL_DL_PNOTE_S_P_ALL, status:VALID,
-
VIEW: APPS.IGF_SL_DL_PNOTE_P_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_P_P_V, object_name:IGF_SL_DL_PNOTE_P_P_V, status:VALID,
-
View: IGF_SL_PRK_LOAN_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores Perkins Loan information for student in financial aid , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_PNOTE_S_P_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_PNOTE_S_P
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_PNOTE_S_P
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_S_P, object_name:IGF_SL_DL_PNOTE_S_P, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_PNOTE_S_P ,
-
View: IGF_SL_PRK_LOAN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PRK_LOAN_V, object_name:IGF_SL_PRK_LOAN_V, status:VALID, product: IGF - Financial Aid , description: Stores Perkins Loan information for student in financial aid , implementation_dba_data: APPS.IGF_SL_PRK_LOAN_V ,
-
View: IGF_SL_DL_PNOTE_P_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_P_P_V, object_name:IGF_SL_DL_PNOTE_P_P_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_PNOTE_P_P_V ,
-
View: IGF_SL_DL_PNOTE_P_P
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_P_P, object_name:IGF_SL_DL_PNOTE_P_P, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_PNOTE_P_P ,
-
View: IGF_SL_DL_PNOTE_P_P_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_PNOTE_P_P
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_SL_DL_PNOTE_P_P_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_PNOTE_P_P_ALL, object_name:IGF_SL_DL_PNOTE_P_P_ALL, status:VALID,
-
APPS.IGF_SL_DL_PNOTE_S_P_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_DL_PNOTE_P_P_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PNOTE_S_P_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PNOTE_P_P_PKG
12.1.1
-
APPS.IGF_SL_DL_PNOTE_S_P_PKG dependencies on IGF_SL_DL_PNOTE_S_P_ALL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,