Search Results alternate_code
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
-
VIEW: APPS.IGSFV_ACADEMIC_CATALOGS
12.1.1
-
VIEW: APPS.IGS_AD_PS_APL_INST_CNTX_V
12.1.1
-
VIEW: APPS.IGS_AD_PS_APPL_INST_CONTEXT_V
12.1.1
-
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: APPS.IGSBV_CALENDAR_PERIODS
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: IGSFV_ACADEMIC_CATALOGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ACADEMIC_CATALOGS, object_name:IGSFV_ACADEMIC_CATALOGS, status:VALID, product: IGS - Student System , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: APPS.IGSFV_ACADEMIC_CATALOGS ,
-
VIEW: APPS.IGS_AD_APPL_ADMAPPL_V
12.1.1
-
VIEW: APPS.IGSFV_CALENDAR_PERIODS
12.1.1
-
View: IGS_AD_PS_APL_INST_CNTX_V
12.2.2
product: IGS - Student System (Obsolete) , description: Application instance context view , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APL_INST_CNTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APL_INST_CNTX_V, object_name:IGS_AD_PS_APL_INST_CNTX_V, status:VALID, product: IGS - Student System , description: Application instance context view , implementation_dba_data: APPS.IGS_AD_PS_APL_INST_CNTX_V ,
-
VIEW: APPS.IGSBV_STUDENT_SPNSR_RELATIONS
12.1.1
-
VIEW: APPS.IGFFV_DISBURSEMENT_ADJUSTMENTS
12.1.1
-
VIEW: APPS.IGSFV_STUDENT_SPNSR_RELATIONS
12.1.1
-
View: IGSFV_ACADEMIC_CATALOGS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_CALENDAR_PERIODS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view for the entity Calendar Periods that describes an instance of a calendar type. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APPL_INST_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_CONTEXT_V, object_name:IGS_AD_PS_APPL_INST_CONTEXT_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST_APLINST_V for forms requiring this table as a context block. , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_CONTEXT_V ,
-
VIEW: APPS.IGFBV_DISBURSEMENT_ADJUSTMENTS
12.1.1
-
View: IGSBV_CALENDAR_PERIODS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CALENDAR_PERIODS, object_name:IGSBV_CALENDAR_PERIODS, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Periods that describes an instance of a calendar type. , implementation_dba_data: APPS.IGSBV_CALENDAR_PERIODS ,
-
View: IGSFV_CALENDAR_PERIODS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view for the entity Calendar Periods that describes an instance of a calendar type. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APPL_INST_CONTEXT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PS_APPL_INST_APLINST_V for forms requiring this table as a context block. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL_HIST_APHSTRY_V
12.1.1
-
View: IGSFV_CALENDAR_PERIODS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CALENDAR_PERIODS, object_name:IGSFV_CALENDAR_PERIODS, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Periods that describes an instance of a calendar type. , implementation_dba_data: APPS.IGSFV_CALENDAR_PERIODS ,
-
VIEW: APPS.IGSFV_AD_ADM_APPL
12.1.1
-
VIEW: APPS.IGS_AD_DES_BATCH_DEF_DET_V
12.1.1
-
View: IGS_AD_APPL_ADMAPPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_ADMAPPL_V, object_name:IGS_AD_APPL_ADMAPPL_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_APPL_ALL table. Incorporates alternate codes and calendar instance start and end dates for both the Academic and Admission calendars. , implementation_dba_data: APPS.IGS_AD_APPL_ADMAPPL_V ,
-
View: IGS_AD_APPL_ADMAPPL_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_APPL_ALL table. Incorporates alternate codes and calendar instance start and end dates for both the Academic and Admission calendars. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_X_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_GRP_V, object_name:IGS_PS_USEC_X_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_X_GRP_V ,
-
VIEW: APPS.IGS_PS_US_EM_GRP_V
12.1.1
-
View: IGS_PS_USO_CM_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USO_CM_GRP_V, object_name:IGS_PS_USO_CM_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USO_CM_GRP_V ,
-
View: IGS_PS_US_EM_GRP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USO_CM_GRP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_US_EM_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_US_EM_GRP_V, object_name:IGS_PS_US_EM_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_US_EM_GRP_V ,
-
View: IGS_PS_USEC_X_GRP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APPL_HIST_APHSTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_HIST_APHSTRY_V, object_name:IGS_AD_APPL_HIST_APHSTRY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_HIST_APHSTRY_V ,
-
View: IGS_AD_APPL_HIST_APHSTRY_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_PR_COHORT_INSTS
12.1.1
-
View: IGF_AP_AWARD_YEAR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Award Years , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_AWARD_YEAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_AWARD_YEAR_V, object_name:IGF_AP_AWARD_YEAR_V, status:VALID, product: IGF - Financial Aid , description: Award Years , implementation_dba_data: APPS.IGF_AP_AWARD_YEAR_V ,
-
VIEW: APPS.IGS_PS_USO_CM_GRP_V
12.1.1
-
View: IGS_PS_UNIT_OFFER_PAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFFER_PAT_V, object_name:IGS_PS_UNIT_OFFER_PAT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFFER_PAT_V ,
-
View: IGS_PS_UNIT_OFFER_PAT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_X_GRP_V
12.1.1
-
VIEW: APPS.IGSFV_AD_ADM_PS_APPL_INST
12.1.1
-
VIEW: APPS.IGSFV_PERSON_DEPOSITS
12.1.1
-
View: IGSBV_CALENDAR_PERIOD_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CALENDAR_PERIOD_EVENTS, object_name:IGSBV_CALENDAR_PERIOD_EVENTS, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Period Event that describes an instance of a date alias in a calendar instance. , implementation_dba_data: APPS.IGSBV_CALENDAR_PERIOD_EVENTS ,
-
View: IGSFV_CALENDAR_PERIOD_EVENTS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view for the entity Calendar Period Event, describes an instance of a date alias in a calendar instance. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_CALENDAR_PERIOD_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CALENDAR_PERIOD_EVENTS, object_name:IGSFV_CALENDAR_PERIOD_EVENTS, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Period Event, describes an instance of a date alias in a calendar instance. , implementation_dba_data: APPS.IGSFV_CALENDAR_PERIOD_EVENTS ,
-
View: IGSBV_STUDENT_SPNSR_RELATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_SPNSR_RELATIONS, object_name:IGSBV_STUDENT_SPNSR_RELATIONS, status:VALID, product: IGS - Student System , description: Holds sponsor student relation details , implementation_dba_data: APPS.IGSBV_STUDENT_SPNSR_RELATIONS ,