Search Results igs_lookup_values
Overview
The IGS_LOOKUP_VALUES view is a legacy database object associated with the IGS – Student System product family (Oracle Student System / Oracle Student Administration), a module that is designated as obsolete in the Oracle E-Business Suite 12.1.1 and 12.2.2 documentation set. Functionally, the view exposes a filtered subset of Oracle Application Object Library (FND) lookup values that pertain specifically to the IGS schema, gated on the IGS application identifier. It behaves in the same manner as other product-scoped lookup views across EBS, which allow reports, concurrent programs, and integration interfaces to retrieve valid list-of-values entries without querying the shared FND_LOOKUP_VALUES table directly.
In ETRM documentation the object is marked "Not implemented in this database," and its documented view metadata lists no referenced base objects. Its practical role surfaces only in environments where the IGS product has been installed and staged with lookup data; elsewhere the view exists as a definitional artifact rather than an operational one.
Underlying Base Objects
Although the metadata excerpt lists no base objects, the documented view text makes the dependency explicit: the view is defined over FND_LOOKUP_VALUES in the FND application. The WHERE clause applies three predicates to that table:
LANGUAGE = USERENV('LANG')— restricts results to the current session language, preserving multilingual lookup meanings.VIEW_APPLICATION_ID = 8405— restricts rows to the IGS application, whose registered application ID is 8405.SECURITY_GROUP_ID = 0— excludes security-group-specific (partitioned) lookup data and returns only the shared, non-secured rows.
The absence of documented base objects in the ETRM metadata suggests that the view definition was not materially instantiated in the reference database. Where the IGS product is deployed, the underlying object is always FND_LOOKUP_VALUES, the central repository for all seeded and user-defined lookup codes in EBS.
Key Columns
The view projects ten columns from FND_LOOKUP_VALUES:
- LOOKUP_TYPE — the lookup category (e.g., a code such as a student status or admission type), keyed to the IGS application.
- LOOKUP_CODE — the internal code value, unique within its lookup type.
- MEANING — the display-meaning shown to end users on forms and reports.
- CLOSED_IND — a derived indicator produced by
DECODE(LV.ENABLED_FLAG,'Y','N','N','Y','N'); it inverts the enabled flag so that disabled values carry a Closed indicator. - ENABLED_FLAG — the source flag (Y/N) governing whether the lookup value is active.
- DESCRIPTION — free-text description of the lookup value.
- START_DATE_ACTIVE and END_DATE_ACTIVE — the effective date range controlling when the value is usable.
- TAG — the optional tag column used for additional classification or filtering.
Common Use Cases and Queries
Typical usage mirrors that of other application-scoped lookup views: populating report lists of values, supplying integration extracts with valid codes and meanings, and supporting migration or data-quality checks against IGS-relevant lookups.
Example — retrieve all active IGS lookup values for a given lookup type:
SELECT lookup_type, lookup_code, meaning, description, start_date_active, end_date_active FROM igs_lookup_values WHERE lookup_type = :p_lookup_type AND enabled_flag = 'Y' AND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);
Example — an extract joining the view to a business entity to resolve coded meanings:
SELECT e.entity_id, lv.meaning FROM igs_entity e, igs_lookup_values lv WHERE lv.lookup_type = 'IGS_ENTITY_STATUS' AND lv.lookup_code = e.status_code AND lv.enabled_flag = 'Y';
Because the view is obsolete and documented as not implemented, teams should confirm the view's existence and content in the target instance, and prefer supported replacement objects where IGS functionality has been superseded.
-
View: IGS_LOOKUP_VALUES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_LOOKUP_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_LOOKUP_VALUES, object_name:IGS_LOOKUP_VALUES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_LOOKUP_VALUES ,
-
View: IGS_PE_EV_FORM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for IGS_PE_EV_FORM , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_EV_FORM_V
12.1.1
-
View: IGS_PE_EV_FORM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_EV_FORM_V, object_name:IGS_PE_EV_FORM_V, status:VALID, product: IGS - Student System , description: View for IGS_PE_EV_FORM , implementation_dba_data: APPS.IGS_PE_EV_FORM_V ,
-
VIEW: APPS.IGS_DA_CNFG_REQ_TYP_V
12.1.1
-
VIEW: APPS.IGS_PE_NONIMG_FORM_V
12.1.1
-
VIEW: APPS.IGS_FI_CREDITS_V
12.1.1
-
VIEW: APPS.IGS_PE_EV_FORM_STAT_V
12.1.1
-
VIEW: APPS.IGS_PE_ATHLETIC_DTL_V
12.1.1
-
View: IGS_PE_NONIMG_FORM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for IGS_PE_NONIMG_FORM base table , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_MIL_SERVICE_V
12.1.1
-
VIEW: APPS.IGS_PE_DEPD_ACTIVE_V
12.1.1
-
View: IGS_FI_CREDITS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This is a multi-org view based on org filtered view IGS_FI_CREDITS and join with view IGS_LOOKUPS_VIEW and IGS_FI_CR_TYPES view to resolve Lookup Meaning and Credit Type Names from IDs , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_NONIMG_FORM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_NONIMG_FORM_V, object_name:IGS_PE_NONIMG_FORM_V, status:VALID, product: IGS - Student System , description: View for IGS_PE_NONIMG_FORM base table , implementation_dba_data: APPS.IGS_PE_NONIMG_FORM_V ,
-
VIEW: APPS.IGS_PE_IMMU_DTLS_V
12.1.1
-
View: IGS_PE_MIL_SERVICE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_MIL_SERVICE_V, object_name:IGS_PE_MIL_SERVICE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_MIL_SERVICE_V ,
-
VIEW: APPS.IGS_PR_UL_MARK_DTL_V
12.1.1
-
VIEW: APPS.IGS_OR_INST_HIST_V
12.1.1
-
VIEW: APPS.IGS_PE_TYP_INSTANCES_V
12.1.1
-
VIEW: APPS.IGS_PR_COHORT_INST_V
12.1.1
-
VIEW: APPS.IGS_AD_SS_APPL_COMPS_V
12.1.1
-
VIEW: APPS.IGS_AD_CODE_CLASSES_V
12.1.1
-
View: IGS_PE_EV_FORM_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_EV_FORM_STAT_V, object_name:IGS_PE_EV_FORM_STAT_V, status:VALID, product: IGS - Student System , description: View for IGS_PE_EV_FORM_STAT. , implementation_dba_data: APPS.IGS_PE_EV_FORM_STAT_V ,
-
VIEW: APPS.IGS_PE_NONIMG_STAT_V
12.1.1
-
VIEW: APPS.IGS_EN_USEC_DISC_DL_V
12.1.1
-
View: IGS_FI_CREDITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CREDITS_V, object_name:IGS_FI_CREDITS_V, status:VALID, product: IGS - Student System , description: This is a multi-org view based on org filtered view IGS_FI_CREDITS and join with view IGS_LOOKUPS_VIEW and IGS_FI_CR_TYPES view to resolve Lookup Meaning and Credit Type Names from IDs , implementation_dba_data: APPS.IGS_FI_CREDITS_V ,
-
VIEW: APPS.IGS_UC_MAP_OFF_RESP_V
12.1.1
-
VIEW: APPS.IGS_PR_COHORT_V
12.1.1
-
VIEW: APPS.IGS_PE_NONIMG_EMPL_V
12.1.1
-
VIEW: APPS.IGS_PE_TEACH_PERIODS_V
12.1.1
-
VIEW: APPS.IGS_AD_SS_APPL_TYP_V
12.1.1
-
View: IGS_OR_INST_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_MIL_SERVICE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_CA_DA_CONFIGS_V
12.1.1
-
VIEW: APPS.IGS_PS_USEC_OCCURS_V
12.1.1
-
View: IGS_PE_EV_FORM_STAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for IGS_PE_EV_FORM_STAT. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_FEE_TRG_GRP_V
12.1.1
-
VIEW: APPS.IGS_FI_CONTROL_V
12.1.1
-
VIEW: APPS.IGS_PE_RES_DTLS_V
12.1.1
-
VIEW: APPS.IGS_PE_PERS_DISABLTY_V
12.1.1
-
View: IGS_OR_INST_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_HIST_V, object_name:IGS_OR_INST_HIST_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_INST_HIST_V ,
-
VIEW: APPS.IGS_PE_INCOME_TAX_V
12.1.1
-
VIEW: APPS.IGS_OR_LOC_REGION_V
12.1.1
-
View: IGS_DA_CNFG_REQ_TYP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_TYP_INSTANCES_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_ATHLETIC_DTL_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details of a person's additional athletic information , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_ATHLETIC_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_ATHLETIC_DTL_V, object_name:IGS_PE_ATHLETIC_DTL_V, status:VALID, product: IGS - Student System , description: Holds details of a person's additional athletic information , implementation_dba_data: APPS.IGS_PE_ATHLETIC_DTL_V ,
-
VIEW: APPS.IGS_PE_STAT_V
12.1.1
-
VIEW: APPS.IGS_FI_ELM_RNG_ORDS_V
12.1.1