Search Results grading_schema_description
Overview
IGSBV_USEC_GRADING_SCHEMAS is a read-only Oracle EBS view owned by the APPS schema within the Oracle Student System (formerly Student Records / ETRM) product family. It presents the association between unit sections offered within the institution and the grading schemas that govern how student results are recorded and assessed against those sections. The view consolidates three sources: the unit-section-to-grading-schema assignment, the grading schema definition itself, and the unit offering option details. This produces a denormalized, human-readable record that pairs the technical grading schema code and version with its descriptive text, alongside the unit's identifying attributes.
The view carries a WITH READ ONLY clause, meaning it is intended strictly for query and reporting purposes. No inserts, updates, or deletions are permitted against it. In Oracle EBS 12.1.1 and 12.2.2 environments, such views are typically exposed for reporting layers, integration extracts, and Oracle Application Framework (OAF) pages that need to resolve a grading schema description without directly navigating the underlying normalized relationships. The column GRADING_SCHEMA_DESCRIPTION is especially significant, as it is the attribute commonly sought when users or interfaces need the human-readable label for a grading schema rather than its internal code.
Underlying Base Objects
The view is defined over three documented base objects:
- IGS_PS_USEC_GRD_SCHM (alias US) — the unit section grading schema assignment table. This is the driving table, holding the association between a unit offering option (
UOO_ID) and a grading schema code with version. - IGS_AS_GRD_SCHEMA (alias GR) — the grading schema master, supplying the authoritative description and version details.
- IGS_PS_UNIT_OFR_OPT_ALL (alias UN) — the unit offering option view/table, supplying unit code, version, calendar type, location, and unit class information.
The joins are equi-joins. The assignment table links to the grading schema master on both GRADING_SCHEMA_CODE = GR.GRADING_SCHEMA_CD and GRD_SCHM_VERSION_NUMBER = GR.VERSION_NUMBER, ensuring version-accurate resolution. The assignment table links to the unit offering option on US.UOO_ID = UN.UOO_ID. Because the ETRM metadata documents no additional referenced base objects, the view's grain is one row per unit section grading schema assignment, enriched with schema description and unit attributes.
Key Columns
UNIT_SECTION_GRADING_SCHEMA_ID— primary identifier for the assignment record.UNIT_SECTION_ID(aliased fromUOO_ID) — the unit offering option to which the schema applies.GRADING_SCHEMA_CODEandGRD_SCHM_VERSION_NUMBER— the schema identity and version.DEFAULT_GRAD_SCHEMA_INDICATOR(aliased fromDEFAULT_FLAG) — indicates whether the schema is the default for the section.GRADING_SCHEMA_DESCRIPTION— the descriptive name of the grading schema, sourced from IGS_AS_GRD_SCHEMA.UNIT_CD,VERSION_NUMBER,CAL_TYPE,CI_SEQUENCE_NUMBER,LOCATION_CD,UNIT_CLASS— unit identity and classification attributes.- Audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE.
Common Use Cases and Queries
Typical usage includes resolving the description of the grading schema applied to a given unit section, auditing default schema assignments per unit, and feeding reporting or integration extracts.
SELECT unit_cd, version_number, grading_schema_code,
grading_schema_description, default_grad_schema_indicator
FROM apps.igsbv_usec_grading_schemas
WHERE unit_cd = :unit_code;
SELECT unit_cd, grading_schema_code, grading_schema_description FROM apps.igsbv_usec_grading_schemas WHERE default_grad_schema_indicator = 'Y';
Because the view is read-only and pre-joins the schema description, it removes the need for callers to resolve GRADING_SCHEMA_CD and VERSION_NUMBER against the grading schema master manually, simplifying queries that surface the grading_schema_description.
-
VIEW: APPS.IGSBV_USEC_GRADING_SCHEMAS
12.1.1
-
View: IGSFV_USEC_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_GRADING_SCHEMAS, object_name:IGSFV_USEC_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: This is the full view, which describes the grading schemas related to unit sections. , implementation_dba_data: APPS.IGSFV_USEC_GRADING_SCHEMAS ,
-
View: IGS_PS_USEC_GRD_SCHM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_GRD_SCHM_V, object_name:IGS_PS_USEC_GRD_SCHM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_GRD_SCHM_V ,
-
View: IGS_PS_USEC_GRD_SCHM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_GRD_SCHM_V
12.1.1
-
View: IGSBV_USEC_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_GRADING_SCHEMAS, object_name:IGSBV_USEC_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: This is the base view, which describes the grading schemas related to unit sections. , implementation_dba_data: APPS.IGSBV_USEC_GRADING_SCHEMAS ,
-
VIEW: APPS.IGSFV_USEC_GRADING_SCHEMAS
12.1.1
-
View: IGSFV_USEC_GRADING_SCHEMAS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view, which describes the grading schemas related to unit sections. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_USEC_GRADING_SCHEMAS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view, which describes the grading schemas related to unit sections. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_GRD_SCHM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_GRD_SCHM_V, object_name:IGS_PS_USEC_GRD_SCHM_V, status:VALID,
-
VIEW: APPS.IGSFV_UNIT_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_GRADING_SCHEMAS, object_name:IGSFV_UNIT_GRADING_SCHEMAS, status:VALID,
-
VIEW: APPS.IGSBV_AS_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRADING_SCHEMAS, object_name:IGSBV_AS_GRADING_SCHEMAS, status:VALID,
-
VIEW: APPS.IGSFV_AS_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRADING_SCHEMAS, object_name:IGSFV_AS_GRADING_SCHEMAS, status:VALID,
-
VIEW: APPS.IGSBV_UNIT_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_GRADING_SCHEMAS, object_name:IGSBV_UNIT_GRADING_SCHEMAS, status:VALID,
-
View: IGSFV_AS_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRADING_SCHEMAS, object_name:IGSFV_AS_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: Grading Schema , implementation_dba_data: APPS.IGSFV_AS_GRADING_SCHEMAS ,
-
VIEW: APPS.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,
-
View: IGSBV_UNIT_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_GRADING_SCHEMAS, object_name:IGSBV_UNIT_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: This is the base view, which describes the relation between units and grading schemas. , implementation_dba_data: APPS.IGSBV_UNIT_GRADING_SCHEMAS ,
-
View: IGSFV_UNIT_GRADING_SCHEMAS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view, which describes the relation between units and grading schemas. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AS_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRADING_SCHEMAS, object_name:IGSBV_AS_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: Grading Schema , implementation_dba_data: APPS.IGSBV_AS_GRADING_SCHEMAS ,
-
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: IGSBV_AS_GRADING_SCHEMAS
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AS_GRADING_SCHEMAS
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_USEC_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_GRADING_SCHEMAS, object_name:IGSBV_USEC_GRADING_SCHEMAS, status:VALID,
-
VIEW: APPS.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,
-
View: IGSFV_AS_GRADING_SCHEMA_GRADES
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema Grades , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_USEC_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_GRADING_SCHEMAS, object_name:IGSFV_USEC_GRADING_SCHEMAS, status:VALID,
-
View: IGSFV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRADING_SCHEMA_GRADES, object_name:IGSFV_AS_GRADING_SCHEMA_GRADES, status:VALID, product: IGS - Student System , description: Grading Schema Grades , implementation_dba_data: APPS.IGSFV_AS_GRADING_SCHEMA_GRADES ,
-
View: IGSFV_UNIT_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_GRADING_SCHEMAS, object_name:IGSFV_UNIT_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: This is the full view, which describes the relation between units and grading schemas. , implementation_dba_data: APPS.IGSFV_UNIT_GRADING_SCHEMAS ,
-
View: IGSFV_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AWARDS, object_name:IGSFV_AWARDS, status:VALID, product: IGS - Student System , description: This is the full view which describes the awards offered by the university. , implementation_dba_data: APPS.IGSFV_AWARDS ,
-
View: IGSBV_UNIT_GRADING_SCHEMAS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view, which describes the relation between units and grading schemas. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AS_APPR_AST_ITM_GRD_SCHS
12.2.2
product: IGS - Student System (Obsolete) , description: Approved Assessment Item Grading Schema , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AWARDS, object_name:IGSFV_AWARDS, status:VALID,
-
View: IGSFV_AWARDS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view which describes the awards offered by the university. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AS_APPR_AST_ITM_GRD_SCHS
12.2.2
product: IGS - Student System (Obsolete) , description: Approved Assessment Item Grading Schema , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRADING_SCHEMA_GRADES, object_name:IGSBV_AS_GRADING_SCHEMA_GRADES, status:VALID, product: IGS - Student System , description: Grading Schema Grades , implementation_dba_data: APPS.IGSBV_AS_GRADING_SCHEMA_GRADES ,
-
View: IGSBV_AS_GRADING_SCHEMA_GRADES
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema Grades , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROG_OFFERING_PATTERNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_OFFERING_PATTERNS, object_name:IGSFV_PROG_OFFERING_PATTERNS, status:VALID, product: IGS - Student System , description: This is a full view, which describes the Offering Pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: APPS.IGSFV_PROG_OFFERING_PATTERNS ,
-
VIEW: APPS.IGSFV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRADING_SCHEMA_GRADES, object_name:IGSFV_AS_GRADING_SCHEMA_GRADES, status:VALID,
-
VIEW: APPS.IGSBV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRADING_SCHEMA_GRADES, object_name:IGSBV_AS_GRADING_SCHEMA_GRADES, status:VALID,
-
View: IGSFV_PROG_OFFERING_PATTERNS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes the Offering Pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_PROG_OFFERING_PATTERNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_OFFERING_PATTERNS, object_name:IGSFV_PROG_OFFERING_PATTERNS, status:VALID,
-
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'. ,