Search Results igs_ps_ofr_inst
Overview
The table IGS_PS_OFR_INST is a core entity within the now-obsolete Oracle E-Business Suite Student System (IGS). Its primary function is to model the specific temporal offerings of an academic program. It establishes a critical link between a defined program (course) and the concrete calendar instances in which that program is available for enrollment. This table enables the system to manage which academic terms or periods a particular program version is active and offered, forming a foundational part of scheduling and program planning. The provided metadata explicitly notes this table is "Not implemented in this database," indicating it may exist as a reference or legacy object in some installations but is not actively used in the standard product for the referenced versions (12.1.1 / 12.2.2).
Key Information Stored
The table's structure centers on a composite primary key that uniquely identifies each program offering instance. The key columns are COURSE_CD (the code identifying the academic program), VERSION_NUMBER (the specific version of that program), CAL_TYPE (the type of calendar, such as 'SEMESTER' or 'QUARTER'), and CI_SEQUENCE_NUMBER (a sequence identifying a specific instance within that calendar type). While the full column list is not provided in the excerpt, the foreign key relationships imply the table also contains at least CI_START_DT and CI_END_DT columns, which would store the start and end dates for that particular calendar instance as it relates to the program offering.
Common Use Cases and Queries
In an active implementation, this table would be central to queries determining program availability. Common use cases would include generating catalogs of programs offered in a given term, validating student enrollment against active offering periods, and planning academic schedules. A typical reporting query might join this table to program details and calendar tables to list all available programs for an upcoming semester.
SELECT prog.course_cd,
prog.title,
inst.cal_type,
inst.ci_sequence_number,
inst.ci_start_dt,
inst.ci_end_dt
FROM igs_ps_ofr_inst inst,
igs_ps_ofr_all prog
WHERE inst.course_cd = prog.course_cd
AND inst.version_number = prog.version_number
AND inst.cal_type = '&CALENDAR_TYPE'
AND SYSDATE BETWEEN inst.ci_start_dt AND inst.ci_end_dt;
Related Objects
Based on the documented foreign key relationships, IGS_PS_OFR_INST has defined dependencies with the following key tables:
- IGS_PS_OFR_ALL: The master table for program (course) offerings. The join is on COURSE_CD, VERSION_NUMBER, and CAL_TYPE, establishing the base program definition to which an instance belongs.
- IGS_CA_INST_ALL: The table for calendar instances. The join uses CAL_TYPE, CI_SEQUENCE_NUMBER, CI_START_DT, and CI_END_DT, linking the program offering to a specific dated period in the academic calendar.
- IGS_PS_OFR_PAT: Likely a table for program offering patterns. It references IGS_PS_OFR_INST via its primary key columns (COURSE_CD, VERSION_NUMBER, CAL_TYPE, CI_SEQUENCE_NUMBER), suggesting that patterns of study are defined per offering instance.
-
Table: IGS_PS_OFR_INST
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the instances of a calendar type in which a particular program is on offer. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_OFR_INST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_OFR_INST, object_name:IGS_PS_OFR_INST, status:VALID, product: IGS - Student System , description: This entity describes the instances of a calendar type in which a particular program is on offer. , implementation_dba_data: IGS.IGS_PS_OFR_INST ,
-
APPS.IGF_SL_DL_RECORD dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGF_SL_DL_ORIG dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGF_SL_DL_RECORD dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGS_PS_GEN_003 dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGS_PS_OFR_INST_PKG dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGS_PS_VAL_CRV dependencies on IGS_PS_OFR_INST
12.1.1
-
APPS.IGS_PS_OFR_INST_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_VAL_CRV dependencies on IGS_PS_OFR
12.1.1
-
SYNONYM: APPS.IGS_PS_OFR_INST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_OFR_INST, status:VALID,
-
VIEW: APPS.IGSBV_PROG_CALENDAR_OFFERINGS
12.1.1
-
VIEW: APPS.IGSFV_PROG_CALENDAR_OFFERINGS
12.1.1
-
APPS.IGF_SL_DL_RECORD dependencies on IGF_SL_LOANS_V
12.1.1
-
TABLE: IGS.IGS_PS_OFR_INST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_OFR_INST, object_name:IGS_PS_OFR_INST, status:VALID,
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_OFR
12.1.1
-
APPS.IGS_PS_GEN_003 dependencies on IGS_PS_VER
12.1.1
-
VIEW: APPS.IGSBV_PROG_OFFERING_PATTERNS
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_OFR_INST_PKG
12.1.1
-
APPS.IGS_PS_GEN_003 dependencies on IGS_OR_UNIT
12.1.1
-
APPS.IGS_PS_OFR_INST_PKG dependencies on IGS_PS_OFR_INST_PKG
12.1.1
-
PACKAGE: APPS.IGF_SL_DL_RECORD
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_SL_DL_RECORD, status:VALID,
-
Table: IGS_PS_OFR_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_OFR_ALL, object_name:IGS_PS_OFR_ALL, status:VALID, product: IGS - Student System , description: This entity describes an offering of a university program within a calendar type. , implementation_dba_data: IGS.IGS_PS_OFR_ALL ,
-
APPS.IGS_PS_VAL_CRV dependencies on IGS_PS_ENT_PT_REF_CD
12.1.1
-
Table: IGS_PS_OFR_PAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_OFR_PAT, object_name:IGS_PS_OFR_PAT, status:VALID, product: IGS - Student System , description: This entity describes the offering pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: IGS.IGS_PS_OFR_PAT ,
-
APPS.IGS_PS_GEN_003 dependencies on IGS_CA_INST
12.1.1
-
VIEW: APPS.IGSFV_PROG_OFFERING_PATTERNS
12.1.1
-
View: IGSBV_PROG_CALENDAR_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROG_CALENDAR_OFFERINGS, object_name:IGSBV_PROG_CALENDAR_OFFERINGS, status:VALID, product: IGS - Student System , description: This is a base view , which describes the instances of a calendar type in that a particular program is on offer. , implementation_dba_data: APPS.IGSBV_PROG_CALENDAR_OFFERINGS ,
-
Table: IGS_PS_OFR_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes an offering of a university program within a calendar type. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROG_CALENDAR_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_CALENDAR_OFFERINGS, object_name:IGSFV_PROG_CALENDAR_OFFERINGS, status:VALID, product: IGS - Student System , description: This is a full view , which describes the instances of a calendar type in that a particular program is on offer. , implementation_dba_data: APPS.IGSFV_PROG_CALENDAR_OFFERINGS ,
-
Table: IGS_PS_OFR_PAT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the offering pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROG_CALENDAR_OFFERINGS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view , which describes the instances of a calendar type in that a particular program is on offer. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_PS_OFR_INST_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_OFR_INST_PKG, status:VALID,
-
View: IGSBV_PROG_CALENDAR_OFFERINGS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view , which describes the instances of a calendar type in that a particular program is on offer. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_SL_DL_RECORD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_RECORD, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_ORIG, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_CRV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VAL_CRV, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_COI
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_GEN_003, status:VALID,
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_ANL_LOAD_U_LN
12.1.1
-
View: IGSBV_PROG_OFFERING_PATTERNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROG_OFFERING_PATTERNS, object_name:IGSBV_PROG_OFFERING_PATTERNS, status:VALID, product: IGS - Student System , description: This is a base view, which describes the Offering Pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: APPS.IGSBV_PROG_OFFERING_PATTERNS ,
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_ENT_PT_REF_CD
12.1.1
-
View: IGSBV_PROG_OFFERING_PATTERNS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes the Offering Pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_OFR_PAT
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_OFR_PAT_NOTE
12.1.1
-
View: IGSFV_PROG_OFFERING_PATTERNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_OFFERING_PATTERNS, object_name:IGSFV_PROG_OFFERING_PATTERNS, status:VALID, product: IGS - Student System , description: This is a full view, which describes the Offering Pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: APPS.IGSFV_PROG_OFFERING_PATTERNS ,
-
View: IGSFV_PROG_OFFERING_PATTERNS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes the Offering Pattern of a program offering option. This is related to a calendar instance, nominating when each option is available. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_SL_DL_RECORD dependencies on IGF_SL_LOANS
12.1.1
-
VIEW: APPS.IGSFV_PROG_CALENDAR_OFFERINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_CALENDAR_OFFERINGS, object_name:IGSFV_PROG_CALENDAR_OFFERINGS, status:VALID,