Search Results sch_apl_to_id
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.
-
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,
-
APPS.IGS_AD_SCHL_APLY_TO_PKG dependencies on IGS_AD_SCHL_APLY_TO
12.1.1
-
APPS.IGS_PRECREATE_APPL_PUB dependencies on IGS_AD_SCHL_APLY_TO
12.1.1
-
APPS.IGR_IMP_003 dependencies on IGS_AD_SCHL_APLY_TO
12.1.1
-
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 ,
-
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,
-
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: 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 ,
-
APPS.IGS_AD_SCHL_APLY_TO_PKG SQL Statements
12.1.1
-
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_SS_ADM_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_ADM_APPL, object_name:IGS_SS_ADM_APPL, status:VALID,
-
TABLE: IGS.IGS_SS_APP_PGM_STG_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_SS_APP_PGM_STG_ALL_OLD, status:VALID,
-
TABLE: IGS.IGS_AD_APPL_INT_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_APPL_INT_ALL_OLD, status:VALID,
-
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 ,
-
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 ,
-
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: APPS.IGR_I_APPL_V
12.1.1
-
TABLE: IGS.IGS_AD_PS_APPL_INST_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_PS_APPL_INST_INT_OLD, status:VALID,
-
View: IGS_SS_ADM_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_ADM_APPL, object_name:IGS_SS_ADM_APPL, status:VALID, product: IGS - Student System , description: An Admission Application Online View which stores all admission applications received online. , implementation_dba_data: APPS.IGS_SS_ADM_APPL ,
-
APPS.IGS_PRECREATE_APPL_PUB SQL Statements
12.1.1
-
View: IGS_SS_ADM_APPL
12.2.2
product: IGS - Student System (Obsolete) , description: An Admission Application Online View which stores all admission applications received online. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_SS_ADM_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADM_APPL_ALL, object_name:IGS_SS_ADM_APPL_ALL, status:VALID,
-
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,
-
PACKAGE BODY: APPS.IGS_AD_SCHL_APLY_TO_PKG
12.1.1
-
VIEW: APPS.IGS_AD_PS_APPL_INST_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_SV, object_name:IGS_AD_PS_APPL_INST_SV, status:VALID,
-
TABLE: IGS.IGS_SS_APP_PGM_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_APP_PGM_STG, object_name:IGS_SS_APP_PGM_STG, status:VALID,
-
APPS.IGS_AD_CANCEL_RECONSIDER dependencies on IGS_AD_PS_APPL_INST_ALL
12.1.1
-
View: IGS_AD_OUTCOME_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OUTCOME_LETTERS_V, object_name:IGS_AD_OUTCOME_LETTERS_V, status:VALID, product: IGS - Student System , description: The validations for the individual letters are placed at the SQLl query level that we attach to master document , implementation_dba_data: APPS.IGS_AD_OUTCOME_LETTERS_V ,
-
View: IGS_AD_PS_APPL_INST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST, object_name:IGS_AD_PS_APPL_INST, status:VALID,
-
View: IGS_AD_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST, object_name:IGS_AD_PS_APPL_INST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST ,
-
View: IGS_AD_PS_APPL_INST_SV
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PS_APPL_INST_ALL to secure the select operation on this table , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_CANCEL_RECONSIDER dependencies on IGS_AD_PS_APPL_INST
12.1.1
-
View: IGS_AD_PS_APPL_INST_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_SV, object_name:IGS_AD_PS_APPL_INST_SV, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST_ALL to secure the select operation on this table , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_SV ,
-
View: IGS_AD_OUTCOME_LETTERS_V
12.2.2
product: IGS - Student System (Obsolete) , description: The validations for the individual letters are placed at the SQLl query level that we attach to master document , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_CANCEL_RECONSIDER dependencies on IGS_AD_PS_APPL
12.1.1
-
APPS.IGS_PRECREATE_APPL_PUB dependencies on IGS_SS_APP_PGM_STG
12.1.1
-
TABLE: IGS.IGS_AD_PS_APPL_INST_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_INT, object_name:IGS_AD_PS_APPL_INST_INT, status:VALID,
-
APPS.IGS_AD_PS_APPL_INST_PKG SQL Statements
12.1.1
-
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 ,
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_APP_PGM_STG
12.1.1
-
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_OUTCOME_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OUTCOME_LETTERS_V, object_name:IGS_AD_OUTCOME_LETTERS_V, status:VALID,
-
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,
-
TABLE: IGS.IGS_AD_PS_APPL_INST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_ALL, object_name:IGS_AD_PS_APPL_INST_ALL, status:VALID,
-
APPS.IGR_IMP_003 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PRECREATE_APPL_PUB
12.1.1
-
APPS.IGS_AD_PS_APPL_INST_PKG dependencies on IGS_AD_PS_APPL_INST_ALL
12.1.1
-
APPS.IGR_IMP_003 dependencies on IGR_I_APPL_INT
12.1.1