Search Results s_control_num
Overview
The IGS_RE_S_RES_CAL_CON 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. It stores system-level configuration for research calendar calculations. Its primary role is to define the date aliases used to determine the duration of a research teaching period. By storing aliases for effective start and end dates, this table enables the system to dynamically calculate equivalent full-time days for research activities based on the actual calendar dates referenced by those aliases, providing flexibility in managing diverse academic calendars.
Key Information Stored
The table is structurally simple but critical for date-driven research calculations. The key columns are:
- S_CONTROL_NUM (NUMBER): A mandatory, unique identifier for each research calendar configuration record. It is the primary key, enforced by the unique index IGS_RE_S_RES_CAL_CON_U1.
- EFFECTIVE_STRT_DT_ALIAS (VARCHAR2(10)): Stores the alias (a short code) pointing to the effective start date of a research teaching calendar. This column is indexed (IGS_RE_S_RES_CAL_CON_N1) for performance.
- EFFECTIVE_END_DT_ALIAS (VARCHAR2(10)): Stores the alias for the corresponding effective end date. As noted in the user's search context, this column is central to calculating the period's length and is also indexed (IGS_RE_S_RES_CAL_CON_N2). The number of equivalent full-time days is derived from the days between the dates these two aliases represent.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Track the audit trail for record creation and modification.
Common Use Cases and Queries
This table is primarily used in backend processes for configuring and interpreting research calendar periods. A common use case is during the setup of a research program or when generating reports on research load, where the system must resolve the date aliases to actual calendar dates to compute durations. Administrators may query this table to audit or verify the current calendar configuration. The fundamental query, as provided in the ETRM, is:
SELECT S_CONTROL_NUM,
EFFECTIVE_STRT_DT_ALIAS,
EFFECTIVE_END_DT_ALIAS,
CREATION_DATE
FROM IGS.IGS_RE_S_RES_CAL_CON;
A more advanced reporting query might join this table to a date alias master table (not specified in the provided metadata) to resolve the aliases into actual dates for display or calculation purposes. Troubleshooting often involves verifying the values in the EFFECTIVE_END_DT_ALIAS column if research period calculations are incorrect.
Related Objects
Based on the provided dependency information, the IGS_RE_S_RES_CAL_CON table is a referenced object. It is listed as being referenced by the APPS schema synonym named IGS_RE_S_RES_CAL_CON. This indicates that application code within the EBS suite accesses this table via the public synonym. The metadata states the table does not itself reference other objects, confirming it is a standalone configuration point. The unique index on S_CONTROL_NUM (IGS_RE_S_RES_CAL_CON_U1) suggests this column is likely referenced by foreign keys in other, dependent research tables (though not explicitly listed in the excerpt), which would store specific calendar instances linked to this configuration.
-
APPS.IGS_EN_DASHBOARD dependencies on IGS_EN_CAL_CONF
12.1.1
-
APPS.IGS_SS_ENR_DETAILS dependencies on IGS_EN_CAL_CONF
12.1.1
-
APPS.IGS_PR_GEN_006 dependencies on IGS_PR_S_PRG_CAL
12.1.1
-
APPS.IGS_GE_GEN_004 dependencies on IGS_DA_SETUP
12.1.1
-
APPS.IGS_AS_VAL_UAI dependencies on IGS_EN_SU_ATTEMPT
12.1.1
-
APPS.IGS_PR_GEN_005 dependencies on IGS_PR_S_PRG_CAL
12.1.1
-
TABLE: IGS.IGS_RE_S_RES_CAL_CON
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_S_RES_CAL_CON, object_name:IGS_RE_S_RES_CAL_CON, status:VALID,
-
APPS.IGS_PR_S_PRG_CAL_PKG dependencies on IGS_PR_S_PRG_CAL
12.1.1
-
APPS.IGS_GE_S_HELP_CTRL_PKG dependencies on IGS_GE_S_HELP_CTRL
12.1.1
-
TABLE: IGS.IGS_AV_STND_CONF_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STND_CONF_ALL, object_name:IGS_AV_STND_CONF_ALL, status:VALID,
-
APPS.IGS_AV_STND_CONF_PKG dependencies on IGS_AV_STND_CONF_ALL
12.1.1
-
APPS.IGS_PR_S_PRG_CONF_PKG dependencies on IGS_PR_S_PRG_CONF
12.1.1
-
APPS.IGS_RE_S_RES_CAL_CON_PKG dependencies on IGS_RE_S_RES_CAL_CON
12.1.1
-
TABLE: IGS.IGS_GE_S_GEN_CAL_CON
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GE_S_GEN_CAL_CON, object_name:IGS_GE_S_GEN_CAL_CON, status:VALID,
-
APPS.IGS_EN_VAL_SCI dependencies on IGS_GE_S_GEN_CAL_CON
12.1.1
-
TABLE: IGS.IGS_AS_CAL_CONF
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_CAL_CONF, object_name:IGS_AS_CAL_CONF, status:VALID,
-
APPS.IGS_AD_SS_APPL_UPD_PAGE dependencies on IGS_AD_CAL_CONF
12.1.1
-
TABLE: IGS.IGS_GE_S_HELP_CTRL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GE_S_HELP_CTRL, object_name:IGS_GE_S_HELP_CTRL, status:VALID,
-
View: IGS_AV_STND_CONF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_STND_CONF, object_name:IGS_AV_STND_CONF, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AV_STND_CONF ,
-
APPS.IGS_EN_CAL_CONF_PKG dependencies on IGS_EN_CAL_CONF
12.1.1
-
APPS.IGS_AD_GEN_007 dependencies on IGS_AD_CAL_CONF
12.1.1
-
View: IGS_AV_STND_CONF
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PR_S_PRG_CAL_PKG SQL Statements
12.1.1
-
APPS.IGS_RE_S_RES_CAL_CON_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_GE_S_GEN_CAL_CON
12.1.1
-
APPS.IGS_GE_S_GEN_CAL_CON_PKG dependencies on IGS_GE_S_GEN_CAL_CON
12.1.1
-
VIEW: APPS.IGS_AV_STND_CONF
12.1.1
-
APPS.IGS_PR_S_PRG_CAL_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
TABLE: IGS.IGS_DA_SETUP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_DA_SETUP, object_name:IGS_DA_SETUP, status:VALID,
-
APPS.IGS_EN_TRANSFER_APIS dependencies on IGS_EN_CAL_CONF
12.1.1
-
VIEW: APPS.IGS_AV_STND_CONF
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_STND_CONF, object_name:IGS_AV_STND_CONF, status:VALID,
-
TABLE: IGS.IGS_PR_S_PRG_CAL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_S_PRG_CAL, object_name:IGS_PR_S_PRG_CAL, status:VALID,
-
APPS.IGS_AS_ENTRY_CONF_PKG dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AD_CAL_CONF_PKG dependencies on IGS_AD_CAL_CONF
12.1.1
-
APPS.IGS_AS_VAL_UAI dependencies on IGS_AS_CAL_CONF
12.1.1
-
APPS.IGS_AS_DERIVE_GRADE dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_CAL_CONF_PKG dependencies on IGS_AS_CAL_CONF
12.1.1
-
APPS.IGS_EN_TRANSFER_APIS dependencies on IGS_CA_DA_INST_V
12.1.1
-
APPS.IGS_AV_STND_CONF_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_GEN_001 dependencies on IGS_CA_DA_INST_V
12.1.1
-
APPS.IGS_AD_VAL_APCOOD dependencies on IGS_AD_CAL_CONF
12.1.1
-
APPS.IGS_AD_CAL_CONF_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_AV_STND_CONF_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
Table: IGS_AV_STND_CONF_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes values used as the basis for default values for advanced standing tables , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_FUTURE_DT_TRANS dependencies on IGS_EN_CAL_CONF
12.1.1
-
Table: IGS_GE_S_HELP_CTRL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GE_S_HELP_CTRL, object_name:IGS_GE_S_HELP_CTRL, status:VALID, product: IGS - Student System , description: Describes the base URL location of your online documentation , implementation_dba_data: IGS.IGS_GE_S_HELP_CTRL ,
-
APPS.IGS_DA_SETUP_PKG dependencies on IGS_DA_SETUP
12.1.1
-
APPS.IGS_AD_SS_APPL_UPD_PAGE dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_AV_STND_CONF_PKG dependencies on IGS_GE_GEN_003
12.1.1
-
Table: IGS_AV_STND_CONF_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STND_CONF_ALL, object_name:IGS_AV_STND_CONF_ALL, status:VALID, product: IGS - Student System , description: Describes values used as the basis for default values for advanced standing tables , implementation_dba_data: IGS.IGS_AV_STND_CONF_ALL ,