Search Results repeat_process_id
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 ,
-
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_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_EN_REP_PROCESS_V
12.1.1
-
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_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_EN_REP_PROCESS
12.2.2
product: IGS - Student System (Obsolete) , description: Used to store the setup details for Repeat Processing , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_REP_PROCESS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_REP_PROCESS_PKG
12.1.1
-
APPS.IGS_EN_REP_PROCESS_PKG dependencies on IGS_EN_REP_PROCESS
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'. ,
-
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'. ,