Search Results not_multiple_section_flag
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.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_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: IGSFV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_OFFERING_OPTIONS, object_name:IGSFV_UNIT_OFFERING_OPTIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements, special permission and grading indicators. , implementation_dba_data: APPS.IGSFV_UNIT_OFFERING_OPTIONS ,
-
View: IGSBV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_OFFERING_OPTIONS, object_name:IGSBV_UNIT_OFFERING_OPTIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements , special permission and grading indicators. , implementation_dba_data: APPS.IGSBV_UNIT_OFFERING_OPTIONS ,
-
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_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 ,
-
Lookup Type: LEGACY_TOKENS
12.1.1
product: IGS - Student System , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,