Search Results term_cal_type
Overview
The IGS_EN_STD_WARNINGS table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) or Campus Solutions modules under the IGS (iGrants) schema. Its primary function is to store self-service warning and informational details generated for a student during academic planning and enrollment processes. The table acts as a transactional log and messaging system, capturing validation outcomes—such as denials, warnings, informational notes, or passes—related to course and unit enrollment attempts. It is integral to the student self-service interface, providing the data necessary to display actionable messages and links back to the application.
Key Information Stored
The table's structure is designed to capture the context of a validation event and the resulting message. Key columns include:
- WARNING_ID: The primary key, a system-generated sequence number uniquely identifying each warning record.
- PERSON_ID, COURSE_CD: Uniquely identify the student and their academic program.
- TERM_CAL_TYPE and TERM_CI_SEQUENCE_NUMBER: Define the specific academic term (calendar instance) for which the warning was generated. These are critical for term-based queries.
- UOO_ID: The unique identifier for the specific unit (course) section attempt, linking to the unit offering details.
- MESSAGE_ICON: A single character (D/W/I/P) classifying the message severity as Deny, Warn, Information, or Pass.
- MESSAGE_NAME and MESSAGE_TEXT: Store the application message identifier and the full descriptive text of the warning or information.
- MESSAGE_ACTION, DESTINATION, and P_PARAMETERS: Work together to provide a functional hyperlink within the self-service page, specifying the action text, target page, and necessary parameters (e.g., for adding a co-requisite).
Common Use Cases and Queries
This table is central to reporting on enrollment validation issues and supporting self-service functionality. A common use case is generating a list of all active warnings for a specific student in a given term, which drives the student's enrollment to-do list. For example, to find all denial or warning messages for a student in a specific term calendar, one might use:
SELECT message_icon, message_text, message_action
FROM igs.igs_en_std_warnings
WHERE person_id = :student_id
AND term_cal_type = :term_type
AND term_ci_sequence_number = :term_seq
AND message_icon IN ('D', 'W')
ORDER BY warning_id;
Another critical reporting use case involves analyzing systemic enrollment barriers by aggregating warnings by course, term, and message type to identify common validation failures requiring administrative review or process adjustment.
Related Objects
Based on the provided index information, the table has clear relationships with other core person and academic structures. The non-unique index IGS_EN_STD_WARNINGS_N1 suggests frequent joins on the composite key of PERSON_ID, COURSE_CD, TERM_CAL_TYPE, and TERM_CI_SEQUENCE_NUMBER. This logically links to tables storing person details (e.g., IGS_PE_PERSON), course attempts (e.g., IGS_EN_STDNT_PS_ATT), and academic calendar definitions (e.g., IGS_CA_INST). The UOO_ID column would typically join to a unit offering table (e.g., IGS_EN_UNIT_OFF_OPT). The primary key constraint IGS_EN_STD_WARNINGS_PK on WARNING_ID is likely referenced by other transactional or logging tables within the enrollment flow.
-
APPS.IGS_SS_EN_WRAPPERS dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_FUTURE_DT_TRANS dependencies on IGS_EN_SPA_TERMS_API
12.1.1
-
APPS.IGF_AW_COA_GEN dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_SESSION_VALIDITY dependencies on IGS_EN_PLAN_UNITS
12.1.1
-
APPS.IGS_EN_ADD_UNITS_API dependencies on IGS_EN_STD_WARNINGS
12.1.1
-
APPS.IGS_EN_FUTURE_DT_TRANS dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_SU_ATTEMPT_PKG dependencies on IGS_PS_VER
12.1.1
-
APPS.IGS_EN_PLAN_UNITS_PKG dependencies on IGS_EN_PLAN_UNITS
12.1.1
-
TABLE: IGS.IGS_EN_STD_WARNINGS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_STD_WARNINGS, object_name:IGS_EN_STD_WARNINGS, status:VALID,
-
APPS.IGS_EN_SPA_TERMS_API SQL Statements
12.1.1
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_DASHBOARD dependencies on IGS_EN_SU_ATTEMPT
12.1.1
-
APPS.IGS_EN_SPA_TERMS_API dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_PT_GEN_PKG dependencies on IGS_SS_ENR_DETAILS
12.1.1
-
TABLE: IGS.IGS_EN_SPA_TERMS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPA_TERMS, object_name:IGS_EN_SPA_TERMS, status:VALID,
-
APPS.IGS_EN_PLAN_UNITS_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_SPAT_LGCY_PUB SQL Statements
12.1.1
-
TABLE: IGS.IGS_EN_PLAN_UNITS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_PLAN_UNITS, object_name:IGS_EN_PLAN_UNITS, status:VALID,
-
APPS.IGS_EN_SPAT_LGCY_PUB dependencies on IGS_GE_GEN_003
12.1.1
-
APPS.IGS_EN_ADD_UNITS_API dependencies on IGS_EN_PLAN_UNITS
12.1.1
-
APPS.IGS_EN_SU_ATTEMPT_PKG dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
VIEW: APPS.IGS_EN_SS_SCHEDULE_DISP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SS_SCHEDULE_DISP_V, object_name:IGS_EN_SS_SCHEDULE_DISP_V, status:VALID,
-
APPS.IGS_EN_DASHBOARD SQL Statements
12.1.1
-
View: IGS_EN_SPA_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPA_TERMS_V, object_name:IGS_EN_SPA_TERMS_V, status:VALID, product: IGS - Student System , description: Student Program Attempts Term View , implementation_dba_data: APPS.IGS_EN_SPA_TERMS_V ,
-
APPS.IGS_EN_DASHBOARD dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_DASHBOARD dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_EN_SU_ATTEMPT_PKG dependencies on IGS_EN_SPA_TERMS
12.1.1
-
VIEW: APPS.IGS_EN_SPA_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPA_TERMS_V, object_name:IGS_EN_SPA_TERMS_V, status:VALID,
-
VIEW: APPS.IGS_EN_SS_STUD_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SS_STUD_CONTEXT_V, object_name:IGS_EN_SS_STUD_CONTEXT_V, status:VALID,
-
APPS.IGS_EN_STD_WARNINGS_PKG SQL Statements
12.1.1
-
View: IGS_EN_SPA_TERMS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Student Program Attempts Term View , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_ADD_UNITS_API SQL Statements
12.1.1
-
APPS.IGS_SESSION_VALIDITY SQL Statements
12.1.1
-
APPS.IGS_EN_SPA_TERMS_API dependencies on IGS_EN_PLAN_UNITS
12.1.1
-
APPS.IGS_EN_SPA_TERMS_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_GEN_010 dependencies on IGS_CA_TYPE
12.1.1
-
View: IGS_EN_SS_STUD_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SS_STUD_CONTEXT_V, object_name:IGS_EN_SS_STUD_CONTEXT_V, status:VALID, product: IGS - Student System , description: Stores the student program attempt context information , implementation_dba_data: APPS.IGS_EN_SS_STUD_CONTEXT_V ,
-
APPS.IGS_EN_PLAN_UTILS dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_GEN_010 dependencies on IGS_CA_INST_REL
12.1.1
-
APPS.IGS_EN_PLAN_UNITS_PKG dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGF_AP_GEN_001 dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_SS_ENR_DETAILS dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_SPA_TERMS_PKG dependencies on IGS_EN_SPA_TERMS
12.1.1
-
APPS.IGS_EN_FUTURE_DT_TRANS dependencies on IGS_PS_VER
12.1.1
-
View: IGS_EN_SS_STUD_CONTEXT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the student program attempt context information , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_SS_SCHEDULE_DISP_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view shows all the program attempts with additional details like applicable min/max cp, year of program unit set etc. used to display in schedule page. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_SS_SCHEDULE_DISP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SS_SCHEDULE_DISP_V, object_name:IGS_EN_SS_SCHEDULE_DISP_V, status:VALID, product: IGS - Student System , description: This view shows all the program attempts with additional details like applicable min/max cp, year of program unit set etc. used to display in schedule page. , implementation_dba_data: APPS.IGS_EN_SS_SCHEDULE_DISP_V ,
-
APPS.IGS_EN_PRC_LOAD dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_EN_DROP_UNITS_API dependencies on IGS_EN_STD_WARNINGS
12.1.1
-
APPS.IGS_EN_GEN_010 dependencies on IGS_CA_INST
12.1.1