Search Results igs_in_applml_pkgitm
Overview
The IGS_IN_APPLML_PKGITM table is a data object within the Oracle E-Business Suite (EBS) Student System (IGS) module. Its primary role was to store detailed transactional records linking specific enquiry packages to individual student applications. This table facilitated the management of application materials and requirements for student enquiries within the system. Critically, the official ETRM documentation explicitly marks this table as "Obsolete." This status indicates that while the table may physically exist in a database for historical data retention or upgrade compatibility, it is no longer actively used or supported by the standard application logic in releases 12.1.1 and 12.2.2. New implementations or customizations should not rely on this table for current business processes.
Key Information Stored
The table's structure centers on a composite key that uniquely identifies each record. The key columns define the relationship between a student, their application, and a specific package item. The primary columns, as defined by the primary key constraint IGS_IN_APPLML_PKGITM_PK, are:
- PERSON_ID: Stores the unique identifier for the student or applicant.
- ENQUIRY_APPL_NUMBER: Holds the reference number for the specific enquiry application submitted by the person.
- ENQUIRY_PACKAGE_ITEM: Contains the code or identifier for a particular item within an enquiry package, linking to the master definition table.
Together, these columns record which package items were associated with a given application for a specific individual.
Common Use Cases and Queries
Given its obsolete status, direct operational use cases for this table in active EBS processes are non-existent. Its primary contemporary use is for historical data analysis, auditing, or data migration projects. For instance, a query might retrieve all package items historically linked to applications for a specific person to understand past application requirements. A sample SQL pattern for such historical reporting would be:
SELECT person_id, enquiry_appl_number, enquiry_package_item FROM igs.igs_in_applml_pkgitm WHERE person_id = :p_person_id ORDER BY enquiry_appl_number;
Any new development requiring the functionality this table once provided must utilize the current, supported tables and APIs within the IGS module as defined by Oracle.
Related Objects
The documented foreign key relationships for IGS_IN_APPLML_PKGITM are limited and partially unclear based on the provided metadata. The primary documented relationship is a foreign key reference from the table to itself on the ENQUIRY_PACKAGE_ITEM column, which is atypical and may indicate a recursive hierarchical relationship or a documentation anomaly. The second documented foreign key references the IGS_IN_ENQ_PKG_ITEM table, also via the ENQUIRY_PACKAGE_ITEM column. This relationship is logical, as IGS_IN_ENQ_PKG_ITEM would be the master table defining valid package items, and IGS_IN_APPLML_PKGITM would store transactional instances of those items. The join for this relationship would be:
- IGS_IN_APPLML_PKGITM.ENQUIRY_PACKAGE_ITEM = IGS_IN_ENQ_PKG_ITEM.ENQUIRY_PACKAGE_ITEM
The most significant related object is the primary key constraint itself, IGS_IN_APPLML_PKGITM_PK, which was the user's initial search term and defines the table's core uniqueness rule.
-
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 ,
-
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 ,
-
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 ,