Search Results owner_org_unit_cd
Overview
IGS_PS_UNIT_OFR_OPT_SV is a secured (security-enabled) view within the Oracle EBS Student System (IGS) product family. Its documented purpose is to expose data from the base table IGS_PS_UNIT_OFR_OPT_ALL, which stores unit offering option records — the schedulable, enrollable "unit offering options" that represent a specific delivery of a unit of study (a class section) within a calendar and teaching period. The "_SV" suffix denotes a secured view, indicating that row-level Oracle Application Object Library (AOL) / HR security predicates are applied at the view layer so that only the offering options a user is authorised to see are returned. This makes the view the preferred access path for reporting, self-service student functionality, and integration extracts, rather than querying the all-table directly.
In ETRM 12.2.2 the object owner is not documented and no referenced base objects are listed in the extracted metadata. In 12.1.1 and 12.2.2 the view exists as a database object in deployments where the Student System (IGS) module is installed, but the supplied metadata records the object as not implemented in the current database.
Underlying Base Objects
The view text is a straightforward column projection over a single base object. The documented definition is:
- Base table: IGS_PS_UNIT_OFR_OPT_ALL (the "_ALL" table holding unit offering option records across operating units/orgs).
- The view adds no joins in the extracted text; it selects the full column list and assigns
ROWIDan alias ofROW_ID. - Because it is a secured view, Oracle injects security predicates onto the query inside the view definition (typically restricting rows by organisation/operating unit and other security context) when the view is accessed.
Since the ETRM metadata states "Referenced base objects: none documented," the only confirmed dependency is the base table named in the view text itself.
Key Columns
The view exposes the full column set of the base table, including the surrogate key and the column referenced by the user's search, SUP_UOO_ID. Significant columns include:
- UOO_ID — primary identifier of the unit offering option record.
- SUP_UOO_ID — the "superior" unit offering option identifier; used to relate a subordinate offering option to a parent/combined option (for example, linked or nested unit sections).
- RELATION_TYPE and DEFAULT_ENROLL_FLAG — describe the relationship between a child option and its superior option and whether it is the default enrolment target.
- UNIT_CD, VERSION_NUMBER, CAL_TYPE, CI_SEQUENCE_NUMBER, LOCATION_CD, UNIT_CLASS — identify the unit, its version, calendar type, teaching period sequence, location and class type.
- UNIT_SECTION_STATUS, UNIT_SECTION_START_DATE, UNIT_SECTION_END_DATE — status and scheduling window of the section.
- UNIT_QUOTA, UNIT_QUOTA_RESERVED_PLACES, ENROLLMENT_ACTUAL, WAITLIST_ACTUAL — capacity and current demand metrics.
- OFFERED_IND, SS_ENROL_IND, SS_DISPLAY_IND, DIR_ENROLLMENT, ENR_FROM_WLST, INQ_NOT_WLST — offering, self-service enrolment, display and waitlist behaviour flags.
- GRADING_SCHEMA_CD, GS_VERSION_NUMBER, GRADING_SCHEMA_PRCDNCE_IND — grading schema and precedence.
- ORG_ID, OWNER_ORG_UNIT_CD — multi-organisation context used by the security layer.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — standard WHO/audit and concurrent-request columns.
- AUDITABLE_IND, AUDIT_PERMISSION_IND, NOT_MULTIPLE_SECTION_FLAG, ANON_UNIT_GRADING_IND, ANON_ASSESS_GRADING_IND, NON_STD_USEC_IND — control flags for auditing and anonymous grading.
Common Use Cases and Queries
Typical use is reporting or extraction of unit offering options subject to the caller's security profile. Because the view adds a ROW_ID alias, it is also convenient for tools that require a stable pseudo-key.
- List offering options for a unit and period:
SELECT uoo_id, unit_cd, version_number, cal_type,
ci_sequence_number, unit_section_status
FROM igs_ps_unit_ofr_opt_sv
WHERE unit_cd = :unit_cd
AND cal_type = :cal_type;
- Retrieve subordinate options related to a parent (uses the searched column):
SELECT uoo_id, sup_uoo_id, relation_type, default_enroll_flag FROM igs_ps_unit_ofr_opt_sv WHERE sup_uoo_id = :sup_uoo_id;
- Check capacity against enrolment for an offering option:
SELECT uoo_id, unit_quota, enrollment_actual, waitlist_actual FROM igs_ps_unit_ofr_opt_sv WHERE offered_ind = 'Y' AND ss_enrol_ind = 'Y';
Queries against this view automatically inherit the security restrictions applied by the secured view layer, so results vary by the operating unit and responsibility context of the accessing user.
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_SV
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_SV, object_name:IGS_PS_UNIT_OFR_OPT_SV, status:VALID, product: IGS - Student System , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_SV ,
-
View: IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, status:VALID, product: IGS - Student System , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: APPS.IGS_PS_SCH_USEC_INT ,
-
View: IGS_PS_SCH_USEC_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
-
View: IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_SCH_INT ,
-
View: IGS_PS_SCH_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_UAI_EXAMINATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_EXAMINATION_V, object_name:IGS_AS_UAI_EXAMINATION_V, status:VALID,
-
View: IGS_PS_UNIT_OFR_OPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT, object_name:IGS_PS_UNIT_OFR_OPT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT ,
-
VIEW: APPS.IGS_AS_USEC_GRADE_ENTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_USEC_GRADE_ENTRY_V, object_name:IGS_AS_USEC_GRADE_ENTRY_V, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_INT
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: APPS.IGS_AS_UAI_ETISTD_EXAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_ETISTD_EXAM_V, object_name:IGS_AS_UAI_ETISTD_EXAM_V, status:VALID,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_ED_UNIT_VERSIONS, object_name:IGSBV_HIGH_ED_UNIT_VERSIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT
12.1.1
-
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.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
-
TABLE: IGS.IGS_AS_DUE_DT_SUMRY
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_DUE_DT_SUMRY, object_name:IGS_AS_DUE_DT_SUMRY, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, 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: APPS.IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, 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 ,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST
12.1.1
-
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_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 ,
-
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: IGS_AS_USEC_GRADE_ENTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_USEC_GRADE_ENTRY_V, object_name:IGS_AS_USEC_GRADE_ENTRY_V, status:VALID, product: IGS - Student System , description: Unit sections for grade entry information , implementation_dba_data: APPS.IGS_AS_USEC_GRADE_ENTRY_V ,
-
View: IGS_EN_SUA_RULCHK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SUA_RULCHK_V, object_name:IGS_EN_SUA_RULCHK_V, status:VALID, product: IGS - Student System , description: This view contains Unit Attempt records with failed unit rule details. , implementation_dba_data: APPS.IGS_EN_SUA_RULCHK_V ,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_PE_V ,
-
View: IGS_EN_SUA_RULCHK_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains Unit Attempt records with failed unit rule details. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_USEC_GRADE_ENTRY_V
12.2.2
product: IGS - Student System (Obsolete) , description: Unit sections for grade entry information , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_UAI_EXAMINATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_EXAMINATION_V, object_name:IGS_AS_UAI_EXAMINATION_V, status:VALID, product: IGS - Student System , description: Describes all examinations that are required within the examination calendar instance, they are to be examined. , implementation_dba_data: APPS.IGS_AS_UAI_EXAMINATION_V ,
-
View: IGS_AS_UAI_EXAMINATION_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all examinations that are required within the examination calendar instance, they are to be examined. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
-
TABLE: IGS.IGS_PS_SCH_USEC_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT_ALL, object_name:IGS_PS_SCH_USEC_INT_ALL, status:VALID,
-
APPS.IGS_AS_DUE_DT_SUMRY_PKG SQL Statements
12.1.1
-
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_AS_UAI_ETISTD_EXAM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Created to supply the ETI, student exam timetabling interface, system with information it requires to determine that student unit attempt assessment items to timetable. , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: IGS_AS_UAI_ETISTD_EXAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_ETISTD_EXAM_V, object_name:IGS_AS_UAI_ETISTD_EXAM_V, status:VALID, product: IGS - Student System , description: Created to supply the ETI, student exam timetabling interface, system with information it requires to determine that student unit attempt assessment items to timetable. , implementation_dba_data: APPS.IGS_AS_UAI_ETISTD_EXAM_V ,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.2.2
product: IGS - Student System (Obsolete) , 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,