Search Results related_dt_alias
Overview
The IGS_CA_DA_PAIR table is a core configuration table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Institutional Global Systems (IGS) module, which manages academic and administrative functions. Its primary role is to define logical pairs of date aliases. A date alias is not an actual calendar date but a named event, such as "START_SEMESTER_BREAK." By pairing two such aliases, the system can define a period of time, enabling the modeling of academic intervals like breaks, enrollment periods, or terms. This pairing is fundamental for time-based constraints and scheduling logic across the student lifecycle management components of EBS.
Key Information Stored
The table stores the relationship between two date aliases to demarcate a period. The key columns are:
- DT_ALIAS (VARCHAR2(10), Mandatory): The primary or context date alias name that defines the start of a paired relationship.
- RELATED_DT_ALIAS (VARCHAR2(10), Mandatory): The related date alias name that pairs with DT_ALIAS to define the end of a period. The combination of these two columns forms the table's unique primary key (IGS_CA_DA_PAIR_PK).
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Audit columns tracking the creation and modification history of each record.
The table's unique index (IGS_CA_DA_PAIR_U1) enforces that each (DT_ALIAS, RELATED_DT_ALIAS) combination is distinct, while a non-unique index (IGS_CA_DA_PAIR_N1) on RELATED_DT_ALIAS supports reverse lookups.
Common Use Cases and Queries
A primary use case is defining institutional breaks. For example, pairing 'START_SEM_BREAK' with 'END_SEM_BREAK' allows the system to identify the span of a semester break when actual date instances are assigned in a holiday calendar. This is critical for calculating deadlines, validating date entries, and generating academic calendars. Common queries involve retrieving all pairs for a given date alias or validating period definitions.
Sample Query 1: Retrieve all pairs for a specific date alias:
SELECT dt_alias, related_dt_alias
FROM igs.igs_ca_da_pair
WHERE dt_alias = 'START_SEM_BREAK';
Sample Query 2: List all defined date alias pairs:
SELECT dt_alias, related_dt_alias, creation_date
FROM igs.igs_ca_da_pair
ORDER BY dt_alias;
Related Objects
The IGS_CA_DA_PAIR table has defined foreign key relationships with the core date alias definition table, ensuring referential integrity. The related objects are:
- TABLE: IGS.IGS_CA_DA: The master table for date alias definitions. IGS_CA_DA_PAIR references it twice:
- Foreign Key: IGS_CA_DA_PAIR.DT_ALIAS → IGS_CA_DA
- Foreign Key: IGS_CA_DA_PAIR.RELATED_DT_ALIAS → IGS_CA_DA
- The table is also referenced by the APPS synonym IGS_CA_DA_PAIR, which is the standard access point for EBS application code and reports.
-
APPS.IGS_CA_DA_PAIR_PKG dependencies on IGS_CA_DA_PAIR
12.1.1
-
TABLE: IGS.IGS_CA_DA_PAIR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_DA_PAIR, object_name:IGS_CA_DA_PAIR, status:VALID,
-
APPS.IGS_CA_DA_INST_PAIR_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_CA_DA_INST_PAIR_V
12.1.1
-
View: IGS_CA_DA_INST_PAIR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_DA_INST_PAIR_V, object_name:IGS_CA_DA_INST_PAIR_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_CA_DA_INST_PAIR_V ,
-
Table: IGS_CA_DA_PAIR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_DA_PAIR, object_name:IGS_CA_DA_PAIR, status:VALID, product: IGS - Student System , description: Describes combination of date aliases into pairs , implementation_dba_data: IGS.IGS_CA_DA_PAIR ,
-
View: IGS_CA_DA_INST_PAIR_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_CA_DA_INST_PAIR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_DA_INST_PAIR, object_name:IGS_CA_DA_INST_PAIR, status:VALID,
-
APPS.IGS_CA_DA_PAIR_PKG SQL Statements
12.1.1
-
Table: IGS_CA_DA_PAIR
12.2.2
product: IGS - Student System (Obsolete) , description: Describes combination of date aliases into pairs , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_CA_DA_INST_PAIR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_DA_INST_PAIR_V, object_name:IGS_CA_DA_INST_PAIR_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_CA_DA_PAIR_PKG
12.1.1
-
APPS.IGS_CA_DA_PAIR_PKG dependencies on IGS_CA_VAL_DAP
12.1.1
-
APPS.IGS_CA_DA_PAIR_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_CA_INS_ROLL_CI dependencies on IGS_CA_DA_INST_PAIR
12.1.1
-
Table: IGS_CA_DA_INST_PAIR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_DA_INST_PAIR, object_name:IGS_CA_DA_INST_PAIR, status:VALID, product: IGS - Student System , description: 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: IGS.IGS_CA_DA_INST_PAIR ,
-
Table: IGS_CA_DA_INST_PAIR
12.2.2
product: IGS - Student System (Obsolete) , description: 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 ,
-
PACKAGE BODY: APPS.IGS_CA_DA_INST_PAIR_PKG
12.1.1
-
APPS.IGS_CA_DA_INST_PAIR_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_CA_DA_INST_PAIR_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_CA_DA_PAIR_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_CA_DA_PAIR_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_CA_DA_INST_PAIR_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_CA_INS_ROLL_CI dependencies on IGS_CA_DA_INST
12.1.1
-
APPS.IGS_CA_INS_ROLL_CI SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_CA_INS_ROLL_CI
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,