Search Results igs_pr_class_std_id
Overview
The IGS_PR_CLASS_STD table is a core setup table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the IGS (Oracle's Higher Education product) module. Its primary role is to maintain the institution's master list of defined Class Standing values. Class Standing is a critical academic concept, often representing a student's progression level (e.g., Freshman, Sophomore, Junior, Senior) or academic rank based on completed credit hours. This table acts as a reference or lookup source, ensuring data integrity and consistency wherever class standing information is used across student academic records, progression rules, and reporting.
Key Information Stored
The table structure is designed to store both the business data and standard audit information. The key columns include:
- IGS_PR_CLASS_STD_ID (NUMBER): A system-generated, unique numeric identifier serving as the primary key for each record.
- CLASS_STANDING (VARCHAR2): A unique code, such as 'FR', 'SO', 'JR', 'SR', representing the class standing.
- DESCRIPTION (VARCHAR2): A textual description of the class standing code for clarity in user interfaces and reports.
- CLOSED_IND (VARCHAR2): A flag indicating whether the class standing code is active or closed for further use, supporting data retention without active selection.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Audit columns that track the user and timestamp for record creation and modification, as per Oracle EBS conventions.
Common Use Cases and Queries
This table is primarily referenced during student enrollment, academic advising, and progression auditing. Common operational and reporting scenarios include validating student class standing during course registration, determining eligibility for programs or honors, and generating demographic reports segmented by academic level. A fundamental query to retrieve all active class standings for a dropdown list would be:
SELECT CLASS_STANDING, DESCRIPTION FROM IGS.IGS_PR_CLASS_STD WHERE NVL(CLOSED_IND, 'N') = 'N' ORDER BY CLASS_STANDING;For technical integration or data validation, joining to related student progression tables often requires the unique identifier:
SELECT s.student_number, cs.description as current_class_standing
FROM igs_pe_student_base s,
igs_pr_stdnt_pr_ps sc,
igs.igs_pr_class_std cs
WHERE s.person_id = sc.person_id
AND sc.class_standing_id = cs.igs_pr_class_std_id
AND sc.progression_status = 'CURRENT';
Related Objects
Based on the provided metadata, the IGS_PR_CLASS_STD table is referenced by other objects within the APPS schema. While specific table names are not listed in the excerpt, it is a standard architectural pattern in Oracle EBS for transactional and student profile tables (e.g., those storing a student's current or historical class standing) to hold a foreign key reference to IGS_PR_CLASS_STD_ID. This setup ensures that all class standing data points throughout the system trace back to this centralized, controlled list. Developers and administrators should examine dependencies within the APPS schema to identify specific child tables, such as those within the IGS_PR (Progression) or IGS_EN (Enrollment) areas, for complete impact analysis.
-
TABLE: IGS.IGS_PR_CLASS_STD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_CLASS_STD, object_name:IGS_PR_CLASS_STD, status:VALID,
-
APPS.IGS_EN_GEN_LEGACY dependencies on IGS_PR_CLASS_STD
12.1.1
-
APPS.IGS_PR_CLASS_STD_PKG dependencies on IGS_PR_CLASS_STD
12.1.1
-
View: IGS_PR_RU_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_RU_APPL_V, object_name:IGS_PR_RU_APPL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_RU_APPL_V ,
-
VIEW: APPS.IGS_PR_CLASS_STD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_CLASS_STD_V, object_name:IGS_PR_CLASS_STD_V, status:VALID,
-
View: IGS_FI_STDNT_PS_ATT_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_STDNT_PS_ATT_CAT_V, object_name:IGS_FI_STDNT_PS_ATT_CAT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_STDNT_PS_ATT_CAT_V ,
-
View: IGS_EN_STDNT_PS_ATT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the secured rows in the student program attempt table. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PR_RU_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_RU_APPL, object_name:IGS_PR_RU_APPL, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_RU_APPL ,
-
APPS.IGS_EN_SPA_LGCY_PUB dependencies on IGS_PR_CLASS_STD
12.1.1
-
View: IGS_FI_STDNT_PS_ATT_CAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_SV
12.1.1
-
TABLE: IGS.IGS_PR_CSS_CLASS_STD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_CSS_CLASS_STD, object_name:IGS_PR_CSS_CLASS_STD, status:VALID,
-
APPS.IGS_PR_RU_APPL_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_PR_GET_CLASS_STD dependencies on IGS_PR_CLASS_STD
12.1.1
-
View: IGS_EN_STDNT_PS_ATT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_SV, object_name:IGS_EN_STDNT_PS_ATT_SV, status:VALID, product: IGS - Student System , description: This view contains the secured rows in the student program attempt table. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT_SV ,
-
View: IGS_PR_RU_APPL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_SDT_PR_RU_CK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_SDT_PR_RU_CK_V, object_name:IGS_PR_SDT_PR_RU_CK_V, status:VALID,
-
APPS.IGS_PR_CSS_CLASS_STD_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_PR_RU_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_RU_APPL_V, object_name:IGS_PR_RU_APPL_V, status:VALID,
-
APPS.IGS_PR_GET_CLASS_STD dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
VIEW: APPS.IGS_PR_RU_APPL_V
12.1.1
-
APPS.IGS_PR_CSS_CLASS_STD_PKG dependencies on IGS_PR_CSS_CLASS_STD
12.1.1
-
Table: IGS_PR_CSS_CLASS_STD
12.2.2
product: IGS - Student System (Obsolete) , description: Maintains the Class Standing mapping for the credit point range and the academic years for each program type and a period , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_STDNT_PS_ATT_CAT_V
12.1.1
-
View: IGS_PR_RU_APPL
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the data of student attempts for a given specific program structure. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT, object_name:IGS_EN_STDNT_PS_ATT, status:VALID, product: IGS - Student System , description: This view contains the data of student attempts for a given specific program structure. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT ,
-
VIEW: APPS.IGS_PR_RU_APPL
12.1.1
-
VIEW: APPS.IGS_PR_RU_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_RU_APPL, object_name:IGS_PR_RU_APPL, status:VALID,
-
APPS.IGS_PR_CLASS_STD_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AS_SCA_H_V
12.1.1
-
View: IGS_AS_SCA_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge student course attempt history with the current student course attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time peri , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PR_CLASS_STD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_CLASS_STD, object_name:IGS_PR_CLASS_STD, status:VALID, product: IGS - Student System , description: Maintains the institution defined Class Standing set-up values , implementation_dba_data: IGS.IGS_PR_CLASS_STD ,
-
View: IGS_PR_CSS_CLASS_STD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the Class Standing schedule mapping , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PR_CSS_CLASS_STD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_CSS_CLASS_STD_V, object_name:IGS_PR_CSS_CLASS_STD_V, status:VALID, product: IGS - Student System , description: Shows the Class Standing schedule mapping , implementation_dba_data: APPS.IGS_PR_CSS_CLASS_STD_V ,
-
Table: IGS_PR_CSS_CLASS_STD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_CSS_CLASS_STD, object_name:IGS_PR_CSS_CLASS_STD, status:VALID, product: IGS - Student System , description: Maintains the Class Standing mapping for the credit point range and the academic years for each program type and a period , implementation_dba_data: IGS.IGS_PR_CSS_CLASS_STD ,
-
View: IGS_PR_SDT_PR_RU_CK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_SDT_PR_RU_CK_V, object_name:IGS_PR_SDT_PR_RU_CK_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_SDT_PR_RU_CK_V ,
-
APPS.IGS_PR_GET_CLASS_STD dependencies on IGS_PS_VER
12.1.1
-
VIEW: APPS.IGS_PR_CSS_CLASS_STD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_CSS_CLASS_STD_V, object_name:IGS_PR_CSS_CLASS_STD_V, status:VALID,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT
12.1.1
-
View: IGS_PR_CLASS_STD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_CLASS_STD_V, object_name:IGS_PR_CLASS_STD_V, status:VALID, product: IGS - Student System , description: Shows details of the Class Standing , implementation_dba_data: APPS.IGS_PR_CLASS_STD_V ,
-
APPS.IGS_PR_GET_CLASS_STD SQL Statements
12.1.1
-
View: IGS_PR_CLASS_STD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Shows details of the Class Standing , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SCA_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCA_H_V, object_name:IGS_AS_SCA_H_V, status:VALID, product: IGS - Student System , description: This view is used to merge student course attempt history with the current student course attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time peri , implementation_dba_data: APPS.IGS_AS_SCA_H_V ,
-
APPS.IGS_EN_SU_ATTEMPT_PKG dependencies on FND_PROFILE
12.1.1
-
Table: IGS_PR_CLASS_STD
12.2.2
product: IGS - Student System (Obsolete) , description: Maintains the institution defined Class Standing set-up values , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SC_ATTEMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H, object_name:IGS_AS_SC_ATTEMPT_H, status:VALID,
-
View: IGS_PR_SDT_PR_RU_CK_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSBV_STUDENT_PROGRAM_ATTEMPTS, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: APPS.IGSBV_STUDENT_PROGRAM_ATTEMPTS ,
-
APPS.IGS_PR_RU_APPL_PKG dependencies on IGS_PR_RU_APPL_ALL
12.1.1