Search Results igs_ca_da_inst_v
Overview
IGS_CA_DA_INST_V is an Oracle EBS 12.1.1 / 12.2.2 view owned by the APPS schema within the IGS (Student System) product family. Its purpose is to expose resolved date information for date alias instances. A date alias instance is the physical occurrence of a named date alias within a particular calendar and calendar instance, which the Student System uses extensively for academic scheduling, term-based processing, admission cycles, and fee or enrolment cut-off logic.
The view enriches the base transactional data with two derived columns. The first, DERIVED_VAL, is computed by calling IGS_CA_GEN_002.CALS_CLC_DT_FROM_DAI, which calculates the actual date for the alias instance from its calendar context. The second, ALIAS_VAL, is computed by calling IGS_CA_GEN_001.CALP_SET_ALIAS_VALUE, which takes the absolute value and the derived date to resolve any offset constraints that apply to the instance. In this way the view shields consumers from the underlying PL/SQL functions and presents a single row per date alias instance that carries absolute, derived, and effective values side by side. Because the columns are function-derived rather than stored, the view is a convenient read-only interface for reporting and integration, but it is not suitable for bulk in-place updates.
Underlying Base Objects
The view is defined over a single documented table, IGS_CA_DA_INST, which holds the raw date alias instance records. Although the ETRM metadata for the view lists no further referenced objects, the SELECT text invokes two packaged functions that form its effective dependencies:
- IGS_CA_DA_INST — the base table supplying DT_ALIAS, SEQUENCE_NUMBER, CAL_TYPE, CI_SEQUENCE_NUMBER, ABSOLUTE_VAL, and the standard WHO audit columns.
- IGS_CA_GEN_002.CALS_CLC_DT_FROM_DAI — function that derives the calendar date from the date alias instance.
- IGS_CA_GEN_001.CALP_SET_ALIAS_VALUE — function that applies offset constraints, returning an effective alias value.
Because effective dates are resolved at query time rather than stored, any change to the underlying calendar, alias, or offset configuration is reflected immediately when the view is queried.
Key Columns
- DT_ALIAS — name of the date alias to which the instance belongs.
- SEQUENCE_NUMBER — sequence identifying the specific instance of the alias.
- CAL_TYPE — calendar type that scopes the alias (for example, academic or reporting calendar).
- CI_SEQUENCE_NUMBER — calendar instance sequence number, identifying the specific period or cycle.
- ABSOLUTE_VAL — the stored absolute value for the instance, before derivation.
- DERIVED_VAL — the date derived by CALS_CLC_DT_FROM_DAI for the given alias, calendar type, and calendar instance.
- ALIAS_VAL — the effective value returned after CALP_SET_ALIAS_VALUE applies offset constraints to ABSOLUTE_VAL against DERIVED_VAL.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard Oracle WHO audit columns inherited from the base table.
Common Use Cases and Queries
Typical scenarios include identifying the effective date of a term-related alias for a given calendar instance, comparing stored absolute values against derived and offset-adjusted values, and feeding date-sensitive data extracts into downstream reporting or integration.
- Retrieve all resolved dates for a specific calendar instance.
- Locate instances where the offset constraint changes the stored value.
- Join to calendar or alias definition tables to enrich reporting.
Sample queries:
SELECT dt_alias, sequence_number, cal_type, ci_sequence_number, absolute_val, derived_val, alias_val FROM igs_ca_da_inst_v WHERE cal_type = :p_cal_type AND ci_sequence_number = :p_ci_sequence_number;
SELECT dt_alias, sequence_number, absolute_val, derived_val, alias_val FROM igs_ca_da_inst_v WHERE absolute_val <> alias_val;
Results should be filtered by calendar type and instance to avoid full scans, since the derived columns invoke PL/SQL functions row by row.
-
View: IGS_CA_DA_INST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_DA_INST_V, object_name:IGS_CA_DA_INST_V, status:VALID, product: IGS - Student System , description: This view is used to provide derived, absolute and effective dates for the date alias instance. It also resolves any offset constraints which apply to the date alias instance. , implementation_dba_data: APPS.IGS_CA_DA_INST_V ,
-
View: IGS_CA_DA_INST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to provide derived, absolute and effective dates for the date alias instance. It also resolves any offset constraints which apply to the date alias instance. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_GR_VAL_GC SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
-
VIEW: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
-
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: IGS_FI_F_CAT_FEE_LBL_SCA_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). , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CA_VAL_DAIP SQL Statements
12.1.1
-
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 ,
-
APPS.IGS_CA_VAL_DAI SQL Statements
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: APPS.IGS_FI_F_TYP_CA_INST_LKP_V
12.1.1
-
APPS.IGS_GR_VAL_CRDP SQL Statements
12.1.1
-
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: APPS.IGS_AD_PERD_PS_OF_PAT_V
12.1.1
-
VIEW: APPS.IGS_AD_CAL_CONF_PERDADM_V
12.1.1
-
VIEW: APPS.IGS_AS_USEC_ATTEND_ENTRY_V
12.1.1
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_ALL_V
12.1.1
-
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 ,
-
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: APPS.IGS_GR_GRADUATE_REGISTER_RPT_V
12.1.1
-
APPS.IGS_CA_VAL_QLITY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_CA_VAL_DAIP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_VAL_DAIP, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_VAL_CRDP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_VAL_CRDP, status:VALID,
-
PACKAGE BODY: APPS.IGS_CA_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_GEN_002, status:VALID,
-
APPS.IGS_FI_VAL_FAS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_VAL_GC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_VAL_GC, status:VALID,
-
PACKAGE BODY: APPS.IGS_CA_VAL_CI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_VAL_CI, status:VALID,
-
PACKAGE BODY: APPS.IGS_CA_COMPUTE_DA_VAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_COMPUTE_DA_VAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_CA_VAL_DAI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_VAL_DAI, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_GEN_REFUNDS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_GEN_REFUNDS, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_DERIVE_GRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_DERIVE_GRADE, status:VALID,
-
PACKAGE BODY: APPS.IGS_CA_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CA_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_VAL_PCE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_PCE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_UAI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_UAI, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FTCI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FTCI, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FCCI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FCCI, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_VAL_CRDP
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_VAL_FAS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FAS, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_VAL_SCI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_SCI, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_ESE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_ESE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_VAL_ACA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_VAL_ACA, status:VALID,
-
View: IGS_AD_PERD_PS_OF_PAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PERD_PS_OF_PAT_V, object_name:IGS_AD_PERD_PS_OF_PAT_V, status:VALID, product: IGS - Student System , description: Describes a further breakdown of the program , implementation_dba_data: APPS.IGS_AD_PERD_PS_OF_PAT_V ,
-
PACKAGE BODY: APPS.IGS_AD_GEN_006
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_006, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_014
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_014, status:VALID,
-
View: IGS_AD_CAL_CONF_PERDADM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_CAL_CONF_PERDADM_V, object_name:IGS_AD_CAL_CONF_PERDADM_V, status:VALID, product: IGS - Student System , description: View of adm_perd_admission_cat and date aliases from dt_alias_instance. , implementation_dba_data: APPS.IGS_AD_CAL_CONF_PERDADM_V ,
-
PACKAGE BODY: APPS.IGS_PR_VAL_SPO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PR_VAL_SPO, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_008, status:VALID,