Search Results inq_entry_stat_id
Overview
The IGS_AD_ENT_INQ_PROGS table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically in the IGS (iGraduate) product family, which typically handles student administration and admissions. This table functions as a junction or mapping table that defines the relationship between inquiry entry statuses and specific academic programs. Its primary role is to store which programs are applicable or available for selection based on an applicant's current inquiry status, thereby enforcing business rules during the admissions inquiry and application process. The table's design ensures referential integrity and supports the configuration of valid program pathways for prospective students.
Key Information Stored
The table's columns store both business data and standard audit information. The key business columns are:
- ENT_INQ_PROG_ID: A mandatory, unique numeric identifier (NUMBER 15) serving as the primary key for each record in this table.
- INQ_ENTRY_STAT_ID: A mandatory foreign key (NUMBER 15) uniquely identifying an inquiry entry status, likely referencing a status master table.
- INQ_PROG_CODE_ID: A mandatory foreign key (NUMBER 15) uniquely identifying an inquiry program code, referencing a program catalog or definition table.
- CLOSED_IND: A VARCHAR2 column acting as a flag (e.g., 'Y'/'N') to indicate if the specific program mapping for a given status is no longer active or available for new inquiries.
- Standard WHO Columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN for auditing changes.
The uniqueness of the combination of INQ_ENTRY_STAT_ID and INQ_PROG_CODE_ID, enforced by the IGS_AD_ENT_INQ_PROGS_U2 index, is critical. It prevents duplicate program mappings for the same inquiry status.
Common Use Cases and Queries
This table is central to configuring and validating the admissions workflow. A primary use case is to determine all programs a prospective student can inquire about or apply to based on their current entry status. For example, an "International" inquiry status might be mapped to a different set of programs than a "Domestic" status. System administrators use this table to set up or modify these business rules. For reporting and data validation, common SQL patterns include fetching all active mappings or identifying programs linked to a specific status.
Sample Query: Retrieve all active program mappings for a specific inquiry entry status ID.
SELECT iep.ent_inq_prog_id,
iep.inq_entry_stat_id,
iep.inq_prog_code_id,
pc.program_code,
pc.program_name
FROM igs.igs_ad_ent_inq_progs iep
JOIN igs.igs_ps_prog_codes pc ON iep.inq_prog_code_id = pc.prog_code_id -- Assumed table/column
WHERE iep.inq_entry_stat_id = :p_status_id
AND NVL(iep.closed_ind, 'N') = 'N'
ORDER BY pc.program_code;
Related Objects
While the provided dependency information states the table does not reference other objects, it is intrinsically linked to several key entities in the IGS schema. It is referenced by the APPS synonym IGS_AD_ENT_INQ_PROGS, which is the standard access point for EBS applications. The table's foreign key columns, INQ_ENTRY_STAT_ID and INQ_PROG_CODE_ID, logically depend on master tables defining inquiry entry statuses (e.g., IGS_AD_ENT_STAT) and program codes (e.g., IGS_PS_PROG_CODES), respectively. These relationships are essential for maintaining data integrity, though they may be enforced at the application level rather than through database constraints. Reports and application forms that manage inquiry-to-program workflows will directly query or update this mapping table.
-
TABLE: IGS.IGS_AD_ENT_INQ_PROGS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_INQ_PROGS, object_name:IGS_AD_ENT_INQ_PROGS, status:VALID,
-
View: IGS_RC_I_E_PROGS_V
12.1.1
product: IGS - Student System , description: This view will be based on OSO public view AS_INTEREST_CODES_VL. We will only expose attributes in that VL that OSS needs. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RC_I_P_UNITSETS_V
12.1.1
product: IGS - Student System , description: This view will be based on OSO public view AS_INTEREST_CODES_VL. We will expose only attributes in that VL that OSS needs , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AD_ENT_PKG_ITEMS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_PKG_ITEMS, object_name:IGS_AD_ENT_PKG_ITEMS, status:VALID,
-
TABLE: IGS.IGS_AD_ENT_TEST_TYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_TEST_TYPS, object_name:IGS_AD_ENT_TEST_TYPS, status:VALID,
-
TABLE: IGS.IGS_AD_ENT_INQ_USET
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_INQ_USET, object_name:IGS_AD_ENT_INQ_USET, status:VALID,
-
View: IGS_PE_SRC_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SRC_TYPES, object_name:IGS_PE_SRC_TYPES, status:VALID, product: IGS - Student System , description: Person source types , implementation_dba_data: APPS.IGS_PE_SRC_TYPES ,
-
View: IGS_RC_I_P_UNITSETS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view will be based on OSO public view AS_INTEREST_CODES_VL. We will expose only attributes in that VL that OSS needs , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RC_I_E_PROGS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view will be based on OSO public view AS_INTEREST_CODES_VL. We will only expose attributes in that VL that OSS needs. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AD_ENT_ORG_UNITS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_ORG_UNITS, object_name:IGS_AD_ENT_ORG_UNITS, status:VALID,
-
View: IGS_PE_SRC_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: Person source types , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AD_I_ENTRY_STATS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_ENTRY_STATS, object_name:IGS_AD_I_ENTRY_STATS, status:VALID,
-
TABLE: IGS.IGS_AD_SS_REGIONS_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_SS_REGIONS_OLD, status:VALID,
-
View: IGS_PE_SRC_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Person source types form view , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGR_I_PKG_REDUCT
12.1.1
owner:IGS, object_type:TABLE, object_name:IGR_I_PKG_REDUCT, status:VALID,
-
VIEW: APPS.IGS_AD_ENT_PKG_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENT_PKG_ITEMS_V, object_name:IGS_AD_ENT_PKG_ITEMS_V, status:VALID,
-
TABLE: IGS.IGR_I_ENT_STATS
12.1.1
owner:IGS, object_type:TABLE, object_name:IGR_I_ENT_STATS, status:VALID,
-
View: IGS_PE_SRC_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SRC_TYPES_V, object_name:IGS_PE_SRC_TYPES_V, status:VALID, product: IGS - Student System , description: Person source types form view , implementation_dba_data: APPS.IGS_PE_SRC_TYPES_V ,
-
VIEW: APPS.IGS_AD_ENT_ORG_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENT_ORG_UNITS_V, object_name:IGS_AD_ENT_ORG_UNITS_V, status:VALID,
-
VIEW: APPS.IGS_AD_ENT_INQ_USET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENT_INQ_USET_V, object_name:IGS_AD_ENT_INQ_USET_V, status:VALID,
-
VIEW: APPS.IGS_PE_SRC_TYPES
12.1.1
-
VIEW: APPS.IGS_PE_SRC_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SRC_TYPES, object_name:IGS_PE_SRC_TYPES, status:VALID,
-
VIEW: APPS.IGS_AD_ENT_INQ_PROGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENT_INQ_PROGS_V, object_name:IGS_AD_ENT_INQ_PROGS_V, status:VALID,
-
VIEW: APPS.IGS_AD_ENT_TEST_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENT_TEST_TYPES_V, object_name:IGS_AD_ENT_TEST_TYPES_V, status:VALID,
-
TABLE: IGS.IGR_I_E_TESTTYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_I_E_TESTTYPS, object_name:IGR_I_E_TESTTYPS, status:VALID,
-
TABLE: IGS.IGR_I_E_ORGUNITS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_I_E_ORGUNITS, object_name:IGR_I_E_ORGUNITS, status:VALID,
-
VIEW: APPS.IGS_AD_INQ_ENTRY_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_ENTRY_STAT_V, object_name:IGS_AD_INQ_ENTRY_STAT_V, status:VALID,
-
Table: IGS_AD_ENT_TEST_TYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_TEST_TYPS, object_name:IGS_AD_ENT_TEST_TYPS, status:VALID, product: IGS - Student System , description: Stores test types corresponding to inquiry entry status - Obsolete , implementation_dba_data: IGS.IGS_AD_ENT_TEST_TYPS ,
-
VIEW: APPS.IGS_PE_SRC_TYPES_V
12.1.1
-
Table: IGS_RC_I_E_ORGUNITS
12.1.1
product: IGS - Student System , description: Stores organization units corresponding to inquiry entry status , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ENT_PKG_ITEMS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_PKG_ITEMS, object_name:IGS_AD_ENT_PKG_ITEMS, status:VALID, product: IGS - Student System , description: Stores inquiry package items corresponding to inquiry entry status - Obsolete , implementation_dba_data: IGS.IGS_AD_ENT_PKG_ITEMS ,
-
Table: IGS_RC_I_ENT_STATS
12.1.1
product: IGS - Student System , description: Stores inquiry entry statuses , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_I_ENTRY_STATS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_I_ENTRY_STATS_V, object_name:IGS_AD_I_ENTRY_STATS_V, status:VALID,
-
Table: IGS_AD_ENT_INQ_USET
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry unit sets corresponding to inquiry entry status - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ENT_TEST_TYPS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores test types corresponding to inquiry entry status - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ENT_INQ_PROGS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry programs corresponding to inquiry entry status - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_I_ENT_STATS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry entry statuses , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_SRC_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SRC_TYPES_V, object_name:IGS_PE_SRC_TYPES_V, status:VALID,
-
View: IGS_AD_ENT_PKG_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENT_PKG_ITEMS_V, object_name:IGS_AD_ENT_PKG_ITEMS_V, status:VALID, product: IGS - Student System , description: This view is created using a join between IGS_IN_ENQ_PKG_ITEM and IGS_AD_ENT_PKG_ITEMS - Obsolete , implementation_dba_data: APPS.IGS_AD_ENT_PKG_ITEMS_V ,
-
Table: IGS_AD_ENT_ORG_UNITS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_ORG_UNITS, object_name:IGS_AD_ENT_ORG_UNITS, status:VALID, product: IGS - Student System , description: Stores organization units corresponding to inquiry entry status - Obsolete , implementation_dba_data: IGS.IGS_AD_ENT_ORG_UNITS ,
-
Table: IGS_RC_I_E_ORGUNITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores organization units corresponding to inquiry entry status , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_I_E_TESTTYPS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores test types corresponding to inquiry entry status , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_SS_REGIONS
12.1.1
product: IGS - Student System , description: (Obsolete Table) Stores entry regions corresponding to entry status identifier , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_ENT_INQ_USET_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created using a join between IGS_AD_INQ_UNIT_SETS and IGS_AD_ENT_INQ_USET - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_ENT_PKG_ITEMS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created using a join between IGS_IN_ENQ_PKG_ITEM and IGS_AD_ENT_PKG_ITEMS - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ENT_ORG_UNITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores organization units corresponding to inquiry entry status - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_SS_REGIONS
12.2.2
product: IGS - Student System (Obsolete) , description: (Obsolete Table) Stores entry regions corresponding to entry status identifier , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ENT_PKG_ITEMS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry package items corresponding to inquiry entry status - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_ENT_INQ_PROGS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ENT_INQ_PROGS, object_name:IGS_AD_ENT_INQ_PROGS, status:VALID, product: IGS - Student System , description: Stores inquiry programs corresponding to inquiry entry status - Obsolete , implementation_dba_data: IGS.IGS_AD_ENT_INQ_PROGS ,
-
TABLE: IGS.IGS_PE_SRC_TYPES_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_SRC_TYPES_ALL, object_name:IGS_PE_SRC_TYPES_ALL, status:VALID,