Search Results igs_en_spi_rconds
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
IGS_EN_SPI_RCONDS is a transactional table within the IGS (Student System) product family of Oracle E-Business Suite, holding Student Program Intermission Return Conditions. In functional terms, the table records the conditions that must be satisfied by a student who returns from an intermission (a formal leave of absence or interruption) on a specific program of study. Each row binds a person, a course or program, an intermission start date, a logical delete marker, and a return condition code into a single association, together with lifecycle attributes such as approval status and audit columns. The object carries a status of VALID and resides in the IGS schema, and it is documented in ETRM for both the 12.1.1 and 12.2.2 releases.
Under the heuristic Data Vault classification derived from its foreign key structure, this table is modeled as a link: it resolves several independent business keys — the student program intermission and the return condition definition — into a single relationship record, rather than storing descriptive attributes of a single parent entity. This is a modeling suggestion only; the physical implementation remains a standard Oracle EBS relational table.
Key Information Stored
The documented physical schema contains thirteen columns. The most significant are the following:
- PERSON_ID — the student for whom the return condition applies; part of the primary key and a foreign key to IGS_EN_STDNT_PS_INTM.
- COURSE_CD — the course or program of study associated with the intermission; part of the primary key.
- START_DT — the intermission start date that anchors the condition; part of the primary key.
- LOGICAL_DELETE_DATE — a soft-delete timestamp allowing multiple historical versions of the same business key; part of the primary key.
- RETURN_CONDITION — the condition code governing the student's return; part of the primary key and a foreign key to IGS_EN_INTM_RCONDS.
- STATUS_CODE — the processing or lifecycle state of the return condition record.
- APPROVED_DT and APPROVED_BY — the date of approval and the user who approved the condition.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard Oracle Applications who-columns for audit and concurrency tracking.
The surrogate primary key is IGS_EN_SPI_RCONDS_PK, which is a composite unique index over PERSON_ID, COURSE_CD, START_DT, LOGICAL_DELETE_DATE, and RETURN_CONDITION. Because the key is composite and derived from business attributes rather than a system-generated identifier, those five columns effectively function as the business-key candidate for uniqueness. The inclusion of LOGICAL_DELETE_DATE in the unique index is notable: it permits a student to have an active and a logically deleted condition for the same person, course, start date, and condition code without violating the constraint.
Common Use Cases and Queries
The table is typically queried to determine which conditions a returning student must fulfil, and whether those conditions have been approved. A typical lookup for a single student joins the intermission header and the condition definition:
- Listing active conditions for a person: SELECT r.return_condition, r.status_code, r.approved_dt FROM igs_en_spi_rconds r WHERE r.person_id = :p_person AND r.logical_delete_date IS NULL AND r.status_code = 'ACTIVE'.
- Reporting all students with outstanding, unapproved conditions by program and start date for registrar follow-up.
- Resolving condition descriptions by joining RETURN_CONDITION to IGS_EN_INTM_RCONDS to translate codes into user-facing text.
- Auditing changes over time by deliberately including rows where LOGICAL_DELETE_DATE is populated.
Reporting extracts commonly filter on STATUS_CODE and APPROVED_DT for compliance reporting, while operational forms rely on the who-columns for change tracking. Because LOGICAL_DELETE_DATE participates in the primary key, queries that ignore it may return historical rows, so it should be constrained explicitly in most operational retrievals.
Related Objects
The most significant related objects are those named in the documented foreign keys:
- IGS_EN_STDNT_PS_INTM — the student program intermission header; joined on PERSON_ID, COURSE_CD, START_DT, and LOGICAL_DELETE_DATE.
- IGS_EN_INTM_RCONDS — the return condition definition (code lookup); joined on RETURN_CONDITION.
- IGS_EN_SPI_RCONDS_PK — the composite primary key/unique index that enforces the business-key uniqueness described above.
Additional related objects include the student and person entities reached through PERSON_ID, the course catalog reached through COURSE_CD, and the standard Oracle Applications audit infrastructure referenced by CREATED_BY, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN.
-
Table: IGS_EN_SPI_RCONDS
12.2.2
product: IGS - Student System (Obsolete) , description: Student Program Intermission Return Conditions , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_SPI_RCONDS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPI_RCONDS, object_name:IGS_EN_SPI_RCONDS, status:VALID, product: IGS - Student System , description: Student Program Intermission Return Conditions , implementation_dba_data: IGS.IGS_EN_SPI_RCONDS ,
-
SYNONYM: APPS.IGS_EN_SPI_RCONDS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_SPI_RCONDS, status:VALID,
-
VIEW: APPS.IGS_EN_SPI_RCONDS_V
12.1.1
-
VIEW: APPS.IGSFV_INTM_RETURN_CONDS
12.1.1
-
VIEW: APPS.IGSBV_INTM_RETURN_CONDS
12.1.1
-
APPS.IGS_EN_SPI_RCONDS_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_EN_SPI_RCONDS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPI_RCONDS, object_name:IGS_EN_SPI_RCONDS, status:VALID,
-
Table: IGS_EN_INTM_RCONDS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_INTM_RCONDS, object_name:IGS_EN_INTM_RCONDS, status:VALID, product: IGS - Student System , description: Intermission Return Conditions , implementation_dba_data: IGS.IGS_EN_INTM_RCONDS ,
-
PACKAGE BODY: APPS.IGS_EN_SPI_RCONDS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SPI_RCONDS_PKG, status:VALID,
-
View: IGSBV_INTM_RETURN_CONDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_INTM_RETURN_CONDS, object_name:IGSBV_INTM_RETURN_CONDS, status:VALID, product: IGS - Student System , description: Student Intermission Return Conditions , implementation_dba_data: APPS.IGSBV_INTM_RETURN_CONDS ,
-
Table: IGS_EN_INTM_RCONDS
12.2.2
product: IGS - Student System (Obsolete) , description: Intermission Return Conditions , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_SPI_RCONDS_PKG
12.1.1
-
View: IGS_EN_SPI_RCONDS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Student Intermission Return Conditions , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_STDNT_PS_INTM
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes an intermission by a student from the student course attempt. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_STDNT_PS_INTM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_STDNT_PS_INTM, object_name:IGS_EN_STDNT_PS_INTM, status:VALID, product: IGS - Student System , description: This entity describes an intermission by a student from the student course attempt. , implementation_dba_data: IGS.IGS_EN_STDNT_PS_INTM ,
-
View: IGS_EN_SPI_RCONDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPI_RCONDS_V, object_name:IGS_EN_SPI_RCONDS_V, status:VALID, product: IGS - Student System , description: Student Intermission Return Conditions , implementation_dba_data: APPS.IGS_EN_SPI_RCONDS_V ,
-
View: IGSBV_INTM_RETURN_CONDS
12.2.2
product: IGS - Student System (Obsolete) , description: Student Intermission Return Conditions , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_INTM_RETURN_CONDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_INTM_RETURN_CONDS, object_name:IGSFV_INTM_RETURN_CONDS, status:VALID, product: IGS - Student System , description: Student Intermission Return Conditions , implementation_dba_data: APPS.IGSFV_INTM_RETURN_CONDS ,
-
PACKAGE BODY: APPS.IGS_EN_STDNT_PS_INTM_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_STDNT_PS_INTM_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_SPI_RCOND_LGCY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SPI_RCOND_LGCY_PUB, status:VALID,
-
View: IGSFV_INTM_RETURN_CONDS
12.2.2
product: IGS - Student System (Obsolete) , description: Student Intermission Return Conditions , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_GEN_006
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_006, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_012
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_012, status:VALID,
-
VIEW: APPS.IGS_EN_SPI_RCONDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPI_RCONDS_V, object_name:IGS_EN_SPI_RCONDS_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_VAL_SUA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_SUA, status:VALID,
-
VIEW: APPS.IGSBV_INTM_RETURN_CONDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_INTM_RETURN_CONDS, object_name:IGSBV_INTM_RETURN_CONDS, status:VALID,
-
VIEW: APPS.IGSFV_INTM_RETURN_CONDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_INTM_RETURN_CONDS, object_name:IGSFV_INTM_RETURN_CONDS, status:VALID,
-
APPS.IGS_EN_SPI_RCOND_LGCY_PUB SQL Statements
12.1.1
-
APPS.IGS_EN_GEN_006 SQL Statements
12.1.1
-
APPS.IGS_EN_SPI_RCOND_LGCY_PUB dependencies on IGS_EN_SPI_RCONDS
12.1.1
-
APPS.IGS_EN_GEN_012 dependencies on IGS_EN_SPI_RCONDS
12.1.1
-
APPS.IGS_EN_GEN_006 dependencies on IGS_EN_SPI_RCONDS
12.1.1
-
APPS.IGS_EN_SPI_RCONDS_PKG dependencies on IGS_EN_SPI_RCONDS
12.1.1
-
APPS.IGS_EN_STDNT_PS_INTM_PKG dependencies on IGS_EN_SPI_RCONDS
12.1.1
-
APPS.IGS_EN_VAL_SUA dependencies on IGS_EN_SPI_RCONDS
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SPI_RCOND_LGCY_PUB
12.1.1
-
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
-
APPS.IGS_EN_VAL_SUA SQL Statements
12.1.1
-
APPS.IGS_EN_STDNT_PS_INTM_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_EN_GEN_012 dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_EN_SPI_RCONDS_PKG dependencies on IGS_EN_SPI_RCONDS_PKG
12.1.1
-
APPS.IGS_EN_GEN_012 dependencies on IGS_PS_VER
12.1.1
-
APPS.IGS_EN_GEN_012 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_STDNT_PS_INTM_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_006
12.1.1