Search Results igs_as_doc_details
Overview
The IGS_AS_DOC_DETAILS table is a data object within the Oracle E-Business Suite (EBS) Student System (IGS) module. As indicated by its description, its primary role is to store detailed information about documents associated with a specific order. This table is part of the application's transactional foundation for managing academic service orders and their related documentation. Critically, the ETRM metadata explicitly classifies the IGS - Student System as "Obsolete" and notes that this table was "Not implemented in this database." This indicates that while the table was designed for a specific functional purpose, it was not deployed in the standard EBS 12.1.1 or 12.2.2 instances. Consequently, it is an artifact of the application's data model that is not actively used in production environments.
Key Information Stored
Based on the provided foreign key relationships, the table's structure is designed to link document details to several core entities. The primary key is the ITEM_NUMBER column, uniquely identifying each document record. The table stores foreign keys that establish critical relationships: the ORDER_NUMBER links the document to its parent order header (IGS_AS_ORDER_HDR). The PLAN_ID associates the document with a service plan (IGS_AS_SERVIC_PLAN). The PRODUCED_BY column references the party (HZ_PARTIES) responsible for creating the document. The DELIVERY_METHOD_TYPE defines how the document is transmitted, referencing a lookup (IGS_AS_DOC_DLVY_TYP). Furthermore, the table links to academic calendar instances (IGS_CA_INST_ALL) for key dates via three separate foreign key pairs: enrollment term (ENR_TERM_CAL_TYPE, ENR_CI_SEQUENCE_NUMBER), degree hold (DEGHOLD_CAL_TYPE, DEGHOLD_SEQ_NUM), and final grade (FGRADE_CAL_TYPE, FGRADE_SEQ_NUM).
Common Use Cases and Queries
Given its non-implemented status, there are no active operational use cases for this table in standard EBS deployments. However, analyzing its design reveals its intended purpose. It was architected to support queries for retrieving all documents for a specific service order, tracking documents by their producer, or listing documents based on their delivery method or associated academic calendar periods. A sample analytical query based on its structure might aim to join document details with order and party information, though such SQL would return no data in a standard instance. For example: SELECT d.ITEM_NUMBER, o.ORDER_NUMBER, p.PARTY_NAME FROM IGS_AS_DOC_DETAILS d JOIN IGS_AS_ORDER_HDR o ON d.ORDER_NUMBER = o.ORDER_NUMBER JOIN HZ_PARTIES p ON d.PRODUCED_BY = p.PARTY_ID WHERE d.DELIVERY_METHOD_TYPE = 'ELECTRONIC'; This pattern illustrates how the table was intended to consolidate document metadata for reporting and process tracking.
Related Objects
The ETRM metadata defines clear relationships for IGS_AS_DOC_DETAILS. The table references the following parent tables via foreign keys:
- IGS_AS_ORDER_HDR via
ORDER_NUMBER - IGS_AS_SERVIC_PLAN via
PLAN_ID - HZ_PARTIES via
PRODUCED_BY - IGS_AS_DOC_DLVY_TYP via
DELIVERY_METHOD_TYPE - IGS_CA_INST_ALL via three separate column pairs: (
ENR_TERM_CAL_TYPE,ENR_CI_SEQUENCE_NUMBER), (DEGHOLD_CAL_TYPE,DEGHOLD_SEQ_NUM), and (FGRADE_CAL_TYPE,FGRADE_SEQ_NUM)
- IGS_AS_DUP_DOCS references it via the column
ITEM_NUMBER
-
Table: IGS_AS_DOC_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: This table will store the information about the documents associated with the order , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AS_ORDER_HDR
12.2.2
product: IGS - Student System (Obsolete) , description: Order Header Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AS_DOC_DLVY_TYP
12.2.2
product: IGS - Student System (Obsolete) , description: This table will store all the delivery methods that will be used for document request , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CA_INST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes an instance of a calendar type , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AS_SERVIC_PLAN
12.2.2
product: IGS - Student System (Obsolete) , description: Contains one row for each Transcript Service Plan offered by the institution. It is also used to support allowance of several "free" transcripts per career or academic year. If an institution does not desire a seeded service, use of the clo , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AS_DUP_DOCS
12.2.2
product: IGS - Student System (Obsolete) , description: Duplicate Documents stores all the duplicate requests for a document. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AS_DOCUMENT_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the information about the documents associated with the order , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AS_DOCUMENT_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the information about the documents associated with the order , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_DOC_DETAILS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores stores the information regarding the documents associated with the orders. , implementation_dba_data: Not implemented in this database ,