Search Results igs_pr_css_class_std_id
Overview
The IGS.IGS_PR_CSS_CLASS_STD table is a core configuration entity within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) product. It functions as a mapping table that defines the criteria for awarding academic class standings (e.g., First Class, Second Class) to students. Its primary role is to store the relationship between a defined class standing schedule, specific class standing codes, and the qualifying academic parameters. The table establishes the rules by which a student's cumulative credit points and academic years of study are evaluated against minimum and maximum thresholds to determine an appropriate class standing for a given program type and period.
Key Information Stored
The table stores the rule definitions for class standing calculations. The IGS_PR_CSS_CLASS_STD_ID column serves as the unique system-generated identifier for each mapping record. The IGS_PR_CS_SCHDL_ID and IGS_PR_CLASS_STD_ID are foreign keys that link to the parent schedule (IGS_PR_CS_SCHDL) and the specific class standing code (IGS_PR_CLASS_STD) respectively. The core business logic is encapsulated in the MIN_CP and MAX_CP columns, which define the inclusive credit point range, and the ACAD_YEAR column, which specifies the applicable number of academic years. Standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) track audit information for each row.
Common Use Cases and Queries
This table is central to automated class standing determination during academic processes like graduation eligibility checks or academic audits. A common operational query involves retrieving all class standing rules for a specific schedule to review or maintain thresholds. For reporting, a join is typically performed to translate foreign key IDs into meaningful descriptions from related tables.
Sample Query to List All Mappings with Descriptions:
- SELECT css.IGS_PR_CSS_CLASS_STD_ID,
- sch.SCHEDULE_NAME,
- std.CLASS_STANDING,
- css.MIN_CP,
- css.MAX_CP,
- css.ACAD_YEAR
- FROM IGS.IGS_PR_CSS_CLASS_STD css,
- IGS.IGS_PR_CS_SCHDL sch,
- IGS.IGS_PR_CLASS_STD std
- WHERE css.IGS_PR_CS_SCHDL_ID = sch.IGS_PR_CS_SCHDL_ID
- AND css.IGS_PR_CLASS_STD_ID = std.IGS_PR_CLASS_STD_ID
- ORDER BY sch.SCHEDULE_NAME, css.MIN_CP;
Related Objects
The IGS_PR_CSS_CLASS_STD table exists within a defined hierarchy and is referenced by other modules. Its primary relationships, as documented, are:
- Referenced Parent Tables (Foreign Keys):
- IGS.IGS_PR_CS_SCHDL: Via the IGS_PR_CS_SCHDL_ID column. This is the parent Class Standing Schedule.
- IGS.IGS_PR_CLASS_STD: Via the IGS_PR_CLASS_STD_ID column. This is the parent Class Standing code definition.
- Referencing Child Objects:
- IGF_AP_CLASS_STD_MAP: The column IGS_PR_CSS_CLASS_STD_ID in this table references IGS_PR_CSS_CLASS_STD. This links class standing rules to financial aid (IGF) components.
- Primary Key Constraint: The business key ensuring unique combination of schedule and class standing is enforced by IGS_PR_CSS_CLASS_STD_UK on (IGS_PR_CS_SCHDL_ID, IGS_PR_CLASS_STD_ID).
-
APPS.IGS_PR_CSS_CLASS_STD_PKG dependencies on IGS_PR_CSS_CLASS_STD
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,
-
TABLE: IGF.IGF_AP_CLASS_STD_MAP
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_CLASS_STD_MAP, object_name:IGF_AP_CLASS_STD_MAP, status:VALID,
-
APPS.IGF_AP_CLASS_STD_MAP_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_CLASS_STD_MAP_PKG dependencies on IGF_AP_CLASS_STD_MAP
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: 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_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: APPS.IGF_AP_CLASS_STD_MAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CLASS_STD_MAP_V, object_name:IGF_AP_CLASS_STD_MAP_V, status:VALID,
-
APPS.IGS_PR_CSS_CLASS_STD_PKG SQL Statements
12.1.1
-
View: IGF_AP_CLASS_STD_MAP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds the Class Standing mapping of OSS User defined class standing to Financial Aid class standing (Grade Level Code) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_CLASS_STD_MAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CLASS_STD_MAP_V, object_name:IGF_AP_CLASS_STD_MAP_V, status:VALID, product: IGF - Financial Aid , description: Holds the Class Standing mapping of OSS User defined class standing to Financial Aid class standing (Grade Level Code) , implementation_dba_data: APPS.IGF_AP_CLASS_STD_MAP_V ,
-
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 ,
-
PACKAGE BODY: APPS.IGF_AP_CLASS_STD_MAP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PR_CSS_CLASS_STD_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
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'. ,