Search Results s_cal_cat
Overview
IGS_CA_INST_ADM_PERD_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Student System / Enterprise Transaction Management (ETRM) calendar functionality. It presents admission calendar instances together with their related academic calendar instances, exposing both the subordinate admission period and the superordinate (parent) academic period on a single row. The view is restricted to calendar types whose calendar category (S_CAL_CAT) is 'ADMISSION' for the primary instance and 'ACADEMIC' for the related instance, using an outer join so that admission periods without a linked academic parent are still returned.
Its role is primarily read-only reporting and integration: it allows reports, concurrent programs, OAF pages, and external interfaces to retrieve admission period data, including status, start and end dates, and the alternate code, without having to re-implement the multi-table join logic. The presence of the ALTERNATE_CODE column, and the derived concatenation of the parent and child alternate codes, makes the view particularly relevant to searches involving "alternate_code," since it surfaces the descriptive identifier assigned to each calendar instance.
Underlying Base Objects
The view is defined over five base tables, joined as follows:
- IGS_CA_INST ci1 — the primary admission calendar instance. It supplies CAL_TYPE, SEQUENCE_NUMBER, START_DT, END_DT, CAL_STATUS, ALTERNATE_CODE, PRIOR_CI_SEQUENCE_NUMBER, and the standard WHO audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN).
- IGS_CA_INST_REL cir — the calendar instance relationship table, joined with an outer join on SUB_CAL_TYPE and SUB_CI_SEQUENCE_NUMBER to link the admission instance to its parent.
- IGS_CA_INST ci2 — the superordinate academic calendar instance, outer-joined through CIR.SUP_CAL_TYPE and CIR.SUP_CI_SEQUENCE_NUMBER. It contributes the parent START_DT, END_DT, and ALTERNATE_CODE.
- IGS_CA_TYPE cat1 — the calendar type definition for the admission instance, constrained to S_CAL_CAT = 'ADMISSION'. Its DESCRIPTION is exposed.
- IGS_CA_TYPE cat2 — the calendar type definition for the academic instance, outer-joined and constrained to S_CAL_CAT = 'ACADEMIC'.
No additional base objects are documented in the ETRM metadata; the view is a straightforward projection over the calendar instance and calendar type tables.
Key Columns
- CAL_TYPE / SEQUENCE_NUMBER — composite key identifying the admission calendar instance.
- DESCRIPTION — description of the admission calendar type.
- START_DT / END_DT — effective start and end dates of the admission period.
- CAL_STATUS — status of the admission calendar instance.
- ALTERNATE_CODE — the user-defined alternate identifier for the admission instance. This is the column most commonly used to search or reference a period by a recognizable code rather than by a numeric sequence.
- PRIOR_CI_SEQUENCE_NUMBER — reference to the preceding calendar instance in the admission sequence.
- SUP_CAL_TYPE / SUP_CI_SEQUENCE_NUMBER — the parent academic calendar type and instance sequence.
- The two additional date columns — the parent academic instance START_DT and END_DT (from ci2).
- ALTERNATE_CODE (parent) and ALTERNATE_CODE || '/' || ALTERNATE_CODE (child) — the parent's alternate code, plus a derived concatenated path of parent and child alternate codes, useful for hierarchical display.
- Audit columns — WHO columns from ci1 for change tracking.
Common Use Cases and Queries
Typical usage includes listing all admission periods for a given academic year, validating admission period dates before term setup, and resolving an alternate code back to a calendar sequence for integration payloads.
- Retrieve admission periods by alternate code:
SELECT cal_type, sequence_number, alternate_code, start_dt, end_dt, cal_status FROM apps.igs_ca_inst_adm_perd_v WHERE alternate_code = :p_alternate_code; - List admission periods with their parent academic period:
SELECT alternate_code, description, start_dt, end_dt, sup_cal_type, sup_ci_sequence_number FROM apps.igs_ca_inst_adm_perd_v WHERE cal_status = 'ACTIVE'; - Report the concatenated parent/child alternate code path for hierarchical reporting:
SELECT alternate_code, description, ci2_alternate_code_display FROM apps.igs_ca_inst_adm_perd_v;
Because the relationships to the parent academic instance are outer joins, queries should not assume a parent row always exists; SUP_CAL_TYPE, SUP_CI_SEQUENCE_NUMBER, and the parent alternate code may be NULL for admission periods that have no defined academic parent. The view is a query-only object and should be used for reads; inserts and updates must target the underlying IGS_CA_INST and IGS_CA_INST_REL tables directly.
-
VIEW: APPS.IGS_CA_INST_ADM_PERD_V
12.1.1
-
APPS.IGS_CA_VAL_DAI SQL Statements
12.1.1
-
VIEW: APPS.IGS_CA_DA_V
12.1.1
-
View: IGS_CA_DA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_DA_V, object_name:IGS_CA_DA_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_CA_DA_V ,
-
View: IGS_CA_DA_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CA_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TYPE_V, object_name:IGS_CA_TYPE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_CA_TYPE_V ,
-
VIEW: APPS.IGS_CA_TYPE_V
12.1.1
-
View: IGS_CA_INST_ADM_PERD_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CA_INST_ADM_PERD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST_ADM_PERD_V, object_name:IGS_CA_INST_ADM_PERD_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_CA_INST_ADM_PERD_V ,
-
View: IGS_CA_INST_ALT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST_ALT_V, object_name:IGS_CA_INST_ALT_V, status:VALID, product: IGS - Student System , description: View of cal_instance table with alternate code as the primary key. Incorporates s_cal_cat and s_cal_status. , implementation_dba_data: APPS.IGS_CA_INST_ALT_V ,
-
View: IGS_CA_INST_ALT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of cal_instance table with alternate code as the primary key. Incorporates s_cal_cat and s_cal_status. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_CA_DA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_DA_V, object_name:IGS_CA_DA_V, status:VALID,
-
View: IGS_CA_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_VAL_DLA SQL Statements
12.1.1
-
APPS.IGS_CA_VAL_CI SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_EN_VAL_DLA
12.1.1
-
VIEW: APPS.IGS_CA_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TYPE_V, object_name:IGS_CA_TYPE_V, status:VALID,
-
TABLE: IGS.IGS_CA_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_TYPE, object_name:IGS_CA_TYPE, status:VALID,
-
APPS.IGS_PS_VAL_CO SQL Statements
12.1.1
-
VIEW: APPS.IGS_CA_TEACH_TO_LOAD_V
12.1.1
-
APPS.IGS_AD_VAL_SACCO SQL Statements
12.1.1
-
APPS.IGS_GR_VAL_CRD SQL Statements
12.1.1
-
VIEW: APPS.IGS_CA_LOAD_TO_TEACH_V
12.1.1
-
APPS.IGS_CA_TYPE_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_CA_TERM_TEACH_ACAD_ALT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TERM_TEACH_ACAD_ALT_V, object_name:IGS_CA_TERM_TEACH_ACAD_ALT_V, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_OFROPT_V
12.1.1
-
PACKAGE BODY: APPS.IGS_CA_VAL_DAI
12.1.1
-
APPS.IGS_PS_VAL_ATL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_VAL_DLA
12.1.1
-
APPS.IGS_CA_VAL_CIR SQL Statements
12.1.1
-
APPS.IGS_EN_VAL_UDDC SQL Statements
12.1.1
-
APPS.IGS_CA_DA_PKG SQL Statements
12.1.1
-
View: IGS_CA_TERM_TEACH_ACAD_ALT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the Term or Teaching calendar instances with corresponding academic alternate codes , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CA_TERM_TEACH_ACAD_ALT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TERM_TEACH_ACAD_ALT_V, object_name:IGS_CA_TERM_TEACH_ACAD_ALT_V, status:VALID, product: IGS - Student System , description: This view contains the Term or Teaching calendar instances with corresponding academic alternate codes , implementation_dba_data: APPS.IGS_CA_TERM_TEACH_ACAD_ALT_V ,
-
View: IGS_FI_F_TYP_CA_INST_LKP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_F_TYP_CA_INST_LKP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_TYP_CA_INST_LKP_V, object_name:IGS_FI_F_TYP_CA_INST_LKP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_F_TYP_CA_INST_LKP_V ,
-
PACKAGE BODY: APPS.IGS_PS_VAL_CO
12.1.1
-
TABLE: IGS.IGS_CA_DA
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_DA, object_name:IGS_CA_DA, status:VALID,
-
View: IGS_CA_TEACH_TO_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TEACH_TO_LOAD_V, object_name:IGS_CA_TEACH_TO_LOAD_V, status:VALID, product: IGS - Student System , description: Describes the teaching calendars for the give load calendar , implementation_dba_data: APPS.IGS_CA_TEACH_TO_LOAD_V ,
-
APPS.IGS_AS_VAL_ESE SQL Statements
12.1.1
-
View: IGS_CA_LOAD_TO_TEACH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_LOAD_TO_TEACH_V, object_name:IGS_CA_LOAD_TO_TEACH_V, status:VALID, product: IGS - Student System , description: Describes the teaching calendars for the give load calendar , implementation_dba_data: APPS.IGS_CA_LOAD_TO_TEACH_V ,
-
APPS.IGS_CA_GEN_001 SQL Statements
12.1.1
-
VIEW: APPS.IGS_CA_INST_ALT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST_ALT_V, object_name:IGS_CA_INST_ALT_V, status:VALID,
-
APPS.IGS_PR_GET_CLASS_STD SQL Statements
12.1.1
-
VIEW: APPS.IGS_PR_ACAD_LOAD_V
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT_OFROPT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view defines the valid unit offering options for a nominated admission program application unit. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT_OFROPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_OFROPT_V, object_name:IGS_PS_UNIT_OFR_OPT_OFROPT_V, status:VALID, product: IGS - Student System , description: This view defines the valid unit offering options for a nominated admission program application unit. , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_OFROPT_V ,
-
View: IGS_CA_TEACH_TO_LOAD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the teaching calendars for the give load calendar , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CA_VAL_DAIOC SQL Statements
12.1.1
-
APPS.IGS_AD_WRKFLOW_PKG SQL Statements
12.1.1