Search Results igs_ad_credentials
Overview
The IGS_AD_CREDENTIALS table belongs to the IGS (Student System) product family within Oracle E-Business Suite. Its documented description states that the table was made obsolete in Enhancement 2177686. As a result, the object carries a "Not implemented in this database" designation in the ETRM metadata, meaning it is retained only as a historical or structural artifact and is not expected to hold active data in the supported 12.1.1 and 12.2.2 environments.
From a data-modeling perspective, the metadata classifies this object heuristically as a link table (Data Vault classification: link). This suggestion reflects its role as an associative entity: it resolves relationships between the admissions credential domain and the code/type reference tables it points to, rather than serving as a pure business hub or a descriptive satellite. Any modeling exercise should treat IGS_AD_CREDENTIALS as a junction that connects credential instances to their categorization and rating references.
Key Information Stored
The documented metadata identifies the following columns as the most significant for this object:
- CREDENTIAL_ID — the surrogate primary key. It is defined by both the IGS_AD_CREDENTIALS_PK and the IGS_AD_CREDENTIALS_U1 unique indexes, making it the single documented key column and the sole unique identifier for each credential record.
- CREDENTIAL_TYPE_ID — a foreign key to IGS_AD_CRED_TYPES. This column classifies the credential into its defined type category (for example, the kind of admissions credential being recorded).
- RATING — a foreign key to IGS_AD_CODE_CLASSES. This column links the credential to a value in the code-classes reference table, providing a coded rating or classification value.
Notably, the documentation does not expose a separate business-key column distinct from the surrogate; CREDENTIAL_ID serves as both the primary key and the unique-indexed identifier. No descriptive attributes beyond the two foreign-key columns are documented in the available metadata.
Common Use Cases and Queries
Because the table is obsolete and not implemented, most practical usage focuses on impact analysis, data migration audits, and confirming that legacy customization does not still reference it. A typical verification query checks for any residual rows or dependencies:
- Confirming existence of data before decommissioning a legacy schema:
SELECT COUNT(*) FROM IGS_AD_CREDENTIALS; - Resolving the credential category through the type reference:
SELECT c.CREDENTIAL_ID, t.CREDENTIAL_TYPE_ID FROM IGS_AD_CREDENTIALS c, IGS_AD_CRED_TYPES t WHERE c.CREDENTIAL_TYPE_ID = t.CREDENTIAL_TYPE_ID; - Joining to the code-classes reference to translate the RATING value:
SELECT c.CREDENTIAL_ID, cc.RATING FROM IGS_AD_CREDENTIALS c, IGS_AD_CODE_CLASSES cc WHERE c.RATING = cc.RATING; - Extracting metadata from the data dictionary to confirm obsolescence: querying
ALL_TAB_COLUMNSandALL_CONSTRAINTSfor the object name.
Reporting use cases center on reconciliation of historical admissions credential records and on verifying that Enhancement 2177686 fully removed the functional dependency.
Related Objects
The following objects are the most significant relationships documented for IGS_AD_CREDENTIALS:
- IGS_AD_CRED_TYPES — referenced via the CREDENTIAL_TYPE_ID foreign key; supplies the credential type definition.
- IGS_AD_CODE_CLASSES — referenced via the RATING foreign key; supplies the coded rating/classification value.
- IGS_AD_CREDENTIALS_PK — the primary-key constraint on CREDENTIAL_ID.
- IGS_AD_CREDENTIALS_U1 — the unique index on CREDENTIAL_ID.
These relationships confirm the link-table classification: the object depends on two reference tables and contributes no independent hub structure of its own.
-
Table: IGS_AD_CREDENTIALS
12.1.1
product: IGS - Student System , description: Table made obsolete in Enh. 2177686 , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_CREDENTIALS
12.2.2
product: IGS - Student System (Obsolete) , description: Table made obsolete in Enh. 2177686 , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_CRED_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CRED_TYPES, object_name:IGS_AD_CRED_TYPES, status:VALID, product: IGS - Student System , description: Holds credential types details , implementation_dba_data: IGS.IGS_AD_CRED_TYPES ,
-
Table: IGS_AD_CRED_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds credential types details , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_IMP_017
12.1.1
-
Table: IGS_AD_CODE_CLASSES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_CODE_CLASSES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CODE_CLASSES, object_name:IGS_AD_CODE_CLASSES, status:VALID, product: IGS - Student System , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: IGS.IGS_AD_CODE_CLASSES ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.IGS_AD_CODE_CLASSES_PKG
12.1.1
-
APPS.IGS_AD_CODE_CLASSES_PKG dependencies on STANDARD
12.1.1
-
APPS.IGS_AD_PS_APPL_INST_PKG dependencies on IGS_AD_PS_APPL_INST
12.1.1
-
APPS.IGS_AD_PS_APPL_INST_PKG dependencies on IGS_AD_PS_APPL
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_PS_APPL_INST_PKG
12.1.1