Search Results prog_code_reduc_cd
Overview
IGS.IGS_AD_I_ENTRY_STATS is a transactional configuration table within the Oracle E-Business Suite Advanced Admissions and Recruitment (IGS) product family. It stores inquiry entry statuses: discrete states that characterize where an enquiry (prospective applicant record) sits within the admissions funnel before it becomes a formal application. The table acts as a controlled reference set used throughout the admissions subsystem to classify and drive enquiry processing, reporting, and downstream conversions.
Within the ETRM documentation this object is explicitly flagged as Obsolete. Organizations running a current 12.1.1 or 12.2.2 instance should treat it as a legacy artifact inherited from earlier admissions releases; new configuration should generally be modeled against supported replacement structures. The table remains VALID at the database level and continues to be physically present in the APPS_TS_TX_DATA tablespace with a PCTFREE of 10.
Applying a heuristic Data Vault classification, the mined FK structure places this object as a hub. It carries a single surrogate/natural business key (INQ_ENTRY_STAT_ID) that other admissions tables reference, with the remaining attributes behaving as descriptive context. This classification should be read as a modeling suggestion for integration or warehouse design rather than as a statement of EBS internal architecture.
Key Information Stored
The table contains twenty documented columns. The most significant are:
- INQ_ENTRY_STAT_ID (NUMBER(15)) — Unique identifier and primary key of the entry status row; part of index IGS_AD_I_ENTRY_STATS_PK.
- INQ_ENTRY_STAT (VARCHAR2(30)) — The status code/value itself; the business-key candidate enforced by unique index IGS_AD_I_ENTRY_STATS_U1.
- DESCRIPTION (VARCHAR2(240)) — Human-readable description of the entry status.
- HIERARCHY_CD (VARCHAR2(30)) — Hierarchy code used to group or order statuses.
- ENQUIRY_SOURCE_TYPE (VARCHAR2(10)) — Source classification of the enquiry; indexed non-uniquely (N1).
- ACTIVITY_SOURCE_CD (VARCHAR2(30)) — Activity source code associated with the status.
- INSTITUTION_TYPE (VARCHAR2(20)) — Institution type the status applies to; indexed (N3).
- TEST_SOURCE_ID (NUMBER(15)) — Self-reported test source identifier; indexed (N4) and the column referenced by the user's search term.
- IMP_SOURCE_TYPE_ID (NUMBER(15)) — Import source type identifier; indexed (N2).
- EMAIL_LINK (VARCHAR2(240)) — Email address associated with the status.
- PROG_CODE_REDUC_CD, UNIT_SET_REDUC_CD, PKG_ITEM_REDUC_CD (VARCHAR2(30) each) — Reduction codes describing program, unit-set, and package-item behaviour tied to the status.
- CLOSED_IND (VARCHAR2) — Indicator that the status represents a closed enquiry.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS WHO audit columns.
- CONFIGURABILITY_FUNC_NAME (VARCHAR2(30)) — Configurability function name.
Common Use Cases and Queries
The principal use case is inquiry-funnel reporting: joining entry statuses to enquiries to count prospects in each stage. A typical lookup retrieves statuses filtered by source or institution type:
SELECT INQ_ENTRY_STAT_ID, INQ_ENTRY_STAT, DESCRIPTION FROM IGS.IGS_AD_I_ENTRY_STATS WHERE CLOSED_IND = 'N';SELECT ... WHERE ENQUIRY_SOURCE_TYPE = :source AND INSTITUTION_TYPE = :inst_type;SELECT ... WHERE TEST_SOURCE_ID = :test_source_id;— the pattern implied by the user's search on test_source_id.
Status records are consumed when enrolling enquiries into programs, unit sets, packages, and test types, and when converting enquiries to applications through IGS_IN_ENQUIRY_APPL_ALL. Given the obsolete status, reporting should primarily use existing data rather than extending this configuration.
Related Objects
The table participates in a small, well-defined FK cluster. Foreign keys reference:
- IGS_AD_CODE_CLASSES via TEST_SOURCE_ID.
- IGS_IN_ENQ_SRC_TYPE via ENQUIRY_SOURCE_TYPE.
- IGS_OR_ORG_INST_TYPE_ALL via INSTITUTION_TYPE.
- IGS_PE_SRC_TYPES_ALL via IMP_SOURCE_TYPE_ID.
Tables that reference this hub through INQ_ENTRY_STAT_ID include IGS_AD_ENT_ORG_UNITS, IGS_AD_ENT_PKG_ITEMS, IGS_AD_ENT_INQ_PROGS, IGS_AD_ENT_TEST_TYPS, IGS_AD_ENT_INQ_USET, IGS_AD_SS_REGIONS, and IGS_IN_ENQUIRY_APPL_ALL. These downstream relationships confirm the table's role as a central status reference driving enquiry enrolment and application conversion.
-
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,
-
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,
-
View: 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, product: IGS - Student System , description: This view is created using a join between IGS_AD_I_ENTRY_STATS and IGS_LOOKUPS_VIEW - Obsolete , implementation_dba_data: APPS.IGS_AD_I_ENTRY_STATS_V ,
-
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,
-
View: IGS_RC_I_ENTRY_STATS_V
12.1.1
product: IGS - Student System , description: Base View for Inquiry Entry Status. The following attributes in the old views are made obsolete HIERARCHY_CD, HIERARCHY_MEANING, ENQUIRY_SOURCE_TYPE, ACTIVITY_SOURCE_CD, TEST_SOURCE_ID, PROG_CODE_REDUC_CD, UNIT_SET_REDUC_CD. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_I_ENTRY_STATS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created using a join between IGS_AD_I_ENTRY_STATS and IGS_LOOKUPS_VIEW - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_INQ_ENTRY_STAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Obsolete - This view is created using a join between IGS_AD_I_ENTRY_STATS, IGS_AD_CODE_CLASSES, IGS_PE_SRC_TYPES, IGS_IN_ENQ_SRC_TYPE and IGS_LOOKUPS_VIEW , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RC_I_ENTRY_STATS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for Inquiry Entry Status. The following attributes in the old views are made obsolete HIERARCHY_CD, HIERARCHY_MEANING, ENQUIRY_SOURCE_TYPE, ACTIVITY_SOURCE_CD, TEST_SOURCE_ID, PROG_CODE_REDUC_CD, UNIT_SET_REDUC_CD. , implementation_dba_data: Not implemented in this database ,
-
View: 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, product: IGS - Student System , description: Obsolete - This view is created using a join between IGS_AD_I_ENTRY_STATS, IGS_AD_CODE_CLASSES, IGS_PE_SRC_TYPES, IGS_IN_ENQ_SRC_TYPE and IGS_LOOKUPS_VIEW , implementation_dba_data: APPS.IGS_AD_INQ_ENTRY_STAT_V ,
-
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'. ,