Search Results igs_av_stnd_unit_all
Overview
The IGS_AV_STND_UNIT_ALL table is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS) module, specifically designed to manage advanced standing (also known as credit transfer or exemptions). It stores detailed records for individual academic units (subjects or courses) that have been granted to a student as advanced standing towards a specific program of study. This table functions as a child entity, linking the broader advanced standing record (IGS_AV_ADV_STANDING_ALL) to the specific unit and version for which credit is awarded. It is critical for auditing the composition of a student's advanced standing and for ensuring accurate academic progression and credential evaluation. Notably, the ETRM metadata classifies the IGS - Student System product as "Obsolete," indicating this table is part of a legacy codebase that may be superseded in later application versions or deployments.
Key Information Stored
The table's primary key (IGS_AV_STND_UNIT_PK) is the surrogate key AV_STND_UNIT_ID. Its unique key (IGS_AV_STND_UNIT_UK) reveals the core business identifiers that define a specific granted unit: PERSON_ID, AS_COURSE_CD, AS_VERSION_NUMBER, S_ADV_STND_TYPE, UNIT_CD, VERSION_NUMBER, and EXEMPTION_INSTITUTION_CD. This combination ensures a student cannot be granted the same unit version for the same course and advanced standing type more than once. Other significant columns include UNIT_DETAILS_ID, which links to specific unit offering details (IGS_AD_TERM_UNITDTLS), and TST_RSLT_DTLS_ID, which links to test result details (IGS_AD_TST_RSLT_DTLS) if the standing was granted based on a standardized test. The table also stores grading information via GRADING_SCHEMA_CD, GRD_SCH_VERSION_NUMBER, and GRADE, linking to IGS_AS_GRD_SCH_GRADE.
Common Use Cases and Queries
This table is central to reporting and operational processes related to credit transfer. A common use case is generating a transcript of advanced standing, detailing all units granted to a student for a particular course. System interfaces for importing external credit recommendations would ultimately populate this table. Administrators query this table to verify unit exemptions before student enrollment or to audit credit compliance. A typical reporting query would join to the parent advanced standing and unit master tables:
SELECT iaa.person_id, iaa.as_course_cd, isu.unit_cd, isu.version_number, isu.title, iau.grade FROM igs_av_stnd_unit_all iau JOIN igs_av_adv_standing_all iaa ON iau.person_id = iaa.person_id AND iau.as_course_cd = iaa.as_course_cd JOIN igs_ps_unit_ver_all isu ON iau.unit_cd = isu.unit_cd AND iau.version_number = isu.version_number WHERE iaa.person_id = :p_student_id;
Another critical process is checking for duplicate advanced standing unit grants before inserting a new record, utilizing the unique key constraints.
Related Objects
As indicated by the foreign key relationships, IGS_AV_STND_UNIT_ALL has extensive dependencies. It is a direct child of the IGS_AV_ADV_STANDING_ALL table, which holds the overarching advanced standing application. The granted unit is defined by a link to the IGS_PS_UNIT_VER_ALL (unit catalog) table. Specific details are further referenced via IGS_AD_TERM_UNITDTLS and IGS_AD_TST_RSLT_DTLS. The granted grade references IGS_AS_GRD_SCH_GRADE. Furthermore, IGS_AV_STND_UNIT_ALL acts as a parent table to several supporting entities:
- IGS_AV_STND_ALT_UNIT: Stores alternative unit recommendations.
- IGS_AV_UNT_REF_CDS: Likely stores reference codes or notes associated with the granted unit.
- IGS_AV_STD_UNT_BASIS_ALL: Stores the basis or reason (e.g., prior learning, professional experience) for granting the specific unit.
These relationships form a detailed data model for tracking every facet of a student's advanced standing unit credits.
-
Table: IGS_AV_STND_UNIT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STND_UNIT_ALL, object_name:IGS_AV_STND_UNIT_ALL, status:VALID, product: IGS - Student System , description: Describes a unit granted as advanced standing , implementation_dba_data: IGS.IGS_AV_STND_UNIT_ALL ,
-
View: IGS_DA_XML_COURSEINSTITUTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_XML_COURSEINSTITUTION_V, object_name:IGS_DA_XML_COURSEINSTITUTION_V, status:VALID, product: IGS - Student System , description: XML element CourseInstitutionTypeProvides the Unit"s Institution code based on the batch_id, person_id and local_institution_cd. , implementation_dba_data: APPS.IGS_DA_XML_COURSEINSTITUTION_V ,
-
Table: IGS_AV_STND_ALT_UNIT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STND_ALT_UNIT, object_name:IGS_AV_STND_ALT_UNIT, status:VALID, product: IGS - Student System , description: Describes alternate units for a specified precluded unit , implementation_dba_data: IGS.IGS_AV_STND_ALT_UNIT ,
-
Table: IGS_AD_TST_RSLT_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_TST_RSLT_DTLS, object_name:IGS_AD_TST_RSLT_DTLS, status:VALID, product: IGS - Student System , description: Holds test result details , implementation_dba_data: IGS.IGS_AD_TST_RSLT_DTLS ,
-
Table: IGS_AV_UNT_REF_CDS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_UNT_REF_CDS, object_name:IGS_AV_UNT_REF_CDS, status:VALID, product: IGS - Student System , description: Table containing the reference codes that have been associated with an advanced standing unit. , implementation_dba_data: IGS.IGS_AV_UNT_REF_CDS ,
-
Table: IGS_AD_TERM_UNITDTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_TERM_UNITDTLS, object_name:IGS_AD_TERM_UNITDTLS, status:VALID, product: IGS - Student System , description: Holds term unit details for institution , implementation_dba_data: IGS.IGS_AD_TERM_UNITDTLS ,
-
Table: IGS_AV_STD_UNT_BASIS_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STD_UNT_BASIS_ALL, object_name:IGS_AV_STD_UNT_BASIS_ALL, status:VALID, product: IGS - Student System , description: Describes the basis on which a unit has been granted as advanced standing , implementation_dba_data: IGS.IGS_AV_STD_UNT_BASIS_ALL ,
-
Table: IGS_AV_ADV_STANDING_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_ADV_STANDING_ALL, object_name:IGS_AV_ADV_STANDING_ALL, status:VALID, product: IGS - Student System , description: Describes advanced standing that results from applications , implementation_dba_data: IGS.IGS_AV_ADV_STANDING_ALL ,
-
View: IGS_DA_XML_ORIGINALCOURSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_XML_ORIGINALCOURSE_V, object_name:IGS_DA_XML_ORIGINALCOURSE_V, status:VALID, product: IGS - Student System , description: XML element OriginalCourseType (child of CourseType). Gets the original Unit/(course) information for Units Transferred from other institutions. , implementation_dba_data: APPS.IGS_DA_XML_ORIGINALCOURSE_V ,
-
View: IGSBV_AV_ADV_STND_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AV_ADV_STND_UNIT, object_name:IGSBV_AV_ADV_STND_UNIT, status:VALID, product: IGS - Student System , description: Describes a unit granted as advanced standing. , implementation_dba_data: APPS.IGSBV_AV_ADV_STND_UNIT ,
-
Table: IGS_AS_GRD_SCH_GRADE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_GRD_SCH_GRADE, object_name:IGS_AS_GRD_SCH_GRADE, status:VALID, product: IGS - Student System , description: Describes characteristics of grade within grading schema , implementation_dba_data: IGS.IGS_AS_GRD_SCH_GRADE ,
-
View: IGS_PR_ACAD_EXAM_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_EXAM_CREDIT_V, object_name:IGS_PR_ACAD_EXAM_CREDIT_V, status:VALID, product: IGS - Student System , description: This view contains the details of credit granted through advanced standing based on the Admissions Exam structure. The credit is shown only as an aggregated summary figure. , implementation_dba_data: APPS.IGS_PR_ACAD_EXAM_CREDIT_V ,
-
View: IGS_AV_STND_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_STND_UNIT, object_name:IGS_AV_STND_UNIT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AV_STND_UNIT ,
-
View: IGS_PR_ACAD_TRANS_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_TRANS_CREDIT_V, object_name:IGS_PR_ACAD_TRANS_CREDIT_V, status:VALID, product: IGS - Student System , description: This view contains the details of credit granted through advanced standing based on the Person Transcript Units structure. The credit is shown only as an aggregated summary figure. , implementation_dba_data: APPS.IGS_PR_ACAD_TRANS_CREDIT_V ,
-
View: IGSFV_AV_ADV_STND_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AV_ADV_STND_UNIT, object_name:IGSFV_AV_ADV_STND_UNIT, status:VALID, product: IGS - Student System , description: Describes a unit granted as advanced standing. , implementation_dba_data: APPS.IGSFV_AV_ADV_STND_UNIT ,
-
Table: IGS_PS_UNIT_VER_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_ALL, object_name:IGS_PS_UNIT_VER_ALL, status:VALID, product: IGS - Student System , description: This entity describes a version of a unit, which is offered by the university. , implementation_dba_data: IGS.IGS_PS_UNIT_VER_ALL ,
-
View: IGS_DA_XML_COURSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_XML_COURSE_V, object_name:IGS_DA_XML_COURSE_V, status:VALID, product: IGS - Student System , description: XML element CourseType (child of CourseInstitution)1)(SUA) Student Unit Attempt"s at local Institution. Includes Units local institution Units and currently enrolled units.Enrolled units can be excluded EIP Control feature code.2) (AV) Adv , implementation_dba_data: APPS.IGS_DA_XML_COURSE_V ,