Search Results s_assessment_type
Overview
The IGS_AS_SASSESS_TYPE table is a core reference table within the Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2, specifically for the Oracle Student Management (OSM) product, owned by the IGS schema. It serves as the master repository for system-defined assessment types, which provide the foundational functionality for institution-defined assessment types. The table's primary role is to define the universe of possible assessment categories (e.g., Assignment, Examination) that an educational institution can map its own custom assessment types to, thereby inheriting standardized system behavior and processing rules. It is a critical component for configuring and controlling the assessment lifecycle within the application.
Key Information Stored
The table stores the definition and control attributes for each system assessment type. The key columns are:
- S_ASSESSMENT_TYPE (PK): A unique 10-character code identifying the system-defined type (e.g., 'ASSIGNMENT', 'NONCENTRAL').
- DESCRIPTION: A descriptive name for the assessment type.
- CLOSED_IND: A control flag indicating if the system type is closed for further mapping. When set, institution-defined types cannot be linked to it.
- NON_CNTRL_EXAM_LOC_CD (FK): A conditional field used specifically for the 'NONCENTRAL' assessment type. It stores a location code (referencing IGS_AD_LOCATION_ALL) under which non-centrally administered examinations are grouped.
- Standard WHO Columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN for audit tracking.
Common Use Cases and Queries
This table is primarily referenced during setup and configuration, and for validation in transactional processes. A common use case is during the creation of an institution-defined assessment type in the front-end, where the application presents a list of open (CLOSED_IND = 'N') system types for mapping. For reporting and data validation, typical queries include listing all available system types or checking the configuration for non-central exams.
-- Retrieve all active system assessment types available for mapping
SELECT s_assessment_type,
description
FROM igs.igs_as_sassess_type
WHERE closed_ind = 'N'
ORDER BY 1;
-- Query details for the non-central exam type and its linked location
SELECT sat.s_assessment_type,
sat.description,
sat.non_cntrl_exam_loc_cd,
loc.location_name
FROM igs.igs_as_sassess_type sat,
igs.igs_ad_location_all loc
WHERE sat.s_assessment_type = 'NONCENTRAL'
AND sat.non_cntrl_exam_loc_cd = loc.location_cd(+);
Related Objects
The IGS_AS_SASSESS_TYPE table has defined relationships with other key tables in the OSM schema:
- Primary Key Reference: The table's primary key (S_ASSESSMENT_TYPE) is referenced by the IGS_AS_ASSESSMNT_TYP table. This is the primary relationship, where each institution-defined assessment type (in IGS_AS_ASSESSMNT_TYP) must be mapped to one valid system-defined type from this table.
- Foreign Key Reference: The NON_CNTRL_EXAM_LOC_CD column is a foreign key referencing the IGS_AD_LOCATION_ALL table. This relationship is specific to the 'NONCENTRAL' assessment type and provides the default location grouping for non-centrally managed examinations.
-
TABLE: IGS.IGS_AS_SASSESS_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SASSESS_TYPE, object_name:IGS_AS_SASSESS_TYPE, status:VALID,
-
VIEW: APPS.IGSFV_AS_ASSESSMENT_TYPES
12.1.1
-
APPS.IGS_AS_VAL_ATYP dependencies on IGS_AS_SASSESS_TYPE
12.1.1
-
APPS.IGS_AS_GEN_002 dependencies on IGS_AS_ASSESSMNT_ITM
12.1.1
-
APPS.IGS_AS_SASSESS_TYPE_PKG dependencies on IGS_AS_SASSESS_TYPE
12.1.1
-
APPS.IGS_AS_SASSESS_TYPE_PKG SQL Statements
12.1.1
-
APPS.IGS_AS_VAL_ATYP SQL Statements
12.1.1
-
Table: IGS_AS_SASSESS_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SASSESS_TYPE, object_name:IGS_AS_SASSESS_TYPE, status:VALID, product: IGS - Student System , description: Describes system-defined assessment types , implementation_dba_data: IGS.IGS_AS_SASSESS_TYPE ,
-
TABLE: IGS.IGS_AS_ASSESSMNT_TYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_ASSESSMNT_TYP, object_name:IGS_AS_ASSESSMNT_TYP, status:VALID,
-
View: IGSFV_AS_ASSESSMENT_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: Describes a student unit attempt outcome , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AS_SASSESS_TYPE
12.2.2
product: IGS - Student System (Obsolete) , description: Describes system-defined assessment types , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AS_GEN_006 dependencies on IGS_AS_GEN_002
12.1.1
-
View: IGSFV_AS_ASSESSMENT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_ASSESSMENT_TYPES, object_name:IGSFV_AS_ASSESSMENT_TYPES, status:VALID, product: IGS - Student System , description: Describes a student unit attempt outcome , implementation_dba_data: APPS.IGSFV_AS_ASSESSMENT_TYPES ,
-
View: IGS_AS_UNIT_ASSESSMENT_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UNIT_ASSESSMENT_ITEM_V, object_name:IGS_AS_UNIT_ASSESSMENT_ITEM_V, status:VALID, product: IGS - Student System , description: Created primarily for the assignment due dates summary report , implementation_dba_data: APPS.IGS_AS_UNIT_ASSESSMENT_ITEM_V ,
-
PACKAGE BODY: APPS.IGS_AS_SASSESS_TYPE_PKG
12.1.1
-
APPS.IGS_AS_SASSESS_TYPE_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
VIEW: APPS.IGS_AS_UNIT_ASSESSMENT_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UNIT_ASSESSMENT_ITEM_V, object_name:IGS_AS_UNIT_ASSESSMENT_ITEM_V, status:VALID,
-
APPS.IGS_AS_ASSESSMNT_TYP_PKG SQL Statements
12.1.1
-
APPS.IGS_AS_GEN_002 dependencies on IGS_AS_ASSESSMNT_TYP
12.1.1
-
View: IGS_AS_UNIT_ASSESSMENT_ITEM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Created primarily for the assignment due dates summary report , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AS_ASSESSMNT_TYP_PKG dependencies on IGS_AS_ASSESSMNT_TYP
12.1.1
-
APPS.IGS_AS_GEN_002 SQL Statements
12.1.1
-
APPS.IGS_AS_ASSESSMNT_TYP_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_ASSESSMNT_TYP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_VAL_ATYP
12.1.1
-
APPS.IGS_AS_SASSESS_TYPE_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_AS_SASSESS_TYPE_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_AS_ASSESSMNT_TYP_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_AS_ASSESSMNT_TYP_PKG dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_GEN_002
12.1.1
-
APPS.IGS_AS_GEN_006 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_GEN_006
12.1.1
-
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'. ,