Search Results ou_description
Overview
IGS_OR_UNIT_FUNDSRC_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema and belonging functionally to the Oracle Student System / Higher Education component within the ETRM (E-Business Tax and Related Modules) documentation set. The view joins organizational unit party records to funding source definitions, allowing reporting on which organizational units are associated with which funding sources. It exposes the organizational unit's description through the column alias OU_DESCRIPTION, which is the reason users searching for "ou_description" are routed to this object. Because the view presents a denormalized, read-only projection of party and funding source data, it is typically consumed by institution reporting, extract routines, and downstream integrations requiring a flattened set of organization unit and funding source attributes without directly querying the underlying TCA (Trading Community Architecture) and student system base tables. The view carries the standard audit columns (created_by, creation_date, last_updated_by, last_update_date, last_update_login) sourced from HZ_PARTIES, supporting conformance with common EBS auditing expectations.
Underlying Base Objects
The view is defined over three underlying objects referenced in its SQL text:
- HZ_PARTIES HZ — The TCA party master table, supplying the party identifier, party number, party name, and the audit columns.
- IGS_PE_HZ_PARTIES PEP — The student system extension table linking party records to organization unit attributes such as OSS_ORG_UNIT_CD, start/end dates, organization status, type, member type, and institution code, restricted by INST_ORG_IND = 'O'.
- IGS_FI_FUND_SRC FS — The funding source definition table, supplying funding_source, description, government funding source indicator, and closed indicator.
The join is performed between HZ_PARTIES.PARTY_ID and IGS_PE_HZ_PARTIES.PARTY_ID, with the IMG_ORG_IND filter limiting results to organization-type parties. Although the ETRM metadata lists no formally documented base objects, the view text explicitly names these three tables, and they constitute its actual data lineage.
Key Columns
- TCA_PARTY_NUMBER — The TCA party number, a unique identifier for the organization party.
- ORG_UNIT_CD — The organizational unit code (OSS_ORG_UNIT_CD) identifying the unit.
- OU_DESCRIPTION — The organization unit description, rendered from HZ_PARTIES.PARTY_NAME. This is the column most commonly requested by users searching for "ou_description".
- OU_START_DT / OU_END_DT — Effective start and end dates for the organizational unit association.
- OU_ORG_STATUS, OU_ORG_TYPE, OU_MEMBER_TYPE — Classification attributes describing the unit's status, organization type, and member type.
- INSTITUTION_CD — The institution code to which the unit belongs.
- FUNDING_SOURCE / FS_DESCRIPTION — The funding source code and its description.
- GOVT_FUNDING_SOURCE / CLOSED_IND — Indicators for whether the source is governmental and whether it is closed.
Common Use Cases and Queries
Typical scenarios include producing institution-level reports of organization units and their funding sources, validating funding source assignments, and extracting data for downstream financial or student systems. A representative query retrieving the organizational unit description and associated funding sources is:
SELECT org_unit_cd,
ou_description,
funding_source,
fs_description,
govt_funding_source,
closed_ind
FROM apps.igs_or_unit_fundsrc_v
WHERE institution_cd = :p_institution
AND NVL(closed_ind,'N') = 'N';
Another common pattern is a lookup of a single organizational unit by its description:
SELECT org_unit_cd, ou_description, funding_source
FROM apps.igs_or_unit_fundsrc_v
WHERE ou_description = :p_ou_description;
Because the view is created in the APPS schema and references TCA and student system tables, access should be granted through standard EBS responsibility and menu configuration rather than direct grants, and queries should be limited by institution or organization unit to control result set size.
-
VIEW: APPS.IGS_OR_UNIT_FUNDSRC_V
12.1.1
-
View: IGS_OR_UNIT_FUNDSRC_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of all organization units joined to all funding source to use in ADMF2M44 , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_UNIT_FUNDSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT_FUNDSRC_V, object_name:IGS_OR_UNIT_FUNDSRC_V, status:VALID, product: IGS - Student System , description: View of all organization units joined to all funding source to use in ADMF2M44 , implementation_dba_data: APPS.IGS_OR_UNIT_FUNDSRC_V ,
-
View: IGS_EN_UNIT_SET_HIST
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes the history of changes to a given unit set. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_UNIT_SET_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_UNIT_SET_HIST, object_name:IGS_EN_UNIT_SET_HIST, status:VALID, product: IGS - Student System , description: This view describes the history of changes to a given unit set. , implementation_dba_data: APPS.IGS_EN_UNIT_SET_HIST ,
-
View: IGS_AS_EXM_SUPRVISOR_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_VER_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_UNIT_SET_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge unit set history with the current unit set details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_EXM_SUPRVISOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_EXM_SUPRVISOR_V, object_name:IGS_AS_EXM_SUPRVISOR_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AS_EXM_SUPRVISOR_V ,
-
View: IGS_PS_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_VER_HIST, object_name:IGS_PS_VER_HIST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_VER_HIST ,
-
VIEW: APPS.IGS_EN_UNIT_SET_HIST
12.1.1
-
VIEW: APPS.IGS_AS_EXM_SUPRVISOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_EXM_SUPRVISOR_V, object_name:IGS_AS_EXM_SUPRVISOR_V, status:VALID,
-
VIEW: APPS.IGS_AS_EXM_SUPRVISOR_V
12.1.1
-
View: IGS_EN_UNIT_SET_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_UNIT_SET_HIST_V, object_name:IGS_EN_UNIT_SET_HIST_V, status:VALID, product: IGS - Student System , description: This view is used to merge unit set history with the current unit set details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: APPS.IGS_EN_UNIT_SET_HIST_V ,
-
VIEW: APPS.IGS_EN_NSD_DLSTP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSD_DLSTP, object_name:IGS_EN_NSD_DLSTP, status:VALID,
-
View: IGS_PS_UNIT_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST, object_name:IGS_PS_UNIT_VER_HIST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_HIST ,
-
VIEW: APPS.IGS_PS_VER_HIST
12.1.1
-
VIEW: APPS.IGS_EN_UNIT_SET_HIST_V
12.1.1
-
View: IGS_EN_NSD_DLSTP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_NSD_DLSTP, object_name:IGS_EN_NSD_DLSTP, status:VALID, product: IGS - Student System , description: Describes all the columns related to non-standard unit section discontinuation deadline setup , implementation_dba_data: APPS.IGS_EN_NSD_DLSTP ,
-
VIEW: APPS.IGS_PS_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_VER_HIST, object_name:IGS_PS_VER_HIST, status:VALID,
-
View: IGS_PS_UNIT_VER_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_NSD_DLSTP
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all the columns related to non-standard unit section discontinuation deadline setup , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST
12.1.1
-
APPS.IGS_EN_UNIT_SET_HIST_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_OR_UNIT_FUNDSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_UNIT_FUNDSRC_V, object_name:IGS_OR_UNIT_FUNDSRC_V, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST, object_name:IGS_PS_UNIT_VER_HIST, status:VALID,
-
VIEW: APPS.IGS_EN_UNIT_SET_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_UNIT_SET_HIST, object_name:IGS_EN_UNIT_SET_HIST, status:VALID,
-
APPS.IGS_AU_GEN_004 SQL Statements
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_V ,
-
TABLE: IGS.IGS_EN_UNIT_SET_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_UNIT_SET_HIST_ALL, object_name:IGS_EN_UNIT_SET_HIST_ALL, status:VALID,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_VER_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge program version history with the current program version details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_VER_HIST_V, object_name:IGS_PS_VER_HIST_V, status:VALID, product: IGS - Student System , description: This view is used to merge program version history with the current program version details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: APPS.IGS_PS_VER_HIST_V ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID,
-
VIEW: APPS.IGS_EN_UNIT_SET_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_UNIT_SET_HIST_V, object_name:IGS_EN_UNIT_SET_HIST_V, status:VALID,
-
VIEW: APPS.IGS_PS_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_VER_HIST_V, object_name:IGS_PS_VER_HIST_V, status:VALID,
-
VIEW: APPS.IGS_PS_VER_HIST_V
12.1.1
-
APPS.IGS_PS_VER_HIST_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_PS_VER_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_VER_HIST_ALL, object_name:IGS_PS_VER_HIST_ALL, status:VALID,
-
APPS.IGS_GE_GEN_002 SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID,
-
View: IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID, product: IGS - Student System , description: Merges the Unit Version History details with the Current Unit Version Details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: APPS.IGS_PS_UNIT_VER_HIST_V ,
-
APPS.IGS_PS_UNIT_VER_HIST_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AU_GEN_004
12.1.1
-
TABLE: IGS.IGS_PS_UNIT_VER_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_ALL, object_name:IGS_PS_UNIT_VER_HIST_ALL, status:VALID,
-
View: IGS_PS_UNIT_VER_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: Merges the Unit Version History details with the Current Unit Version Details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_GE_GEN_001 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_UNIT_SET_HIST_PKG
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VER_HIST_PKG
12.1.1