Search Results pref_unit_id_type
Overview
IGS_OR_UNIT is a reporting view owned by the APPS schema within the Oracle E-Business Suite Student System (IGS) product family. It presents a consolidated, denormalized picture of organizational units that are registered in the institution's organization hierarchy. The view joins TCA party records in HZ_PARTIES with the Student System's party extension table IGS_PE_HZ_PARTIES, restricting output to those parties flagged as institutional organizations (INST_ORG_IND = 'O'). This makes the view the primary reference point for querying the identity, status, classification, and institutional affiliation of organizational units without needing to navigate the underlying normalized model directly.
Because organizational unit data in IGS is spread across TCA party records, IGS lookup values, and alternate identifier tables, the view serves as the canonical read interface for both reporting and integration. It is commonly used to expose unit master data to downstream systems, to drive institutional hierarchy reports, and to provide organization context for student, program, and offering records that reference organizational units.
Underlying Base Objects
The view is defined over a set of documented base objects:
- HZ_PARTIES (HP) — the TCA master party table, supplying party ID, party number, party name, audit columns, and the DFF attribute columns.
- IGS_PE_HZ_PARTIES (IHP) — the IGS party extension table, supplying organizational unit code, organizational status, organizational type, member type, start and end dates, and the institution code.
- IGS_OR_STATUS (OS) — the organizational status lookup, providing the status description.
- IGS_LOOKUP_VALUES (OT, MT) — joined twice against lookup types OR_ORG_TYPE and OR_MEMBER_TYPE to resolve the meaning of the organizational type and member type codes.
- IGS_OR_ORG_ALT_IDS (OLI) and IGS_OR_ORG_ALT_IDTYP (OLT) — combined in an inline view (PID) to return the preferred alternate identifier for each organization structure, where PREF_UNIT_IND is 'Y' and the current date falls within the altern
JOIN relationships thread these tables together on party ID, organizational status, and organizational unit code. Lookup joins are outer joins, so units with no valid type or member code still appear. The alternate identifier join is also outer, meaning units without a current preferred alternate ID are retained.
Key Columns
The most frequently referenced columns include:
- PARTY_ID / TCA_PARTY_NUMBER — the TCA party identifier and party number for the organization unit.
- ORG_UNIT_CD — the organizational unit code (OSS_ORG_UNIT_CD), the internal IGS key for the unit.
- DESCRIPTION — the party name, used as the display name of the unit.
- START_DT / END_DT — the effective date range for the organizational unit's registration.
- ORG_STATUS / STATUS_DESC — the organizational status code and its description.
- ORG_TYPE / TYPE_DESC — the organizational type code and lookup meaning.
- MEMBER_TYPE / MEMBER_DESC — the member type code and lookup meaning.
- INSTITUTION_CD — the institution to which the unit belongs.
- PREF_UNIT_ID_TYPE / PREF_UNIT_ALT_ID — the preferred alternate identifier type and value for the unit.
Common Use Cases and Queries
Typical scenarios include listing active organizational units, resolving unit descriptions for reporting on student or offering data, and extracting master data for integration. A basic active-unit query:
- SELECT org_unit_cd, description, status_desc, type_desc, institution_cd FROM igs_or_unit WHERE org_status = 'A';
- SELECT party_number, description, member_desc FROM igs_or_unit WHERE org_type = 'DEPT' AND SYSDATE BETWEEN start_dt AND NVL(end_dt, SYSDATE);
- SELECT org_unit_cd, pref_unit_id_type, pref_unit_alt_id FROM igs_or_unit WHERE pref_unit_alt_id IS NOT NULL ORDER BY org_unit_cd;
Because the view is read-only and denormalized, it is well suited to ad hoc reporting, extract pipelines, and BI datasets that require organizational unit context without direct access to the underlying TCA and IGS tables.
-
View: IGS_OR_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT, object_name:IGS_OR_UNIT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_UNIT ,
-
View: IGS_OR_UNIT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_OR_UNIT_V
12.1.1
-
VIEW: APPS.IGSFV_ORGANIZATION_UNIT_PARTY
12.1.1
-
View: IGS_OR_UNIT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_UNIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT_V, object_name:IGS_OR_UNIT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_UNIT_V ,
-
View: IGSFV_ORGANIZATION_UNIT_PARTY
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_HZ_PARTIES describes the attribites of a person , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_UNIT_OUTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT_OUTER_V, object_name:IGS_OR_UNIT_OUTER_V, status:VALID, product: IGS - Student System , description: This entity queries the Organization Records. , implementation_dba_data: APPS.IGS_OR_UNIT_OUTER_V ,
-
View: IGS_OR_UNIT_OUTER_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity queries the Organization Records. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_OR_UNIT
12.1.1
-
VIEW: APPS.IGS_OR_UNIT_OUTER_V
12.1.1
-
VIEW: APPS.IGS_OR_UNIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT_V, object_name:IGS_OR_UNIT_V, status:VALID,
-
View: IGSFV_ORGANIZATION_UNIT_PARTY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORGANIZATION_UNIT_PARTY, object_name:IGSFV_ORGANIZATION_UNIT_PARTY, status:VALID, product: IGS - Student System , description: IGS_PE_HZ_PARTIES describes the attribites of a person , implementation_dba_data: APPS.IGSFV_ORGANIZATION_UNIT_PARTY ,
-
VIEW: APPS.IGS_OR_UNIT_OUTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT_OUTER_V, object_name:IGS_OR_UNIT_OUTER_V, status:VALID,
-
VIEW: APPS.IGS_OR_UNIT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT, object_name:IGS_OR_UNIT, status:VALID,
-
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'. ,