Search Results max_repeats_for_credit
Overview
IGS_EN_REP_PROCESS_V is a seeded Oracle E-Business Suite view owned by the APPS schema and delivered as part of the IGS (Student System) product family. It exposes the repeat processing rules configured for a student's organizational unit, translating the underlying transaction table's internal foreign keys into human-readable attributes. The view presents one row per repeat process record, joined to the organizational unit description, providing reporting and integration consumers with a denormalized representation of repeat policy configuration. The view is documented as VALID in ETRM metadata for release 12.2.2 and remains compatible with 12.1.1.
Because repeat rules govern credit accrual, funding eligibility, advanced standing treatment, and grade-attempt selection, the view is frequently referenced by academic records reporting, institutional research extracts, and integration interfaces that must resolve repeat policy to an organizational context. The user search term "org_unit_id" maps directly to the view's most prominent join column.
Underlying Base Objects
The view is defined over two base objects within the IGS schema, both accessed by the APPS synonym layer:
- IGS_EN_REP_PROCESS ERP — the primary repeat process table, supplying the repeat process identifier, policy flags, and standard WHO columns.
- IGS_OR_UNIT IOU — the organizational unit table, supplying ORG_UNIT_CD and DESCRIPTION.
The defining SQL joins the two tables on ERP.ORG_UNIT_ID = IOU.PARTY_ID (+). The outer join operator (+) on the IGS_OR_UNIT side makes organizational unit details optional; repeat process rows whose org unit cannot be resolved still appear, with ORG_UNIT_CD and DESCRIPTION returned as NULL. This is significant when diagnosing orphaned repeat process setup. The ETRM metadata lists no other referenced base objects; the documented view text is the authoritative source for the join relationship.
Note that IGS_OR_UNIT is keyed by PARTY_ID (the HZ_PARTIES party identifier), not by a surrogate organization ID. This distinction matters for every query that filters on organizational context.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_EN_REP_PROCESS record.
- REPEAT_PROCESS_ID — primary identifier of the repeat process configuration.
- ORG_UNIT_ID — the organizational unit associated with the rule; matches IGS_OR_UNIT.PARTY_ID. This is the column most frequently used as a filter or join key.
- ORG_UNIT_CD, DESCRIPTION — the short code and descriptive name of the organizational unit, null when the outer join finds no match.
- INCLUDE_ADV_STANDING_UNITS — flag indicating whether advanced standing units participate in repeat evaluation.
- MAX_REPEATS_FOR_CREDIT, MAX_REPEATS_FOR_FUNDING — thresholds governing how many repeat attempts count toward credit and toward funding.
- USE_MOST_RECENT_UNIT_ATTEMPT, USE_BEST_GRADE_ATTEMPT — mutually indicative policy flags selecting which attempt is honored.
- EXTERNAL_FORMULA — reference to an externally defined formula for repeat evaluation.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns.
Common Use Cases and Queries
Typical consumption includes validation reporting that detects repeat processes lacking a valid organizational unit, configuration extracts for institutional policy review, and integration payloads that must publish repeat thresholds per organizational unit.
List repeat processes for a specific organizational unit:
SELECT repeat_process_id, org_unit_cd, description,
max_repeats_for_credit, max_repeats_for_funding
FROM apps.igs_en_rep_process_v
WHERE org_unit_id = :p_org_unit_id;
Detect repeat process rows with unresolved organizational units:
SELECT repeat_process_id, org_unit_id, last_updated_by, last_update_date FROM apps.igs_en_rep_process_v WHERE org_unit_cd IS NULL;
Audit recent configuration changes across all organizational units:
SELECT org_unit_cd, repeat_process_id, use_best_grade_attempt,
last_updated_by, last_update_date
FROM apps.igs_en_rep_process_v
WHERE last_update_date >= :p_since_date
ORDER BY last_update_date DESC;
Always qualify the view with the APPS schema and observe the ORG_UNIT_ID-to-PARTY_ID relationship when joining outward to organizational or party tables.
-
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: 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_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,
-
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 ,
-
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_UNIT_VER
12.1.1
-
VIEW: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
-
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: 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.IGS_PS_UNIT_VER_HIST_V
12.1.1
-
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: 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.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: 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: 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.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: 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
-
APPS.IGS_EN_REP_PROCESS_PKG SQL Statements
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.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: 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 ,
-
APPS.IGS_EN_ELGBL_UNIT SQL Statements
12.1.1
-
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
-
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
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_HIST_PKG
12.1.1
-
APPS.IGS_EN_ELGBL_UNIT dependencies on IGS_EN_REP_PROCESS
12.1.1
-
APPS.IGS_EN_ELGBL_UNIT dependencies on IGS_OR_UNIT
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_PKG
12.1.1
-
APPS.IGS_EN_REP_PROCESS_PKG dependencies on IGS_EN_REP_PROCESS
12.1.1