Search Results inq_prog_pkg_item_id
Overview
The IGS_AD_I_PRG_PKG_ITM table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Admissions (IGS) module. It functions as a junction or mapping table that establishes relationships between inquiry program codes and specific inquiry package items. Its primary role is to define which standardized inquiry items (e.g., brochures, application forms, specific information packets) are associated with a particular academic inquiry program. This configuration is essential for managing the automated or semi-automated fulfillment of information requests from prospective students during the admissions lifecycle.
Key Information Stored
The table stores the linkage metadata and its lifecycle status. The critical columns are:
- INQ_PROG_PKG_ITEM_ID: The primary key (PK), a system-generated unique identifier for each specific program-to-item relationship record.
- INQ_PROG_CODE_ID: A foreign key (FK) referencing the unique identifier of an inquiry program (IGS_AD_INQ_PROGS). This defines the program side of the relationship.
- ENQUIRY_PACKAGE_ITEM: A foreign key (FK) referencing a specific item code (IGS_IN_ENQ_PKG_ITEM). This defines the package item side of the relationship.
- CLOSED_IND: A status flag indicating whether this specific program-item association is active or has been closed, allowing for historical tracking without physical deletion.
- 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.
Common Use Cases and Queries
A primary use case is generating reports or lists of all information package items required for a specific inquiry program, often for operational checklists or fulfillment system interfaces. Another is validating or auditing configuration setup. The user's search for "inq_prog_pkg_item_id" suggests direct interaction with this key identifier, likely for data retrieval or integration purposes. Common query patterns include fetching all active items for a program or finding which programs use a specific item.
Sample Query: Retrieve all active package items for a specific Inquiry Program Code ID.
SELECT ipi.enquiry_package_item,
ipi.closed_ind
FROM igs.igs_ad_i_prg_pkg_itm ipi
WHERE ipi.inq_prog_code_id = :p_inq_prog_code_id
AND NVL(ipi.closed_ind, 'N') = 'N'
ORDER BY ipi.enquiry_package_item;
Sample Query: Find the primary key (INQ_PROG_PKG_ITEM_ID) for a specific program-item mapping.
SELECT inq_prog_pkg_item_id FROM igs.igs_ad_i_prg_pkg_itm WHERE inq_prog_code_id = :p_prog_code_id AND enquiry_package_item = :p_package_item;
Related Objects
The table's integrity is maintained through defined foreign key relationships, integrating it into the broader Admissions data model.
- Primary Key Reference: The table's PK (INQ_PROG_PKG_ITEM_ID) is referenced by other objects in the APPS schema, as indicated in the dependencies, though specific object names are not listed in the provided excerpt.
- Foreign Key Dependencies (This table references):
- TABLE: IGS.IGS_AD_INQ_PROGS via column INQ_PROG_CODE_ID. This joins to the master definition of inquiry programs.
- TABLE: IGS.IGS_IN_ENQ_PKG_ITEM via column ENQUIRY_PACKAGE_ITEM. This joins to the master list of available inquiry package items.
These relationships are critical for any join query that requires descriptive information about the program or the item beyond their identifiers.
-
TABLE: IGS.IGS_AD_I_PRG_PKG_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_PRG_PKG_ITM, object_name:IGS_AD_I_PRG_PKG_ITM, status:VALID,
-
VIEW: APPS.IGS_AD_INQ_PROG_PKG_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_PROG_PKG_ITEMS_V, object_name:IGS_AD_INQ_PROG_PKG_ITEMS_V, status:VALID,
-
View: IGS_AD_INQ_PROG_PKG_ITEMS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created using a join between IGS_AD_I_PRG_PKG_ITM and IGS_IN_ENQ_PKG_ITEM - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_I_PRG_PKG_ITM
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry package items corresponding to inquiry program codes - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_I_PRG_PKG_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_PRG_PKG_ITM, object_name:IGS_AD_I_PRG_PKG_ITM, status:VALID, product: IGS - Student System , description: Stores inquiry package items corresponding to inquiry program codes - Obsolete , implementation_dba_data: IGS.IGS_AD_I_PRG_PKG_ITM ,
-
View: IGS_AD_INQ_PROG_PKG_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INQ_PROG_PKG_ITEMS_V, object_name:IGS_AD_INQ_PROG_PKG_ITEMS_V, status:VALID, product: IGS - Student System , description: This view is created using a join between IGS_AD_I_PRG_PKG_ITM and IGS_IN_ENQ_PKG_ITEM - Obsolete , implementation_dba_data: APPS.IGS_AD_INQ_PROG_PKG_ITEMS_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'. ,
-
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'. ,