Search Results type_meaning
Overview
IGS_AD_CRED_TYPES_V is an Oracle EBS PL/SQL view owned by the APPS schema within the IGS – Student System product family. It presents a denormalized, reporting-friendly projection of credential type definitions used by the Oracle Student System for admissions and academic records processing. Credential types describe the external academic credentials (for example, secondary school diplomas, undergraduate or postgraduate degrees) that an institution recognizes for admissions evaluation and articulation purposes. Because the base credential type table stores a coded system type and a coded step category, the view resolves those codes to their translated meanings so that consumers do not need to join lookup and catalog tables themselves.
The view is documented as VALID in ETRM metadata for both 12.1.1 and 12.2.2. It is intended for read-only use in reporting, integrations, and descriptive flexfield or outbound interface work. The column TYPE_MEANING is the resolved value surfaced by the search term "type_meaning," and it corresponds to the lookup meaning for the credential system type code.
Underlying Base Objects
The ETRM excerpt defines the view text explicitly. It is constructed over three base objects joined in the APPS schema:
- IGS_AD_CRED_TYPES CT — the primary credential type definition table, supplying the surrogate key, credential code, system type code, description, step code, closed indicator, and standard WHO audit columns.
- IGS_LOOKUP_VALUES LK — the lookup values view, restricted with the predicate
LK.LOOKUP_TYPE = 'CREDENTIAL_SYSTEM_TYPES'. This join matchesCT.SYSTEM_TYPE = LK.LOOKUP_CODEand provides theMEANINGthat is projected asTYPE_MEANING. - IGS_TR_STEP_CTLG_ALL TRSC — the step catalog table, joined on
CT.STEP_CODE = TRSC.STEP_CATALOG_CD. This is an outer join (note the(+)operator on the TRSC side), so credential types without a matching step catalog entry are still returned, withSTEP_CODE_DESCnull.
The presence of the Oracle-style outer join syntax confirms the view predates the ANSI join migration and remains unchanged across 12.1.1 and 12.2.2.
Key Columns
- ROW_ID — the rowid of the underlying IGS_AD_CRED_TYPES row, used for row identification in Forms-based update flows.
- CREDENTIAL_TYPE_ID — the unique surrogate key of the credential type.
- CREDENTIAL_TYPE — the short credential type code.
- SYSTEM_TYPE — the coded system type used in the lookup join.
- TYPE_MEANING — the translated meaning of the system type, resolved from IGS_LOOKUP_VALUES for lookup type
CREDENTIAL_SYSTEM_TYPES. This is typically the column of interest when searching by "type_meaning." - DESCRIPTION — the free-text description of the credential type.
- STEP_CODE and STEP_CODE_DESC — the associated step catalog code and its description, the latter left-joined from IGS_TR_STEP_CTLG_ALL.
- CLOSED_IND — indicates whether the credential type is inactive or closed for new use.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns inherited from the base table.
Common Use Cases and Queries
Typical uses include admissions setup validation, extraction of credential types for integration with external evaluation services, and reporting on active versus closed credential types. Because the join to IGS_LOOKUP_VALUES is on the lookup code and a fixed lookup type, queries should filter or display TYPE_MEANING rather than the raw SYSTEM_TYPE whenever user-facing output is required.
A representative query listing active credential types with their resolved meanings:
SELECT credential_type_id,
credential_type,
type_meaning,
step_code_desc,
description
FROM apps.igs_ad_cred_types_v
WHERE closed_ind = 'N'
ORDER BY type_meaning, credential_type;
To group credential types by system type for analytical reporting:
SELECT type_meaning,
COUNT(*) cred_type_count
FROM apps.igs_ad_cred_types_v
GROUP BY type_meaning
ORDER BY cred_type_count DESC;
Because the view resolves lookup and catalog descriptions, it eliminates repeated joins in downstream SQL and is safe to embed in custom concurrent programs, OBIEE or BI Publisher data models, and outbound interface SQL provided the standard EBS read-only access conventions are observed.
-
View: IGS_AD_CRED_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_CRED_TYPES_V, object_name:IGS_AD_CRED_TYPES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_CRED_TYPES_V ,
-
View: JTF_NOTES_SOURCE_TYPE_MAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP_V, object_name:JTF_NOTES_SOURCE_TYPE_MAP_V, status:VALID, product: JTF - CRM Foundation , description: View over JTF_OBJECT_MAPPINGS_V , implementation_dba_data: APPS.JTF_NOTES_SOURCE_TYPE_MAP_V ,
-
VIEW: APPS.CE_AVAILABLE_BATCHES_V
12.1.1
-
View: IGS_AD_CRED_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.JTF_NOTES_SOURCE_TYPE_MAP_V
12.2.2
-
VIEW: APPS.JTF_NOTES_SOURCE_TYPE_MAP_V
12.1.1
-
VIEW: APPS.CE_AVAILABLE_BATCHES_V
12.2.2
-
View: JTF_NOTES_SOURCE_TYPE_MAP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP_V, object_name:JTF_NOTES_SOURCE_TYPE_MAP_V, status:VALID, product: JTF - CRM Foundation , description: View over JTF_OBJECT_MAPPINGS_V , implementation_dba_data: APPS.JTF_NOTES_SOURCE_TYPE_MAP_V ,
-
VIEW: APPS.IGS_AD_CRED_TYPES_V
12.1.1
-
View: CE_AVAILABLE_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_BATCHES_V, object_name:CE_AVAILABLE_BATCHES_V, status:VALID, product: CE - Cash Management , description: Available batches for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_BATCHES_V ,
-
View: CE_REVERSAL_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_REVERSAL_TRANSACTIONS_V, object_name:CE_REVERSAL_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reversal or unclearing , implementation_dba_data: APPS.CE_REVERSAL_TRANSACTIONS_V ,
-
View: CE_REVERSAL_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_REVERSAL_TRANSACTIONS_V, object_name:CE_REVERSAL_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reversal or unclearing , implementation_dba_data: APPS.CE_REVERSAL_TRANSACTIONS_V ,
-
VIEW: APPS.CE_REVERSAL_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.CE_REVERSAL_TRANSACTIONS_V
12.2.2
-
View: CE_AVAILABLE_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_BATCHES_V, object_name:CE_AVAILABLE_BATCHES_V, status:VALID, product: CE - Cash Management , description: Available batches for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_BATCHES_V ,
-
VIEW: APPS.AHL_ITEM_GROUPS_V
12.1.1
-
View: AHL_ITEM_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_ITEM_GROUPS_V, object_name:AHL_ITEM_GROUPS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Item Groups V joins Lookup meaning and Codes , implementation_dba_data: APPS.AHL_ITEM_GROUPS_V ,
-
VIEW: APPS.AHL_ITEM_GROUPS_V
12.2.2
-
View: AHL_ITEM_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_ITEM_GROUPS_V, object_name:AHL_ITEM_GROUPS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Item Groups V joins Lookup meaning and Codes , implementation_dba_data: APPS.AHL_ITEM_GROUPS_V ,
-
View: IGS_PE_SRC_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SRC_TYPES_V, object_name:IGS_PE_SRC_TYPES_V, status:VALID, product: IGS - Student System , description: Person source types form view , implementation_dba_data: APPS.IGS_PE_SRC_TYPES_V ,
-
View: IGS_PE_SRC_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Person source types form view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CE_AVAILABLE_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.CE_AVAILABLE_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.CE_RECONCILED_TRANSACTIONS_V
12.1.1
-
View: CE_RECONCILED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_RECONCILED_TRANSACTIONS_V, object_name:CE_RECONCILED_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Reconciled transactions , implementation_dba_data: APPS.CE_RECONCILED_TRANSACTIONS_V ,
-
VIEW: APPS.CE_RECONCILED_TRANSACTIONS_V
12.2.2
-
View: PAY_PRE_PAYMENTS_V4
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PRE_PAYMENTS_V4, object_name:PAY_PRE_PAYMENTS_V4, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PRE_PAYMENTS_V4 ,
-
VIEW: APPS.IGS_AD_CRED_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_CRED_TYPES_V, object_name:IGS_AD_CRED_TYPES_V, status:VALID,
-
View: CE_AVAILABLE_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_TRANSACTIONS_V, object_name:CE_AVAILABLE_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_TRANSACTIONS_V ,
-
View: CE_AVAILABLE_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AVAILABLE_TRANSACTIONS_V, object_name:CE_AVAILABLE_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Available transactions for reconciliation , implementation_dba_data: APPS.CE_AVAILABLE_TRANSACTIONS_V ,
-
View: CE_RECONCILED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_RECONCILED_TRANSACTIONS_V, object_name:CE_RECONCILED_TRANSACTIONS_V, status:VALID, product: CE - Cash Management , description: Reconciled transactions , implementation_dba_data: APPS.CE_RECONCILED_TRANSACTIONS_V ,
-
View: PAY_PRE_PAYMENTS_V4
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PRE_PAYMENTS_V4, object_name:PAY_PRE_PAYMENTS_V4, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PRE_PAYMENTS_V4 ,
-
VIEW: APPS.IGS_PE_SRC_TYPES_V
12.1.1
-
VIEW: APPS.PER_RATING_SCALES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_RATING_SCALES_V, object_name:PER_RATING_SCALES_V, status:VALID,
-
VIEW: APPS.IGS_PE_SRC_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SRC_TYPES_V, object_name:IGS_PE_SRC_TYPES_V, status:VALID,
-
VIEW: APPS.IEX_HI_ADJUSTMENTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_HI_ADJUSTMENTS_V, status:VALID,
-
VIEW: APPS.IEX_HI_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_HI_ADJUSTMENTS_V, status:VALID,
-
VIEW: APPS.CE_200_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_200_GROUPS_V, object_name:CE_200_GROUPS_V, status:VALID,
-
VIEW: APPS.PER_RATING_SCALES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_RATING_SCALES_V, object_name:PER_RATING_SCALES_V, status:VALID,
-
VIEW: APPS.IEX_HI_ADJUSTMENTS_DEL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_HI_ADJUSTMENTS_DEL_V, status:VALID,
-
VIEW: APPS.IEX_HI_ADJUSTMENTS_DEL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_HI_ADJUSTMENTS_DEL_V, status:VALID,
-
VIEW: APPS.PAY_PRE_PAYMENTS_V4
12.2.2
-
VIEW: APPS.CE_200_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CE_200_GROUPS_V, status:VALID,
-
VIEW: APPS.AR_BR_ACTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BR_ACTIVITIES_V, object_name:AR_BR_ACTIVITIES_V, status:VALID,
-
VIEW: APPS.AR_BR_ACTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BR_ACTIVITIES_V, object_name:AR_BR_ACTIVITIES_V, status:VALID,
-
VIEW: APPS.PAY_PRE_PAYMENTS_V4
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PRE_PAYMENTS_V4, object_name:PAY_PRE_PAYMENTS_V4, status:VALID,
-
VIEW: APPS.PAY_PRE_PAYMENTS_V4
12.1.1
-
VIEW: APPS.PAY_PRE_PAYMENTS_V4
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PRE_PAYMENTS_V4, object_name:PAY_PRE_PAYMENTS_V4, status:VALID,
-
View: ICX_AR_ADJUSTMENTS_V
12.2.2
product: ICX - Oracle iProcurement , description: Invoice Adjustments View , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.JTF_NOTES_SOURCE_TYPE_MAP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP_V, object_name:JTF_NOTES_SOURCE_TYPE_MAP_V, status:VALID,