Search Results igs_ca_gen_001
Overview
The view APPS.IGS_PE_PERSON_PREFS_ADM_V is a reporting and integration object within the Oracle E-Business Suite Student System (formerly Oracle Student System, now part of the Oracle Higher Education product family). It exposes admissions-related person preferences recorded against a person record, denormalising calendar instance attributes and alternate calendar codes so that consumers do not need to reconstruct the relationships among the person preference table, the calendar instance relationship table, and the calendar instance table themselves. The view is defined in the APPS schema and is therefore accessible to any responsibility or integration account granted SELECT on APPS objects.
The view is particularly relevant because it resolves the academic and admissions calendar instances associated with each person preference row and presents their start and end dates alongside short-form alternate calendar codes. This makes it suitable for downstream reporting, extracts, and interface programs that must present admissions calendar context without embedding the full calendar resolution logic.
Underlying Base Objects
The view is defined over four base objects: IGS_PE_PERS_PREFS, IGS_CA_INST_REL, and two aliased instances of IGS_CA_INST (aliased as CI1 and CI2).
IGS_PE_PERS_PREFS(aliasPP) is the driving table and supplies the person identifier, the academic calendar type and sequence number, the admissions calendar type and sequence number, the admission category, the admission process type, and the standard WHO columns.IGS_CA_INST_REL(aliasCIR) is the calendar instance relationship table. It links the academic calendar instance (superior) to the admissions calendar instance (subordinate).IGS_CA_INST(CI1) provides the start and end dates for the superior (academic) calendar instance.IGS_CA_INST(CI2) provides the start and end dates for the subordinate (admissions) calendar instance.
All joins to CIR, CI1, and CI2 are outer joins (indicated by the (+) operator), so rows in IGS_PE_PERS_PREFS are preserved even when no matching calendar relationship or calendar instance exists. The documentation records no additional referenced base objects beyond these.
Key Columns
PERSON_ID— the person identifier fromIGS_PE_PERS_PREFS, the primary linkage to the person record.ADM_ACAD_CAL_TYPEandADM_ACAD_CI_SEQUENCE_NUMBER— the academic calendar type and instance sequence number for the preference.- The fourth select expression —
SUBSTR(IGS_CA_GEN_001.CALP_GET_ALT_CD(...),1,10)— returns the short alternate calendar code for the academic calendar instance, truncated to ten characters. START_DTandEND_DTfromCI1— the start and end dates of the academic calendar instance.ADM_ADM_CAL_TYPEandADM_ADM_CI_SEQUENCE_NUMBER— the admissions calendar type and instance sequence number.- The ninth select expression — again
SUBSTR(IGS_CA_GEN_001.CALP_GET_ALT_CD(...),1,10)— returns the short alternate calendar code for the admissions calendar instance. START_DTandEND_DTfromCI2— the start and end dates of the admissions calendar instance.ADM_ADMISSION_CAT— the admission category associated with the preference.ADM_S_ADMISSION_PROCESS_TYPE— the admission process type.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard audit columns sourced fromIGS_PE_PERS_PREFS.
Common Use Cases and Queries
The view is used where admissions personnel preferences must be reported with resolved calendar dates and codes. Typical consumers include admissions reporting extracts, data warehouse loads, and integration interfaces that synchronise person preferences to external systems. Because the joins are outer, the view is safe for querying all preferences without filtering out records lacking a calendar relationship.
A representative query retrieves all admissions preferences for a person:
SELECT person_id, adm_acad_cal_type, adm_adm_cal_type,
adm_admission_cat, adm_s_admission_process_type
FROM apps.igs_pe_person_prefs_adm_v
WHERE person_id = :p_person_id;
A second example restricts output to preferences whose admissions calendar instance is currently active:
SELECT person_id, adm_adm_cal_type, start_dt, end_dt FROM apps.igs_pe_person_prefs_adm_v WHERE adm_adm_cal_type = :p_cal_type AND TRUNC(SYSDATE) BETWEEN start_dt AND end_dt;
The reference to IGS_CA_GEN_001.CALP_GET_ALT_CD in the view definition means the view depends on the IGS_CA_GEN_001 package, which must be valid and compiled for the view to return alternate calendar codes correctly. Queries that do not reference the alternate code columns still execute the function as part of the view's select list, so package validity is a prerequisite for reliable results.
-
VIEW: APPS.IGS_PE_PERSON_PREFS_ADM_V
12.1.1
-
VIEW: APPS.IGS_PE_PERSON_PREFS_ENQ_V
12.1.1
-
VIEW: APPS.IGSFV_CAL_PRD_EVNT_PAIRS
12.1.1
-
VIEW: APPS.IGSBV_CAL_PRD_EVNT_PAIRS
12.1.1
-
APPS.IGS_AS_VAL_ESVS SQL Statements
12.1.1
-
VIEW: APPS.IGS_PR_SUA_INQ_V
12.1.1
-
VIEW: APPS.IGSFV_CAL_PRD_EVNT_OFSTS
12.1.1
-
VIEW: APPS.IGSBV_CAL_PRD_EVNT_OFSTS
12.1.1
-
VIEW: APPS.IGS_CA_DA_INST_ALIAS_VAL_V
12.1.1
-
VIEW: APPS.IGS_AS_SUA_INQ_V
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_ASS_V
12.1.1
-
VIEW: APPS.IGS_AS_EXAM_SESSION_V
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_INQ_V
12.1.1
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
-
VIEW: APPS.IGS_CA_DA_INST_V
12.1.1
-
VIEW: APPS.IGS_FI_TP_RET_SCHD_V
12.1.1
-
PACKAGE BODY: APPS.IGS_CA_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_GEN_001, status:VALID,
-
VIEW: APPS.IGS_AS_ESE_VENUE_V
12.1.1
-
VIEW: APPS.IGS_FI_FEE_RET_SCHD_V
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_PAT_V
12.1.1
-
VIEW: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
-
View: IGS_PR_SUA_INQ_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PR_SUA_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_SUA_INQ_V, object_name:IGS_PR_SUA_INQ_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_SUA_INQ_V ,
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
-
View: IGS_PE_PERSON_PREFS_ENQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_PREFS_ENQ_V, object_name:IGS_PE_PERSON_PREFS_ENQ_V, status:VALID, product: IGS - Student System , description: View of enquiry columns on the person_prefs table. Incorporates alternate codes and CI start and end dates for both calendars. , implementation_dba_data: APPS.IGS_PE_PERSON_PREFS_ENQ_V ,
-
VIEW: APPS.IGS_EN_NON_ENR_STDNT_OU_ASS_V
12.1.1
-
VIEW: APPS.IGSFV_CALENDAR_PERIOD_EVENTS
12.1.1
-
VIEW: APPS.IGSBV_CALENDAR_PERIOD_EVENTS
12.1.1
-
VIEW: APPS.IGS_CA_DA_INST_DISPLAY_V
12.1.1
-
View: IGS_PE_PERSON_PREFS_ADM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_PREFS_ADM_V, object_name:IGS_PE_PERSON_PREFS_ADM_V, status:VALID, product: IGS - Student System , description: Admission columns on the person_prefs table. Incorporates alternate codes and CI start and end dates for both calendars. , implementation_dba_data: APPS.IGS_PE_PERSON_PREFS_ADM_V ,
-
View: IGS_PE_PERSON_PREFS_ENQ_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of enquiry columns on the person_prefs table. Incorporates alternate codes and CI start and end dates for both calendars. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_PREFS_ADM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Admission columns on the person_prefs table. Incorporates alternate codes and CI start and end dates for both calendars. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_ESE_EXMVNUS_UNAVLBL_V
12.1.1
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance) for even the prior fee calendars. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_CAL_PRD_EVNT_PAIRS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view for the entity Calendar Period Event Pairs that stores the pairing of two date alias instances and enables the definition of a period of time inclusive of the two date aliases. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_CAL_PRD_EVNT_PAIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CAL_PRD_EVNT_PAIRS, object_name:IGSFV_CAL_PRD_EVNT_PAIRS, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Period Event Pairs that stores the pairing of two date alias instances and enables the definition of a period of time inclusive of the two date aliases. , implementation_dba_data: APPS.IGSFV_CAL_PRD_EVNT_PAIRS ,
-
View: IGSBV_CAL_PRD_EVNT_PAIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CAL_PRD_EVNT_PAIRS, object_name:IGSBV_CAL_PRD_EVNT_PAIRS, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Period Event Pairs that stores the pairing of two date alias instances and enables the definition of a period of time inclusive of the two date aliases. , implementation_dba_data: APPS.IGSBV_CAL_PRD_EVNT_PAIRS ,
-
View: IGSFV_CAL_PRD_EVNT_OFSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CAL_PRD_EVNT_OFSTS, object_name:IGSFV_CAL_PRD_EVNT_OFSTS, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Period Event Offset that describes the relationship between two date alias instances. , implementation_dba_data: APPS.IGSFV_CAL_PRD_EVNT_OFSTS ,
-
View: IGSBV_CAL_PRD_EVNT_OFSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CAL_PRD_EVNT_OFSTS, object_name:IGSBV_CAL_PRD_EVNT_OFSTS, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Period Event Offset that describes the relationship between two date alias instances. , implementation_dba_data: APPS.IGSBV_CAL_PRD_EVNT_OFSTS ,
-
View: IGSFV_CAL_PRD_EVNT_OFSTS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view for the entity Calendar Period Event Offset that describes the relationship between two date alias instances. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_CAL_PRD_EVNT_OFSTS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view for the entity Calendar Period Event Offset that describes the relationship between two date alias instances. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V, object_name:IGS_FI_CNG_FCAT_LBL_SCA_PR_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V, status:VALID, product: IGS - Student System , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance) for even the prior fee calendars. , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V ,
-
View: IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_CAL_PRD_EVNT_PAIRS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view for the entity Calendar Period Event Pairs that stores the pairing of two date alias instances and enables the definition of a period of time inclusive of the two date aliases. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUA_INQ_V
12.2.2
product: IGS - Student System (Obsolete) , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUA_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_INQ_V, object_name:IGS_AS_SUA_INQ_V, status:VALID, product: IGS - Student System , description: - Retrofitted , implementation_dba_data: APPS.IGS_AS_SUA_INQ_V ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_V, status:VALID, product: IGS - Student System , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance). , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V ,
-
VIEW: APPS.IGS_EN_SUA_V
12.1.1
-
PACKAGE: APPS.IGS_CA_GEN_001
12.1.1