Search Results max_repeats_for_funding
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
IGS_EN_REP_PROCESS is a configuration table in the Oracle E-Business Suite Student System (IGS) product family. Its documented purpose is to store the setup details for Repeat Processing, the mechanism by which an institution defines how repeated course attempts are evaluated for academic standing, credit accumulation, and funding eligibility. Each row in the table represents a single repeat-processing rule set, typically scoped to an institution and an organizational unit.
The table resides in the IGS schema and is marked VALID in the documented ETRM metadata. It carries 15 columns and is identified by the primary key constraint IGS_EN_REP_PROCESS_PK, which is defined on the REPEAT_PROCESS_ID column. One foreign key relationship is documented: ORG_UNIT_ID references HZ_PARTIES, tying the repeat rule to the Oracle Trading Community Architecture party model used to represent organizational units.
From a heuristic Data Vault modeling perspective, the mined foreign-key structure classifies this object as satellite-leaning. In practice, that suggests treating it as a descriptive, attribute-bearing structure linked to a business key rather than as an independent hub or a pure association table.
Key Information Stored
The table separates its surrogate identity from its business configuration attributes. The most significant columns documented in the ETRM metadata are:
- REPEAT_PROCESS_ID — the surrogate primary key, generated to uniquely identify each repeat-processing setup record.
- INSTITUTION_CD and ORG_UNIT_CD — the institution and organizational unit codes that scope the rule; together these act as the principal business-key candidates.
- ORG_UNIT_ID — the foreign key to HZ_PARTIES, providing the internal identifier of the owning organizational unit.
- INCLUDE_ADV_STANDING_UNITS — controls whether units attempted under advanced standing are counted toward repeat logic.
- MAX_REPEATS_FOR_CREDIT — the maximum number of repeat attempts counted for academic credit.
- MAX_REPEATS_FOR_FUNDING — the maximum number of repeat attempts eligible for funding.
- USE_MOST_RECENT_UNIT_ATTEMPT — determines whether the most recent attempt governs the outcome.
- USE_BEST_GRADE_ATTEMPT — determines whether the highest grade achieved governs the outcome.
- EXTERNAL_FORMULA — holds an externally supplied formula reference used when standard repeat logic must be overridden.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard Oracle EBS audit columns capturing record provenance and change history.
Common Use Cases and Queries
Registrar and student-records teams use this table to verify which repeat policy applies to a given organizational unit before processing grade changes, transcript recalculation, or funding extracts. A typical lookup joins the setup row to its owning party:
- Retrieve the active rule set for an institution and unit:
SELECT * FROM igs.igs_en_rep_process WHERE institution_cd = :p_inst AND org_unit_cd = :p_unit; - Resolve the organizational unit description via the documented FK:
SELECT r.repeat_process_id, p.party_name FROM igs.igs_en_rep_process r, hz_parties p WHERE r.org_unit_id = p.party_id; - Audit repeat-credit ceilings across units:
SELECT org_unit_cd, max_repeats_for_credit, max_repeats_for_funding FROM igs.igs_en_rep_process; - Identify rules relying on non-standard logic:
SELECT repeat_process_id, external_formula FROM igs.igs_en_rep_process WHERE external_formula IS NOT NULL;
Reporting use cases include policy-compliance extracts, configuration baselines for implementations, and reconciliation of funding-eligibility rules against institutional policy.
Related Objects
- HZ_PARTIES — referenced through ORG_UNIT_ID; supplies the organizational unit identity.
- IGS_EN_REP_PROCESS_PK — the primary key constraint on REPEAT_PROCESS_ID.
- IGS_EN_REP_PROCESS (base table) — the central setup record consumed by repeat-processing logic and inquiry forms.
Other IGS student-system entities — including enrollment, unit attempt, and grade records — depend on this configuration at runtime, though additional foreign-key relationships are not enumerated in the supplied ETRM metadata.
-
Table: IGS_EN_REP_PROCESS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_REP_PROCESS, object_name:IGS_EN_REP_PROCESS, status:VALID, product: IGS - Student System , description: Used to store the setup details for Repeat Processing , implementation_dba_data: IGS.IGS_EN_REP_PROCESS ,
-
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_LGCY_UV_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_LGCY_UV_INT, object_name:IGS_PS_LGCY_UV_INT, status:VALID, product: IGS - Student System , description: Legacy Unit Version Interface Table. , implementation_dba_data: IGS.IGS_PS_LGCY_UV_INT ,
-
Table: 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, product: IGS - Student System , description: This entity describes a version of a unit, which is offered by the university. , implementation_dba_data: IGS.IGS_PS_UNIT_VER_ALL ,
-
Table: 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, product: IGS - Student System , description: This entity describes the history of changes to a unit version. , implementation_dba_data: IGS.IGS_PS_UNIT_VER_HIST_ALL ,
-
View: IGS_EN_REP_PROCESS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: APPS.IGS_EN_REP_PROCESS_V
12.1.1
-
VIEW: APPS.IGS_PS_USEC_RPT_COND_V
12.1.1
-
View: IGS_EN_REP_PROCESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_REP_PROCESS_V, object_name:IGS_EN_REP_PROCESS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_EN_REP_PROCESS_V ,
-
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,
-
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 ,
-
TABLE: IGS.IGS_EN_REP_PROCESS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_REP_PROCESS, object_name:IGS_EN_REP_PROCESS, status:VALID,
-
VIEW: APPS.IGS_EN_REP_PROCESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_REP_PROCESS_V, object_name:IGS_EN_REP_PROCESS_V, status:VALID,
-
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: 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_PS_UNIT_VER
12.1.1
-
VIEW: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
-
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,
-
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: IGS_PS_UNIT_VER
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: 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: IGS_PS_UNIT_VER_V
12.2.2
product: IGS - Student System (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: 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: 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: APPS.IGS_PS_UNIT_VER_V
12.1.1
-
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: 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 ,
-
APPS.IGS_EN_REP_PROCESS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
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.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.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: 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_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,
-
APPS.IGS_PS_UNIT_VER_HIST_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_REP_PROCESS_PKG
12.1.1
-
APPS.IGS_EN_ELGBL_UNIT SQL Statements
12.1.1
-
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,
-
TABLE: IGS.IGS_PS_LGCY_UV_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_LGCY_UV_INT, object_name:IGS_PS_LGCY_UV_INT, status:VALID,
-
APPS.IGS_PS_UNIT_VER_PKG SQL Statements
12.1.1
-
Lookup Type: LEGACY_TOKENS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
Lookup Type: LEGACY_TOKENS
12.1.1
product: IGS - Student System , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
PACKAGE BODY: APPS.IGS_AU_GEN_004
12.1.1