Search Results child_org_unit_cd
Overview
APPS.IGSBV_ORG_UNIT_HIERARCHIES is a read-only reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, delivered as part of the Student System / Student Information (IGS) product family. The view exposes parent-child relationships between organizational units, providing a flattened representation of the IGS_OR_UNIT_REL hierarchy so that reporting tools, concurrent programs, and integration layers can traverse institutional structures without joining directly to the transactional base table. Because the view is defined with the WITH READ ONLY clause, it is exclusively intended for query and extraction purposes; no DML is permitted against it.
The view is particularly relevant to functional and technical consultants who need to surface hierarchy information — such as a parent organization and its subordinate child organizations — filtered by effective dates. The user search term "parent_start_dt" corresponds directly to the view's PARENT_START_DATE column, which reflects the underlying PARENT_START_DT attribute of the base table.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over a single object: the base table IGS_OR_UNIT_REL. The view text selects from this table with no joins, aggregations, or filters beyond the read-only constraint. It therefore inherits the row-level content and the standard audit columns of IGS_OR_UNIT_REL, and no additional documented base objects are referenced. Any change or purge performed against IGS_OR_UNIT_REL is immediately visible through the view.
Because the ETRM documentation lists "none documented" for referenced base objects at the metadata level, the authoritative source is the view's own SQL text, which confirms IGS_OR_UNIT_REL as the sole underlying table.
Key Columns
- PARENT_ORG_UNIT_CODE — renamed from PARENT_ORG_UNIT_CD; identifies the parent organizational unit in the relationship.
- PARENT_START_DATE — renamed from PARENT_START_DT; the effective start date of the parent side of the relationship. This is the column corresponding to the user's search term "parent_start_dt".
- CHILD_ORG_UNIT_CODE — renamed from CHILD_ORG_UNIT_CD; identifies the child organizational unit.
- CHILD_START_DATE — renamed from CHILD_START_DT; the effective start date of the child side of the relationship.
- CREATE_DATE — renamed from CREATE_DT; the date the relationship record was created.
- LOGICAL_DELETE_DATE — renamed from LOGICAL_DELETE_DT; the soft-delete timestamp. Rows with a non-null value are logically removed and should generally be excluded from active reporting.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard EBS audit columns inherited from the base table.
Common Use Cases and Queries
Typical scenarios include institutional hierarchy reporting, org-unit roll-up queries for student records, and integration extracts feeding downstream data warehouses. Effective-date filtering is central, since both parent and child relationships carry their own start dates.
Example — retrieve active parent-child pairs for a given date:
SELECT parent_org_unit_code,
parent_start_date,
child_org_unit_code,
child_start_date
FROM apps.igsbv_org_unit_hierarchies
WHERE logical_delete_date IS NULL
AND parent_start_date <= SYSDATE
AND (child_start_date IS NULL OR child_start_date <= SYSDATE);
Example — list children for a specific parent:
SELECT child_org_unit_code, child_start_date FROM apps.igsbv_org_unit_hierarchies WHERE parent_org_unit_code = :parent_code AND logical_delete_date IS NULL;
Consultants should always apply the logical_delete_date filter and consider the parent_start_date predicate, as these two conditions most directly determine whether a hierarchy relationship is currently valid.
-
VIEW: APPS.IGSBV_ORG_UNIT_HIERARCHIES
12.1.1
-
APPS.IGS_OR_VAL_OU SQL Statements
12.1.1
-
TABLE: IGS.IGS_OR_UNIT_REL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_UNIT_REL, object_name:IGS_OR_UNIT_REL, status:VALID,
-
TABLE: IGS.IGS_OR_REL_PS_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_REL_PS_TYPE, object_name:IGS_OR_REL_PS_TYPE, status:VALID,
-
APPS.IGS_OR_REL_PS_TYPE_PKG SQL Statements
12.1.1
-
APPS.IGS_OR_UNIT_REL_PKG SQL Statements
12.1.1
-
Table: IGS_OR_UNIT_REL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_UNIT_REL, object_name:IGS_OR_UNIT_REL, status:VALID, product: IGS - Student System , description: This entity describes parent and child relationships between organizational units. An organizational unit may have many parents and many children. , implementation_dba_data: IGS.IGS_OR_UNIT_REL ,
-
APPS.IGS_OR_VAL_OUR SQL Statements
12.1.1
-
Table: IGS_OR_UNIT_REL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes parent and child relationships between organizational units. An organizational unit may have many parents and many children. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_ORG_UNIT_HIERARCHIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ORG_UNIT_HIERARCHIES, object_name:IGSBV_ORG_UNIT_HIERARCHIES, status:VALID, product: IGS - Student System , description: This entity describes parent and child relationships between organizational units. An organizational unit may have many parents and many children. , implementation_dba_data: APPS.IGSBV_ORG_UNIT_HIERARCHIES ,
-
Table: IGS_OR_REL_PS_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_REL_PS_TYPE, object_name:IGS_OR_REL_PS_TYPE, status:VALID, product: IGS - Student System , description: This table contains the course type restrictions used in the organization unit relationship for the purposes of committee structures used within Progression and in future to be used in other areas. , implementation_dba_data: IGS.IGS_OR_REL_PS_TYPE ,
-
Table: IGS_OR_REL_PS_TYPE
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains the course type restrictions used in the organization unit relationship for the purposes of committee structures used within Progression and in future to be used in other areas. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_ORG_UNIT_HIERARCHIES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes parent and child relationships between organizational units. An organizational unit may have many parents and many children. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_OR_GEN_001 SQL Statements
12.1.1
-
APPS.IGS_EN_NSC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_UNIT_REL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_REL_PS_TYPE_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_VAL_OUR
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_GEN_001
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_VAL_OU
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_NSC_PKG
12.1.1
-
APPS.IGS_EN_NSC_PKG dependencies on IGS_EN_NSC_PKG
12.1.1
-
APPS.IGS_EN_NSC_PKG dependencies on IGS_OR_UNIT_REL
12.1.1
-
APPS.IGS_OR_REL_PS_TYPE_PKG dependencies on IGS_OR_REL_PS_TYPE
12.1.1
-
APPS.IGS_OR_UNIT_REL_PKG dependencies on IGS_OR_UNIT_REL
12.1.1
-
APPS.IGS_OR_GEN_001 dependencies on IGS_OR_STATUS
12.1.1
-
APPS.IGS_EN_NSC_PKG dependencies on IGS_PE_HZ_PARTIES
12.1.1
-
APPS.IGS_EN_NSC_PKG dependencies on IGS_OR_UNIT_V
12.1.1
-
APPS.IGS_OR_VAL_OUR dependencies on IGS_OR_UNIT_REL
12.1.1
-
APPS.IGS_OR_GEN_001 dependencies on IGS_OR_UNIT_REL
12.1.1
-
APPS.IGS_EN_NSC_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_OR_GEN_001 dependencies on IGS_OR_UNIT
12.1.1
-
APPS.IGS_OR_VAL_OU dependencies on IGS_OR_STATUS
12.1.1
-
APPS.IGS_OR_VAL_OUR dependencies on IGS_OR_UNIT
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'. ,
-
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'. ,