Search Results igs_as_assessmnt_typ
Overview
The IGS_AS_ASSESSMNT_TYP table is a core reference table within the Oracle E-Business Suite Student System (IGS) module, applicable to both releases 12.1.1 and 12.2.2. It serves as a master data repository that defines and categorizes the different types of assessment items available within the academic framework. Its primary role is to enforce data integrity by providing a controlled list of valid assessment types, which are then referenced by numerous transactional and configuration tables throughout the assessment subsystem. This table is fundamental for standardizing how assessments are classified, managed, and processed across the institution's academic operations.
Key Information Stored
While the provided ETRM metadata does not list specific column details beyond the primary key, the table's structure is centered on the ASSESSMENT_TYPE column, which serves as the unique identifier (Primary Key: IGS_AS_ASSESSMNT_TYP_PK). This column stores the distinct codes representing each assessment type, such as 'FINAL_EXAM', 'QUIZ', 'PRACTICAL', 'THESIS', or 'PARTICIPATION'. Typically, a reference table like this would also include descriptive columns, such as a description field, an effective date range (e.g., START_DATE, END_DATE), and possibly attributes controlling the type's behavior (e.g., weight calculation method, grading basis). The data is primarily administrative and configured during system implementation or by functional users via the application's front-end.
Common Use Cases and Queries
This table is essential for setup, reporting, and data validation. Common use cases include populating list of values (LOVs) in assessment definition forms, validating data entry in transactional interfaces, and generating reports that categorize assessment results by type. A typical query would join this table to transactional data to provide meaningful descriptions.
- Listing All Active Assessment Types:
SELECT assessment_type FROM igs.igs_as_assessmnt_typ WHERE NVL(end_date, SYSDATE) >= SYSDATE; - Reporting on Assessments with Descriptions:
SELECT t.assessment_type, a.item_code, a.grade FROM igs.igs_as_item_ass a JOIN igs.igs_as_assessmnt_typ t ON a.assessment_type = t.assessment_type; - Data Validation in Interfaces: Before loading assessment data, a validation step checks if the provided
assessment_typeexists in this table to ensure referential integrity.
Related Objects
The IGS_AS_ASSESSMNT_TYP table maintains critical relationships with several other key tables in the Student System, as documented by its foreign key constraints.
- Referenced by (Child Tables):
- IGS_AS_APPR_GRD_SCH: Links via
ASSESSMENT_TYPE. This defines which grade schemes are approved for use with specific assessment types. - IGS_AS_ANON_ID_ASS: Links via
ASSESSMENT_TYPE. This likely controls anonymous marking settings for different assessment types. - IGS_AS_ANON_METHOD: Links via
ASSESSMENT_TYPE. This likely defines the specific anonymous marking method for an assessment type.
- IGS_AS_APPR_GRD_SCH: Links via
- References (Parent Table):
- IGS_AS_SASSESS_TYPE: This table references
IGS_AS_SASSESS_TYPEvia the columnS_ASSESSMENT_TYPE. This suggests a hierarchical or sub-typing relationship where an assessment type may be further classified into a more specific system-defined subtype.
- IGS_AS_SASSESS_TYPE: This table references
-
Table: 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, product: IGS - Student System , description: Describes possible types of assessment items , implementation_dba_data: IGS.IGS_AS_ASSESSMNT_TYP ,
-
Table: IGS_AS_ANON_METHOD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_ANON_METHOD, object_name:IGS_AS_ANON_METHOD, status:VALID, product: IGS - Student System , description: Holds methods defined for different Load Calendar Types , implementation_dba_data: IGS.IGS_AS_ANON_METHOD ,
-
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_AS_ANON_ID_ASS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_ANON_ID_ASS, object_name:IGS_AS_ANON_ID_ASS, status:VALID, product: IGS - Student System , description: Holds the person with the assigned Anonymous Id for the method ASSESSMENT , implementation_dba_data: IGS.IGS_AS_ANON_ID_ASS ,
-
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: IGSBV_AS_ASSESSMENT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_ASSESSMENT_TYPES, object_name:IGSBV_AS_ASSESSMENT_TYPES, status:VALID, product: IGS - Student System , description: Describes possible types of assessment items. , implementation_dba_data: APPS.IGSBV_AS_ASSESSMENT_TYPES ,
-
View: IGS_AS_ANON_METHOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ANON_METHOD_V, object_name:IGS_AS_ANON_METHOD_V, status:VALID, product: IGS - Student System , description: This is stores anon methods , implementation_dba_data: APPS.IGS_AS_ANON_METHOD_V ,
-
View: IGSFV_AS_ANONYMOUS_ID_ASSESS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_ANONYMOUS_ID_ASSESS, object_name:IGSFV_AS_ANONYMOUS_ID_ASSESS, status:VALID, product: IGS - Student System , description: Describes occurrence of an application for special consideration. , implementation_dba_data: APPS.IGSFV_AS_ANONYMOUS_ID_ASSESS ,
-
View: IGSBV_AS_ANONYMOUS_ID_ASSESS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_ANONYMOUS_ID_ASSESS, object_name:IGSBV_AS_ANONYMOUS_ID_ASSESS, status:VALID, product: IGS - Student System , description: Holds the person with the assigned Anonymous Id for the method ASSESSMENT , implementation_dba_data: APPS.IGSBV_AS_ANONYMOUS_ID_ASSESS ,
-
Table: IGS_AS_APPR_GRD_SCH
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_APPR_GRD_SCH, object_name:IGS_AS_APPR_GRD_SCH, status:VALID, product: IGS - Student System , description: The approved grading schemas for assessment types associated with unit and version are recorded. They can be defaulted so that on linking the assessment items to unit offering and sections the grading schema is associated with the assessmen , implementation_dba_data: IGS.IGS_AS_APPR_GRD_SCH ,
-
View: IGSBV_AS_APPR_AST_ITM_GRD_SCHS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_APPR_AST_ITM_GRD_SCHS, object_name:IGSBV_AS_APPR_AST_ITM_GRD_SCHS, status:VALID, product: IGS - Student System , description: Approved Assessment Item Grading Schema , implementation_dba_data: APPS.IGSBV_AS_APPR_AST_ITM_GRD_SCHS ,
-
View: IGSFV_AS_APPR_AST_ITM_GRD_SCHS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_APPR_AST_ITM_GRD_SCHS, object_name:IGSFV_AS_APPR_AST_ITM_GRD_SCHS, status:VALID, product: IGS - Student System , description: Approved Assessment Item Grading Schema , implementation_dba_data: APPS.IGSFV_AS_APPR_AST_ITM_GRD_SCHS ,
-
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 ,
-
View: IGSFV_AS_ASSESSMENT_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_ASSESSMENT_ITEMS, object_name:IGSFV_AS_ASSESSMENT_ITEMS, status:VALID, product: IGS - Student System , description: Describes an item a student might be assessed. All items are of a nominated type, as defined by the assessment type assigned. An assessment item can be either an examinable or non-examinable item. Examinable items may require scheduling dur , implementation_dba_data: APPS.IGSFV_AS_ASSESSMENT_ITEMS ,
-
View: IGS_AS_UAI_FIND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_FIND_V, object_name:IGS_AS_UAI_FIND_V, status:VALID, product: IGS - Student System , description: This view is used for the Find Unit Assessment Item form. (ASSF2311) , implementation_dba_data: APPS.IGS_AS_UAI_FIND_V ,
-
View: IGS_AS_UAI_EXAM_CI_INIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_EXAM_CI_INIT_V, object_name:IGS_AS_UAI_EXAM_CI_INIT_V, status:VALID, product: IGS - Student System , description: Describes the examination calendar instances that a unit assessment item record is examined. This view ignores the relationship represented in the uai.exam_cal_type, exam_ci_sequence_number fields. , implementation_dba_data: APPS.IGS_AS_UAI_EXAM_CI_INIT_V ,
-
View: IGS_AS_ASSESSMENT_ITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ASSESSMENT_ITM_V, object_name:IGS_AS_ASSESSMENT_ITM_V, status:VALID, product: IGS - Student System , description: Contains Items for which a student can be assessed , implementation_dba_data: APPS.IGS_AS_ASSESSMENT_ITM_V ,
-
View: IGS_AS_UAI_EXAM_CI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_EXAM_CI_V, object_name:IGS_AS_UAI_EXAM_CI_V, status:VALID, product: IGS - Student System , description: IGS_AS_UAI_EXAM_CI_V describes the examination calendar instances that a unit assessment item record is examined. This is determined based on the relationships between the teaching and examination calendar instances and the override uai.exa , implementation_dba_data: APPS.IGS_AS_UAI_EXAM_CI_V ,