Search Results fin_aid_cp
Overview
IGS_PS_UNIT_VER is an Oracle E-Business Suite view owned by the APPS schema and defined over the Student System (IGS) product family, specifically the Postsecondary/Student Records module. It presents versioned academic unit (course) definitions, exposing one row per combination of unit code, version number, and start date. Each row describes the attributes of an academic unit as of a particular version, including its title, unit level, credit point scheme, enrollment constraints, workflow and financial aid flags, and audit columns.
In reporting and integration terms, the view functions as a denormalized read layer over the underlying unit-version entity. It allows external systems, concurrent programs, and custom reports to query unit version data without navigating the normalized set of base tables. Because many attributes are version-effective-dated (START_DT, REVIEW_DT, EXPIRY_DT, END_DT), the view is commonly used to determine which unit version was in force on a given date, and to reconcile unit definitions against enrollment, offering, and assessment data.
Underlying Base Objects
The ETRM metadata for this object does not document any referenced base objects, so the view is treated as an opaque projection. The column set, however, is consistent with a SELECT over the unit version entity within the IGS schema (for example IGS_PS_UNIT_VER), joined in turn to organization and curriculum context. The presence of ORG_ID indicates multi-organization (business unit / operating unit) filtering, and columns such as OWNER_ORG_UNIT_CD and OWNER_OU_START_DT reflect a foreign key to an owning organizational unit version rather than to a simple lookup.
The ROWID is exposed as ROW_ID, confirming that the view is a one-to-one projection of a row in a base table rather than an aggregation. Audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) are surfaced directly, which is typical of a view that mirrors its base table with minimal transformation.
Key Columns
- UNIT_CD, VERSION_NUMBER, START_DT — the identifying key of a unit version; VERSION_NUMBER distinguishes revisions and START_DT the effective date of the version.
- OWNER_ORG_UNIT_CD, OWNER_OU_START_DT — the owning organizational unit and the effective start date of that ownership record. The user's search term owner_ou_start_dt maps to this column, which is frequently joined back to the organization unit version to resolve the owning department or faculty.
- UNIT_STATUS, TITLE, SHORT_TITLE, ABBREVIATION, SUBTITLE — descriptive and lifecycle attributes of the unit.
- UNIT_LEVEL, CREDIT_POINT_DESCRIPTOR, ENROLLED_CREDIT_POINTS, ACHIEVABLE_CREDIT_POINTS — academic level and credit point scheme, including override indicators.
- ENROLLMENT_MINIMUM, ENROLLMENT_MAXIMUM, ENROLLMENT_EXPECTED, ADVANCE_MAXIMUM — capacity thresholds used for planning and offering.
- REPEATABLE_IND, ASSESSABLE_IND, MAX_REPEATS_FOR_CREDIT, MAX_REPEATS_FOR_FUNDING — repeat and assessment policy flags.
- STATE/FEDERAL/INSTITUTIONAL_FINANCIAL_AID, FIN_AID_CP, FIN_AID_HRS — financial aid eligibility attributes.
- ORG_ID — multi-organization security discriminator.
- ATTRIBUTE1–ATTRIBUTE20, ATTRIBUTE_CATEGORY — the standard DFF (descriptive flexfield) columns for institution-specific extensions.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — audit trail.
Common Use Cases and Queries
Typical uses include determining the current or as-of-date owner of a unit, generating catalog or unit-specification reports, and feeding enrollment or offering processes that require version-effective unit attributes.
Resolving the owning organization unit as of the version start date:
SELECT unit_cd, version_number, start_dt, owner_org_unit_cd, owner_ou_start_dt FROM apps.igs_ps_unit_ver WHERE unit_cd = :unit_cd AND :as_of_date BETWEEN start_dt AND NVL(end_dt, :as_of_date);
Listing active units for an organization:
SELECT unit_cd, title, unit_status FROM apps.igs_ps_unit_ver WHERE org_id = :org_id AND unit_status = 'ACTIVE' ORDER BY unit_cd;
Enrollment capacity review:
SELECT unit_cd, version_number, enrollment_minimum, enrollment_maximum, enrollment_expected FROM apps.igs_ps_unit_ver WHERE TRUNC(SYSDATE) BETWEEN start_dt AND NVL(end_dt, SYSDATE);
Because of the versioned key and the absence of documented base objects, queries should always constrain UNIT_CD and an effective date range to avoid returning multiple historical versions of the same unit.
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
-
View: IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER ,
-
View: IGS_PS_UNIT_VER_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_CPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_CPS_V, object_name:IGS_PS_USEC_CPS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_CPS_V ,
-
VIEW: APPS.IGS_PS_USEC_CPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_CPS_V, object_name:IGS_PS_USEC_CPS_V, status:VALID,
-
View: IGS_PS_UNIT_VER
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_V ,
-
TABLE: IGS.IGS_PS_USEC_CPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_CPS, object_name:IGS_PS_USEC_CPS, status:VALID,
-
View: IGS_PS_USEC_CPS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
VIEW: APPS.IGS_PS_UNIT_VER_V
12.1.1
-
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: 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 ,
-
VIEW: APPS.IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, 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_UNIT_VER_HIST_V
12.1.1
-
View: IGS_PS_UNIT_VER_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID,
-
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,
-
TABLE: IGS.IGS_PS_UNIT_VER_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_ALL, object_name:IGS_PS_UNIT_VER_ALL, status:VALID,
-
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,
-
PACKAGE: APPS.IGS_PS_GEN_006
12.1.1
-
PACKAGE BODY: APPS.IGS_AU_GEN_004
12.1.1
-
APPS.IGS_AU_GEN_004 dependencies on IGS_PS_TCH_RESP_HIST_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_CAL_RSR_VAL
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_USEC_CPS_PKG
12.1.1
-
APPS.IGS_AU_GEN_004 dependencies on IGS_PS_TCH_RESP_HIST
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_USEC_CPS
12.1.1
-
APPS.IGS_PS_CAL_RSR_VAL dependencies on IGS_PS_UNIT_OFR_OPT_PKG
12.1.1
-
APPS.IGS_PS_CAL_RSR_VAL dependencies on IGS_PS_UNIT_VER_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_006
12.1.1
-
APPS.IGS_PS_CAL_RSR_VAL dependencies on IGS_PS_UNIT_OFR_OPT
12.1.1
-
APPS.IGS_PS_CAL_RSR_VAL dependencies on IGS_PS_UNIT_VER
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_001
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'. ,