Search Results igs_or_org_inst_type
Overview
The IGS_OR_ORG_INST_TYPE view is a secured, Multi-Org compliant reporting object within the Oracle E-Business Suite IGS – Student System product family. It is owned by the APPS schema and holds a VALID status in both the 12.1.1 and 12.2.2 release levels. The view exposes institution type reference data for student organizations, allowing external reports, concurrent programs, and integration interfaces to read organization institution type setup without querying the base table directly. Because the definition applies a runtime predicate against USERENV('CLIENT_INFO'), the view automatically restricts returned rows to the operating unit (ORG_ID) of the current session, enforcing Oracle's Multi-Org Access Control (MOAC) model. This makes it the preferred access path for any custom inquiry or extract that must remain consistent with the user's current organization context.
Underlying Base Objects
The view is defined over a single documented base object: IGS_OR_ORG_INST_TYPE_ALL, an _ALL suffixed table that stores institution type records across all operating units. The view selects from this table using the alias TAB and inherits every column of the base table, adding the pseudo-column ROWID projected as ROW_ID. The WHERE clause compares the row's ORG_ID to the value decoded from the first ten characters of the client information string. When the leading character is a space, the decode returns NULL; the NVL chain then falls back to -99, so the predicate resolves to NVL(...,-99) = NVL(...,-99). Sessions that do not supply a client information value effectively match rows whose ORG_ID is NULL or -99, while normal sessions are filtered to their own organization. No other base tables, synonyms, or database links are documented as referenced objects.
Key Columns
- ROW_ID – The physical ROWID of the underlying
IGS_OR_ORG_INST_TYPE_ALLrow, useful for de-duplication and direct row identification. - ORG_ID – The operating unit identifier that drives the Multi-Org security predicate and links the record to organizational hierarchy setup.
- INSTITUTION_TYPE – The institution type code, the primary business key used to classify the organization.
- DESCRIPTION – The descriptive text associated with the institution type code, used widely in reports and list of values.
- SYSTEM_INST_TYPE – Indicates whether the institution type is a system-defined (seeded) value, distinguishing delivered reference data from user-entered records.
- CLOSE_IND – The close indicator that flags whether the institution type is active or closed for further use.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – Standard Oracle WHO columns providing audit and concurrency information.
Common Use Cases and Queries
Typical usage includes institution type list-of-values lookups, validation of organization level institution types prior to student data load, and reporting of active versus closed types per operating unit. A representative query retrieving active institution types for the current session organization is:
SELECT institution_type, description, system_inst_type FROM igs_or_org_inst_type WHERE NVL(close_ind,'N') = 'N' ORDER BY institution_type;SELECT org_id, institution_type, description FROM igs_or_org_inst_type WHERE system_inst_type IS NOT NULL AND close_ind IS NULL;SELECT COUNT(*), org_id FROM igs_or_org_inst_type GROUP BY org_id;to audit institution type distribution across organizations visible to the session.
Because the view applies MOAC filtering automatically, developers should not add a conflicting ORG_ID predicate unless cross-organization reporting through a secured responsibility is intended. When a broader scope is required, the base table IGS_OR_ORG_INST_TYPE_ALL should be considered instead, subject to the appropriate security review.
-
View: IGS_OR_ORG_INST_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ORG_INST_TYPE, object_name:IGS_OR_ORG_INST_TYPE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_ORG_INST_TYPE ,
-
View: IGS_OR_ORG_INST_TYPE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_OR_ORG_INST_TYPE_V
12.1.1
-
VIEW: APPS.IGS_OR_INST_HIST_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 ,
-
SYNONYM: APPS.IGS_OR_ORG_INST_TYPE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_OR_ORG_INST_TYPE_ALL, status:VALID,
-
VIEW: APPS.IGSFV_ORG_EXTENSIONS
12.1.1
-
VIEW: APPS.IGS_OR_INST_OUTER_V
12.1.1
-
VIEW: APPS.IGS_OR_INSTITUTION
12.1.1
-
View: IGS_OR_ORG_INST_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ORG_INST_TYPE_V, object_name:IGS_OR_ORG_INST_TYPE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_ORG_INST_TYPE_V ,
-
PACKAGE BODY: APPS.IGS_UC_QUAL_DETS_IMP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_QUAL_DETS_IMP_PKG, status:VALID,
-
View: IGS_OR_INST_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_ORG_INST_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_OR_ORG_INST_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ORG_INST_TYPE, object_name:IGS_OR_ORG_INST_TYPE, status:VALID,
-
PACKAGE BODY: APPS.IGS_OR_INST_IMP_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_OR_INST_IMP_001, status:VALID,
-
View: IGSFV_ORG_EXTENSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORG_EXTENSIONS, object_name:IGSFV_ORG_EXTENSIONS, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGSFV_ORG_EXTENSIONS ,
-
View: IGSFV_ORG_EXTENSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_OR_ORG_INST_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ORG_INST_TYPE_V, object_name:IGS_OR_ORG_INST_TYPE_V, status:VALID,
-
View: IGS_OR_INSTITUTION
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the institution Details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_INSTITUTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INSTITUTION, object_name:IGS_OR_INSTITUTION, status:VALID, product: IGS - Student System , description: Describes the institution Details , implementation_dba_data: APPS.IGS_OR_INSTITUTION ,
-
PACKAGE BODY: APPS.IGF_SL_LAR_CREATION
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_LAR_CREATION, status:VALID,
-
View: IGS_OR_INST_OUTER_V
12.2.2
product: IGS - Student System (Obsolete) , description: The entity retrieves all the records that are Institutions that are either created in the OSS subsystem or from the Oracle Receivables system. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_INST_OUTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_OUTER_V, object_name:IGS_OR_INST_OUTER_V, status:VALID, product: IGS - Student System , description: The entity retrieves all the records that are Institutions that are either created in the OSS subsystem or from the Oracle Receivables system. , implementation_dba_data: APPS.IGS_OR_INST_OUTER_V ,
-
VIEW: APPS.IGSFV_ORG_EXTENSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORG_EXTENSIONS, object_name:IGSFV_ORG_EXTENSIONS, status:VALID,
-
VIEW: APPS.IGS_OR_INST_OUTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_OUTER_V, object_name:IGS_OR_INST_OUTER_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.IGS_OR_INSTITUTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INSTITUTION, object_name:IGS_OR_INSTITUTION, status:VALID,
-
APPS.IGS_UC_QUAL_DETS_IMP_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_LAR_CREATION dependencies on IGS_OR_ORG_INST_TYPE
12.1.1
-
APPS.IGS_OR_INST_IMP_001 dependencies on IGS_OR_ORG_INST_TYPE
12.1.1
-
APPS.IGS_UC_QUAL_DETS_IMP_PKG dependencies on IGS_OR_ORG_INST_TYPE
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_OR_INST_IMP_001 SQL Statements
12.1.1
-
APPS.IGF_SL_LAR_CREATION dependencies on IGS_AD_ACAD_HISTORY_V
12.1.1
-
APPS.IGS_UC_QUAL_DETS_IMP_PKG dependencies on IGS_OR_INST_STAT
12.1.1
-
APPS.IGS_UC_QUAL_DETS_IMP_PKG dependencies on IGS_PE_HZ_PARTIES
12.1.1
-
APPS.IGS_UC_QUAL_DETS_IMP_PKG dependencies on HZ_PARTIES
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_QUAL_DETS_IMP_PKG
12.1.1
-
APPS.IGF_SL_LAR_CREATION SQL Statements
12.1.1
-
APPS.IGF_SL_LAR_CREATION dependencies on IGF_AP_FA_BASE_REC
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_INST_IMP_001
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LAR_CREATION
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
APPS.IGS_OR_INST_IMP_001 dependencies on IGS_OR_INST_INT
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,