Search Results school_applying_to
Overview
The IGS_AD_SCHL_APLY_TO table is a core reference data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) product, as indicated by the IGS schema. This table functions as a master list or lookup table that stores the distinct schools or educational institutions to which a student can apply. Its primary role is to maintain a centralized, organization-specific catalog of potential destination schools, enabling consistent data entry and validation across the admissions and student lifecycle modules. The table's design supports multi-org structures through the ORG_UNIT_CD column, allowing the same school entity to be configured differently or have distinct operational statuses across various business units within the institution.
Key Information Stored
The table's structure is designed to capture essential identifying and descriptive information for each school record, along with standard audit details. The critical columns are:
- SCH_APL_TO_ID (NUMBER): The system-generated, unique primary key identifier for each record. This is the column referenced by the user's search term and is used as a foreign key in transactional tables.
- SCHOOL_APPLYING_TO (VARCHAR2): The name of the school or institution.
- DESCRIPTION (VARCHAR2): A more detailed explanation or note about the school.
- ORG_UNIT_CD (VARCHAR2): The identifier for the organizational unit, enforcing the multi-org context for the record.
- CLOSED_IND (VARCHAR2): A status flag indicating whether the record is active ('N') or inactive/closed ('Y') for future use, a common soft-delete mechanism.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, etc.): Audit columns tracking the user and timestamp for record creation and last update.
Common Use Cases and Queries
This table is primarily referenced during application processing and reporting. A common operational use case is populating a list of values (LOV) for a "School Applying To" field on a student application form, filtered by the user's organization and active status. For data validation and reporting, administrators often query this master table to reconcile or audit transactional data. Sample queries include retrieving all active schools for a specific org unit or identifying applications linked to a school that has since been closed.
-- Retrieve all active schools for organization 'MAIN' SELECT sch_apl_to_id, school_applying_to, description FROM igs.igs_ad_schl_aply_to WHERE org_unit_cd = 'MAIN' AND closed_ind = 'N' ORDER BY school_applying_to; -- Find the count of applications staged per school SELECT s.school_applying_to, COUNT(a.sch_apl_to_id) AS application_count FROM igs.igs_ad_schl_aply_to s LEFT JOIN igs.igs_ss_app_pgm_stg a ON s.sch_apl_to_id = a.sch_apl_to_id WHERE s.closed_ind = 'N' GROUP BY s.school_applying_to;
Related Objects
The IGS_AD_SCHL_APLY_TO table serves as a parent reference table within the data model. Its primary key (SCH_APL_TO_ID) is referenced as a foreign key to ensure data integrity in related transactional tables. Based on the provided dependency and relationship data:
- Primary Key Constraint: IGS_AD_SCHL_APLY_TO_PK on the SCH_APL_TO_ID column.
- Referencing Object (Foreign Key):
- TABLE: IGS.IGS_SS_APP_PGM_STG: The SCH_APL_TO_ID column in this table references IGS_AD_SCHL_APLY_TO.SCH_APL_TO_ID. This indicates that records in the application program staging table are linked to a valid school from this master list.
-
APPS.IGS_AD_SCHL_APLY_TO_PKG dependencies on IGS_AD_SCHL_APLY_TO
12.1.1
-
TABLE: IGS.IGS_AD_SCHL_APLY_TO
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_SCHL_APLY_TO, object_name:IGS_AD_SCHL_APLY_TO, status:VALID,
-
VIEW: APPS.IGS_AD_SCHL_APLY_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SCHL_APLY_TO_V, object_name:IGS_AD_SCHL_APLY_TO_V, status:VALID,
-
Table: IGS_AD_SCHL_APLY_TO
12.2.2
product: IGS - Student System (Obsolete) , description: Stores information of school applied under different organization , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_SCHL_APLY_TO
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_SCHL_APLY_TO, object_name:IGS_AD_SCHL_APLY_TO, status:VALID, product: IGS - Student System , description: Stores information of school applied under different organization , implementation_dba_data: IGS.IGS_AD_SCHL_APLY_TO ,
-
APPS.IGS_AD_SCHL_APLY_TO_PKG SQL Statements
12.1.1
-
View: IGS_AD_SCHL_APLY_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SCHL_APLY_TO_V, object_name:IGS_AD_SCHL_APLY_TO_V, status:VALID, product: IGS - Student System , description: This view is a base view to display all records from IGS_AD_SCHOOL_APPLY_TO table , implementation_dba_data: APPS.IGS_AD_SCHL_APLY_TO_V ,
-
View: IGS_AD_SCHL_APLY_TO_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is a base view to display all records from IGS_AD_SCHOOL_APPLY_TO table , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_IN_ENQUIRY_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL_V, object_name:IGS_IN_ENQUIRY_APPL_V, status:VALID,
-
View: IGR_I_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_APPL_V, object_name:IGR_I_APPL_V, status:VALID, product: IGS - Student System , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGR_I_APPL_ALL junction table. , implementation_dba_data: APPS.IGR_I_APPL_V ,
-
View: IGS_IN_ENQUIRY_APPL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_IN_ENQUIRY_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_ENQUIRY_APPL_V, object_name:IGS_IN_ENQUIRY_APPL_V, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGS_IN_ENQUIRY_APPL_V ,
-
VIEW: APPS.IGR_I_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_APPL_V, object_name:IGR_I_APPL_V, status:VALID,
-
View: IGS_RC_I_APPL_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGS_RC_I_APPL_ALL junction table. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RC_I_APPL_V
12.1.1
product: IGS - Student System , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGS_RC_I_APPL_ALL junction table. , implementation_dba_data: Not implemented in this database ,
-
View: IGR_I_APPL_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGR_I_APPL_ALL junction table. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_SCHL_APLY_TO_PKG
12.1.1
-
View: IGSFV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ADM_PS_APPL_INST, object_name:IGSFV_AD_ADM_PS_APPL_INST, status:VALID, product: IGS - Student System , description: Describes the request for program Entry for an Admission period , implementation_dba_data: APPS.IGSFV_AD_ADM_PS_APPL_INST ,
-
View: IGSFV_AD_ADM_PS_APPL_INST
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the request for program Entry for an Admission period , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ADM_PS_APPL_INST, object_name:IGSFV_AD_ADM_PS_APPL_INST, status:VALID,
-
View: IGS_AD_PS_APPL_INST_APLINST_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PS_APPL_INST. Incorporates alternate codes and calendar instance start and end dates for both the Admission and Deferred Admission calendars. Also incorporates Admission Course Application details. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APPL_INST_APLINST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_APLINST_V, object_name:IGS_AD_PS_APPL_INST_APLINST_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST. Incorporates alternate codes and calendar instance start and end dates for both the Admission and Deferred Admission calendars. Also incorporates Admission Course Application details. , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_APLINST_V ,
-
VIEW: APPS.IGS_AD_PS_APPL_INST_APLINST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_APLINST_V, object_name:IGS_AD_PS_APPL_INST_APLINST_V, status:VALID,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,