Search Results ent_pkg_item_id
Overview
The table IGS_AD_ENT_PKG_ITEMS is a data object within the Oracle E-Business Suite (EBS) Student System (IGS) module. Its primary function was to store associations between specific inquiry entry statuses and the corresponding marketing or informational package items that were to be sent to prospective students. This table facilitated the automated management of communication materials during the admissions inquiry process. Critically, the official ETRM documentation explicitly marks this table as "Obsolete." This status indicates that while the table may still exist in the database schema for backward compatibility, its business logic is no longer actively maintained or used within the standard application workflows of versions 12.1.1 and 12.2.2. Its presence is typically for historical data reference or to support potential customizations.
Key Information Stored
The table's structure is designed to link two key entities via foreign key relationships. The primary identifier for each record is the ENT_PKG_ITEM_ID, which serves as the primary key. The core data stored consists of two foreign key columns that define the relationship. The INQ_ENTRY_STAT_ID column references a specific inquiry entry status from the IGS_AD_I_ENTRY_STATS table. The ENQUIRY_PACKAGE_ITEM column references a particular package item defined in the IGS_IN_ENQ_PKG_ITEM table. Together, these columns form a unique key (IGS_AD_ENT_PKG_ITEMS_UK), ensuring that a given status is not duplicated for the same package item.
Common Use Cases and Queries
Given the table's obsolete status, its use in active reporting or transactional processes is minimal in a vanilla EBS implementation. Its primary contemporary use case is for auditing historical data or analyzing legacy communication rules. A common query would involve joining the table to its parent tables to retrieve descriptive information. For example, to see all package items historically linked to a specific entry status, one might use a SQL pattern such as:
- SELECT iep.ENQUIRY_PACKAGE_ITEM, ies.ENTRY_STATUS, iep.ITEM_DESCRIPTION FROM IGS_AD_ENT_PKG_ITEMS aepi JOIN IGS_AD_I_ENTRY_STATS ies ON aepi.INQ_ENTRY_STAT_ID = ies.INQ_ENTRY_STAT_ID JOIN IGS_IN_ENQ_PKG_ITEM iep ON aepi.ENQUIRY_PACKAGE_ITEM = iep.ENQUIRY_PACKAGE_ITEM WHERE ies.ENTRY_STATUS = '<SPECIFIC_STATUS>';
Direct data manipulation (INSERT, UPDATE) on this table is strongly discouraged without a deep understanding of the obsolete logic it supported.
Related Objects
The table maintains defined foreign key relationships with two other tables in the IGS schema, as documented in the ETRM metadata:
- IGS_AD_I_ENTRY_STATS: This is the parent table for inquiry entry statuses. The relationship is established via the column IGS_AD_ENT_PKG_ITEMS.INQ_ENTRY_STAT_ID, which references a primary key in IGS_AD_I_ENTRY_STATS.
- IGS_IN_ENQ_PKG_ITEM: This is the parent table defining the available enquiry package items. The relationship is established via the column IGS_AD_ENT_PKG_ITEMS.ENQUIRY_PACKAGE_ITEM, which references a primary key in IGS_IN_ENQ_PKG_ITEM.
These relationships are critical for understanding the context of the data; any valid record in IGS_AD_ENT_PKG_ITEMS must have a corresponding valid ID in both of these parent tables.
-
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 ,
-
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 ,