Search Results igs_ps_usec_rpt_cond
Overview
IGS_PS_USEC_RPT_COND is a table in the IGS (Student System) schema of Oracle E-Business Suite, documented as VALID in both release 12.1.1 and 12.2.2. It models the repeat conditions attached to a unit section offering option — that is, the rules that govern whether a student may repeat a unit of study, how many times, and under what constraints. The table is part of the academic structure and enrollment configuration layer of Oracle Student System, sitting downstream of the unit offering option definition and feeding enrollment, progression, and funding evaluation logic.
The ETRM metadata classifies this object heuristically as satellite-leaning within a Data Vault modeling suggestion. This is consistent with its physical shape: the table carries a single foreign key to the parent unit offering option and holds a set of descriptive, mostly flag- and threshold-based attributes, rather than acting as a hub of business keys or a link resolving many-to-many relationships. The child relationship to IGS_PS_UNIT_OFR_OPT_ALL is a classic parent-to-satellite dependency, and the business-key uniqueness on UOO_ID reinforces that a unit offering option carries one governing repeat-condition record.
Key Information Stored
The table is documented with 14 columns. The most significant are:
- UNIT_SECTION_REPT_CONDITION_ID — the surrogate primary key, defined by the unique index IGS_PS_USEC_RPT_COND_PK. This is the technical identifier for the repeat-condition record and is the column referenced by dependent foreign keys.
- UOO_ID — the foreign key to IGS_PS_UNIT_OFR_OPT_ALL, identifying the unit offering option to which the repeat condition applies. This column is also governed by the unique index IGS_PS_USEC_RPT_COND_U2, making it a business-key candidate and enforcing one repeat-condition row per offering option.
- REPEATABLE_IND — the primary indicator of whether the unit section is repeatable under the configured condition.
- SAME_TEACHING_PERIOD — controls whether repeats must occur within the same teaching period context.
- MAX_REPEATS_FOR_CREDIT — the maximum number of repeats permitted where credit is awarded.
- MAX_REPEATS_FOR_FUNDING — the maximum number of repeats permitted for funding purposes, which may differ from the credit limit.
- MAX_REPEAT_CREDIT_POINTS — the credit point ceiling associated with permitted repeats.
- SAME_TEACH_PERIOD_REPEATS — the count of repeats allowed within the same teaching period.
- SAME_TEACH_PERIOD_REPEATS_CP — the credit point value attached to those same-teaching-period repeats.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS audit columns, which should always be projected in extracts to support change tracking and lineage.
The distinction between the surrogate key and the UOO_ID business key is important: integrations should treat UOO_ID as the stable business identifier and the surrogate as internal only.
Common Use Cases and Queries
Typical scenarios include validating whether a re-enrollment of a student into a unit section complies with institutional repeat policy, reporting on units with unlimited or high repeat allowances, and reconciling funding-eligible repeats against funded enrollment records. Because the table is keyed to the unit offering option, the most common query pattern joins upward to the offering option hierarchy.
A representative query retrieves all repeat conditions for a given offering option:
- SELECT r.UNIT_SECTION_REPT_CONDITION_ID, r.UOO_ID, r.REPEATABLE_IND, r.MAX_REPEATS_FOR_CREDIT, r.MAX_REPEATS_FOR_FUNDING FROM IGS.IGS_PS_USEC_RPT_COND r WHERE r.UOO_ID = :uoo_id;
- SELECT r.UOO_ID, r.SAME_TEACHING_PERIOD, r.SAME_TEACH_PERIOD_REPEATS, r.MAX_REPEAT_CREDIT_POINTS FROM IGS.IGS_PS_USEC_RPT_COND r WHERE r.REPEATABLE_IND = 'Y';
Reports that expose repeat policy by unit, teaching period, or funding category typically drive the join from IGS_PS_UNIT_OFR_OPT_ALL to this table on UOO_ID. Audit-oriented extracts filter on LAST_UPDATE_DATE to capture configuration changes over time.
Related Objects
The following objects are the most significant to consider when querying or extending this table:
- IGS_PS_UNIT_OFR_OPT_ALL — the parent table, joined on UOO_ID = IGS_PS_UNIT_OFR_OPT_ALL.UOO_ID. This is the only documented foreign key relationship and is the mandatory join path.
- IGS_PS_USEC_RPT_COND_PK — the primary key constraint/index on UNIT_SECTION_REPT_CONDITION_ID.
- IGS_PS_USEC_RPT_COND_U1 — the unique index on UNIT_SECTION_REPT_CONDITION_ID.
- IGS_PS_USEC_RPT_COND_U2 — the unique index on UOO_ID that enforces the business key.
- Downstream enrollment and progression objects that consume repeat policy at enrollment time, including student unit attempt and enrollment configuration entities in the IGS schema.
The seed documentation referenced in the metadata (PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc) is marked obsolete, so current behavior should be validated against the live 12.1.1 or 12.2.2 dictionary rather than the historical design document.
-
Table: IGS_PS_USEC_RPT_COND
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_RPT_COND, object_name:IGS_PS_USEC_RPT_COND, status:VALID, product: IGS - Student System , description: This entity describes the Repeat Conditions for a Unit Section. Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: IGS.IGS_PS_USEC_RPT_COND ,
-
Table: IGS_PS_USEC_RPT_COND
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Repeat Conditions for a Unit Section. Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PS_USEC_RPT_COND
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_USEC_RPT_COND, status:VALID,
-
VIEW: APPS.IGSFV_USEC_REPEAT_CONDITIONS
12.1.1
-
VIEW: APPS.IGSBV_USEC_REPEAT_CONDITIONS
12.1.1
-
TABLE: IGS.IGS_PS_USEC_RPT_COND
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_RPT_COND, object_name:IGS_PS_USEC_RPT_COND, status:VALID,
-
VIEW: APPS.IGS_PS_USEC_RPT_COND_V
12.1.1
-
View: IGS_PS_USEC_RPT_COND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_RPT_COND_V, object_name:IGS_PS_USEC_RPT_COND_V, status:VALID, product: IGS - Student System , description: Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: APPS.IGS_PS_USEC_RPT_COND_V ,
-
View: IGS_PS_USEC_RPT_COND_V
12.2.2
product: IGS - Student System (Obsolete) , description: Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_USEC_REPEAT_CONDITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_REPEAT_CONDITIONS, object_name:IGSBV_USEC_REPEAT_CONDITIONS, status:VALID, product: IGS - Student System , description: This is the base view, which describes the repeat conditions for a unit section .Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: APPS.IGSBV_USEC_REPEAT_CONDITIONS ,
-
View: IGSFV_USEC_REPEAT_CONDITIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view, which describes the repeat conditions for a unit section .Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_USEC_REPEAT_CONDITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_REPEAT_CONDITIONS, object_name:IGSFV_USEC_REPEAT_CONDITIONS, status:VALID, product: IGS - Student System , description: This is the full view, which describes the repeat conditions for a unit section .Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: APPS.IGSFV_USEC_REPEAT_CONDITIONS ,
-
View: IGSBV_USEC_REPEAT_CONDITIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view, which describes the repeat conditions for a unit section .Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_RPT_COND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_RPT_COND_V, object_name:IGS_PS_USEC_RPT_COND_V, status:VALID,
-
Table: IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_ALL, object_name:IGS_PS_UNIT_OFR_OPT_ALL, status:VALID, product: IGS - Student System , description: This entity describes the available options for each unit offering. , implementation_dba_data: IGS.IGS_PS_UNIT_OFR_OPT_ALL ,
-
Table: IGS_PS_UNIT_OFR_OPT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the available options for each unit offering. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_USEC_REPEAT_CONDITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_REPEAT_CONDITIONS, object_name:IGSBV_USEC_REPEAT_CONDITIONS, status:VALID,
-
VIEW: APPS.IGSFV_USEC_REPEAT_CONDITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_REPEAT_CONDITIONS, object_name:IGSFV_USEC_REPEAT_CONDITIONS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_US_REQ_REF_CD_PKG
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_US_REQ_REF_CD
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'. ,
-
12.1.1 DBA Data
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'. ,