Search Results enquiry_package_item
Overview
The IGS_IN_APPLML_PKGITM table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the IGS (iGrants) module. It functions as a transactional table designed to store detailed records of items included within an enquiry package. An enquiry package is a collection of informational materials or items sent to a prospective applicant in response to their initial enquiry. The table's primary role is to track which specific items (ENQUIRY_PACKAGE_ITEM) were associated with a particular applicant's enquiry (identified by PERSON_ID and ENQUIRY_APPL_NUMBER), including the mailing status and date. Notably, the provided documentation explicitly marks this table as "Obsolete," indicating it is part of a legacy process that may have been superseded in later application flows, though it remains present and valid in the schema.
Key Information Stored
The table's columns capture the core business data and standard auditing information. The primary business key is a composite of PERSON_ID, ENQUIRY_APPL_NUMBER, and ENQUIRY_PACKAGE_ITEM, which uniquely identifies a single package item for an applicant's enquiry. The ENQUIRY_PACKAGE_ITEM column (VARCHAR2(10)) holds the code for the mailed item. Critical status columns include MAILED_DT, which records the date the item was physically dispatched, and DONOT_MAIL_IND, a flag that can be set to prevent mailing for a specific item. The table is fully audited with standard "Who" columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and concurrent program tracking columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE).
Common Use Cases and Queries
This table supports operational reporting and audit trails related to applicant communication and fulfillment processes. Common use cases include generating reports of all items mailed to applicants within a specific date range, identifying items flagged to not be mailed, and reconciling package fulfillment. A typical query to retrieve package details for a specific applicant would leverage the primary key columns. For reporting purposes, this table is often joined to person and enquiry header tables.
- Sample Query - Retrieve Mailed Package Items for an Applicant:
SELECT enquiry_package_item, mailed_dt, donot_mail_ind
FROM igs.igs_in_applml_pkgitm
WHERE person_id = :p_person_id
AND enquiry_appl_number = :p_enquiry_number
ORDER BY mailed_dt DESC; - Sample Query - Audit Items Mailed in a Period:
SELECT person_id, enquiry_appl_number, enquiry_package_item, mailed_dt, created_by
FROM igs.igs_in_applml_pkgitm
WHERE mailed_dt BETWEEN :p_start_date AND :p_end_date
AND donot_mail_ind IS NULL;
Related Objects
The table's integrity is enforced through its primary key constraint (IGS_IN_APPLML_PKGITM_PK) on the composite of PERSON_ID, ENQUIRY_APPL_NUMBER, and ENQUIRY_PACKAGE_ITEM. It maintains referential integrity through foreign key relationships. Based on the provided metadata, the ENQUIRY_PACKAGE_ITEM column references the IGS_IN_ENQ_PKG_ITEM table. This relationship validates that the item code stored in IGS_IN_APPLML_PKGITM exists as a valid, predefined item in the IGS_IN_ENQ_PKG_ITEM reference table. The unique index (IGS_IN_APPLML_PKGITM_U1) supports the primary key, and a non-unique index (IGS_IN_APPLML_PKGITM_N1) on ENQUIRY_PACKAGE_ITEM facilitates efficient joins to its parent reference table.
-
TABLE: IGS.IGS_IN_APPLML_PKGITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_APPLML_PKGITM, object_name:IGS_IN_APPLML_PKGITM, status:VALID,
-
View: IGS_IN_LVLTYP_PKG_IT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_IN_INFTYP_PKG_IT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_INFTYP_PKG_IT, object_name:IGS_IN_INFTYP_PKG_IT, status:VALID,
-
TABLE: IGS.IGS_IN_LVLTYP_PKG_IT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_LVLTYP_PKG_IT, object_name:IGS_IN_LVLTYP_PKG_IT, status:VALID,
-
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,
-
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,
-
View: IGS_IN_LVLTYP_PKG_IT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_LVLTYP_PKG_IT_V, object_name:IGS_IN_LVLTYP_PKG_IT_V, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGS_IN_LVLTYP_PKG_IT_V ,
-
VIEW: APPS.IGR_I_A_PKGITM_V
12.1.1
-
TABLE: IGS.IGS_PS_IN_PKG_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_IN_PKG_ITM, object_name:IGS_PS_IN_PKG_ITM, status:VALID,
-
TABLE: IGS.IGS_AD_I_UST_PKG_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_UST_PKG_ITM, object_name:IGS_AD_I_UST_PKG_ITM, status:VALID,
-
VIEW: APPS.IGS_IN_LVLTYP_PKG_IT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_LVLTYP_PKG_IT_V, object_name:IGS_IN_LVLTYP_PKG_IT_V, status:VALID,
-
View: IGS_RC_I_A_PKGITM_V
12.1.1
product: IGS - Student System , description: Package Items requested during Inquiry , implementation_dba_data: Not implemented in this database ,
-
View: IGS_RC_I_A_PKGITM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Package Items requested during Inquiry , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_IN_LVLTYP_PKG_IT_V
12.1.1
-
View: IGR_I_A_PKGITM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Package Items requested during Inquiry , implementation_dba_data: Not implemented in this database ,
-
View: IGR_I_A_PKGITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_A_PKGITM_V, object_name:IGR_I_A_PKGITM_V, status:VALID, product: IGS - Student System , description: Package Items requested during Inquiry , implementation_dba_data: APPS.IGR_I_A_PKGITM_V ,
-
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: 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.IGS_IN_ENQ_PKG_ITEM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_ENQ_PKG_ITEM, object_name:IGS_IN_ENQ_PKG_ITEM, status:VALID,
-
Table: IGS_IN_APPLML_PKGITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_APPLML_PKGITM, object_name:IGS_IN_APPLML_PKGITM, status:VALID, product: IGS - Student System , description: This table stores the details of enquiry package - Obsolete , implementation_dba_data: IGS.IGS_IN_APPLML_PKGITM ,
-
VIEW: APPS.IGR_I_A_PKGITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_A_PKGITM_V, object_name:IGR_I_A_PKGITM_V, status:VALID,
-
TABLE: IGS.IGS_SS_INQ_INFO_REQ
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQ_INFO_REQ, object_name:IGS_SS_INQ_INFO_REQ, 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: APPS.IGS_AD_I_UST_PKG_ITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_I_UST_PKG_ITM_V, object_name:IGS_AD_I_UST_PKG_ITM_V, status:VALID,
-
VIEW: APPS.IGS_IN_APPLML_PKGITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPLML_PKGITM_V, object_name:IGS_IN_APPLML_PKGITM_V, status:VALID,
-
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_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 ,
-
Table: IGS_AD_I_UST_PKG_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_I_UST_PKG_ITM, object_name:IGS_AD_I_UST_PKG_ITM, status:VALID, product: IGS - Student System , description: Stores inquiry package items corresponding to inquiry unit set code - Obsolete , implementation_dba_data: IGS.IGS_AD_I_UST_PKG_ITM ,
-
Table: IGS_IN_ENQ_PKG_ITEM
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes correspondence, either system or non-system generated, which can be included in an enquiry package - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_INFTYP_PKG_IT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_INFTYP_PKG_IT, object_name:IGS_IN_INFTYP_PKG_IT, status:VALID, product: IGS - Student System , description: This entity describes the enquiry package items available to a particular information type, example. fees information may be for a course or fees enquiry - Obsolete , implementation_dba_data: IGS.IGS_IN_INFTYP_PKG_IT ,
-
Table: IGS_IN_LVLTYP_PKG_IT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes package items available to a particular level of enquiry Examples . fees information may be relevant to a faculty, and institution level enquiry - Obsolete , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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 ,
-
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 ,
-
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_PS_IN_PKG_ITM
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the package correspondence items which makeup an enquiry package for a program. This may include system and non-system generated items of correspondence. Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_INFTYP_PKG_IT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the enquiry package items available to a particular information type, example. fees information may be for a course or fees enquiry - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_APPLML_PKGITM
12.2.2
product: IGS - Student System (Obsolete) , description: This table stores the details of enquiry package - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_ENQ_PKG_ITEM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_ENQ_PKG_ITEM, object_name:IGS_IN_ENQ_PKG_ITEM, status:VALID, product: IGS - Student System , description: This entity describes correspondence, either system or non-system generated, which can be included in an enquiry package - Obsolete , implementation_dba_data: IGS.IGS_IN_ENQ_PKG_ITEM ,
-
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_UST_PKG_ITM
12.2.2
product: IGS - Student System (Obsolete) , description: Stores inquiry package items corresponding to inquiry unit set code - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_IN_APPLML_PKGITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPLML_PKGITM_V, object_name:IGS_IN_APPLML_PKGITM_V, status:VALID, product: IGS - Student System , description: Form view for enquiry application mailed package items - Obsolete , implementation_dba_data: APPS.IGS_IN_APPLML_PKGITM_V ,
-
Table: IGS_IN_LVLTYP_PKG_IT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_LVLTYP_PKG_IT, object_name:IGS_IN_LVLTYP_PKG_IT, status:VALID, product: IGS - Student System , description: This entity describes package items available to a particular level of enquiry Examples . fees information may be relevant to a faculty, and institution level enquiry - Obsolete , implementation_dba_data: IGS.IGS_IN_LVLTYP_PKG_IT ,
-
Table: IGS_PS_IN_PKG_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_IN_PKG_ITM, object_name:IGS_PS_IN_PKG_ITM, status:VALID, product: IGS - Student System , description: This entity describes the package correspondence items which makeup an enquiry package for a program. This may include system and non-system generated items of correspondence. Obsolete , implementation_dba_data: IGS.IGS_PS_IN_PKG_ITM ,
-
View: IGS_AD_I_UST_PKG_ITM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_I_UST_PKG_ITM_V, object_name:IGS_AD_I_UST_PKG_ITM_V, status:VALID, product: IGS - Student System , description: This view is created using a join between IGS_AD_I_UST_PKG_ITM and IGS_IN_ENQ_PKG_ITEM - Obsolete , implementation_dba_data: APPS.IGS_AD_I_UST_PKG_ITM_V ,
-
View: IGS_AD_I_UST_PKG_ITM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created using a join between IGS_AD_I_UST_PKG_ITM and IGS_IN_ENQ_PKG_ITEM - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_IN_APPLML_PKGITM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Form view for enquiry application mailed package items - Obsolete , implementation_dba_data: Not implemented in this database ,
-
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'. ,