Search Results maximum_credit_points
Overview
The IGSBV_STDNT_PRG_INTERMISSIONS view is a read-only business view (BV) object within the Oracle E-Business Suite Student System (IGS) product family. It is owned by the APPS schema and carries a VALID status in both the 12.1.1 and 12.2.2 releases of Oracle EBS. The view is designed to expose intermission information associated with a student's program attempt — that is, periods during which a learner has formally paused, suspended, or otherwise interrupted their registered program of study. Intermissions are distinct from withdrawals: they represent a temporary leave of absence, and the view therefore captures not only the temporal boundaries of the pause but also institutional approvals, voluntary versus involuntary classification, and the anticipated academic impact measured in credit points and terms.
Within the IGS architecture, this view serves as a reporting and integration façade over the underlying intermission entity. It flattens person identity attributes and intermission detail into a single denormalised projection, allowing downstream reports, self-service pages, and integration extracts to access intermission data without joining to the person registry directly.
Underlying Base Objects
The documented view text shows the definition is constructed from two sources joined on the party identifier:
- IGS_EN_STDNT_PS_INTM (aliased SCI) — the core student program intermission table. This supplies all intermission-specific attributes: course code, intermission type, start and end dates, voluntary indicator, approval status, comments, institution name, maximum credit points, maximum terms, anticipated credit points, approver, audit columns, logical delete date, and the conditional return flag.
- HZ_PARTIES (aliased HP) — the Oracle Trading Community Architecture (TCA) party registry. The join condition
SCI.PERSON_ID = HP.PARTY_IDsupplies the party number and party name, giving the intermission record a human-readable identity context.
The view is declared WITH READ ONLY, confirming it is intended strictly for query and reporting purposes; no DML is permitted against it. The ETRM metadata for 12.2.2 does not enumerate further referenced base objects beyond these two, and no additional documented dependencies exist.
Key Columns
- PERSON_IDENTIFIER / PERSON_NUMBER / PERSON_NAME — the student's party identifier, human-readable party number, and full name sourced from HZ_PARTIES.
- PROGRAM_CODE — the course or program code against which the intermission applies (COURSE_CD in the base table).
- INTERMISSION_TYPE — the classification of the intermission.
- START_DATE / END_DATE — the effective period of the intermission.
- VOLUNTARY_FLAG and its lookup description VOLUNTARY_FLAG_DESC — whether the intermission was student-initiated, resolved against IGS_LOOKUP_VALUES (YES_NO).
- APPROVED_FLAG and APPROVED_FLAG_DESC — approval status of the intermission, likewise resolved through IGS_LOOKUP_VALUES.
- INSTITUTION_NAME — the institution associated with the intermission.
- MAXIMUM_CREDIT_POINTS / MAXIMUM_TERMS — the caps applied to the intermission.
- ANTICIPATED_CREDIT_POINTS — the credit points the student is expected to attain or retain in connection with the intermission; this is the column most commonly targeted by academic progress and credit-planning queries.
- APPROVER_PERSON_IDENTIFIER, CREATED_BY / CREATION_DATE, LAST_UPDATED_BY / LAST_UPDATE_DATE — audit and approver traceability.
- LOGICAL_DELETE_DATE — soft-delete marker; records with a populated value should generally be excluded from current-state reporting.
- COND_RETURN_FLAG — indicator of a conditional return arrangement.
Common Use Cases and Queries
Typical uses include student academic progress reporting, intermission register listings for registrar offices, and extracts feeding credit-point forecasting. The ANTICIPATED_CREDIT_POINTS column is frequently requested where institutions assess the credit impact of a leave of absence.
Listing active intermissions for a student:
SELECT person_number, person_name, program_code,
intermission_type, start_date, end_date,
approved_flag_desc, anticipated_credit_points
FROM apps.igsbv_stdnt_prg_intermissions
WHERE person_number = :p_party_number
AND logical_delete_date IS NULL;
Aggregating anticipated credit points by program:
SELECT program_code,
SUM(anticipated_credit_points) AS total_anticipated_credits
FROM apps.igsbv_stdnt_prg_intermissions
WHERE approved_flag = 'Y'
AND logical_delete_date IS NULL
GROUP BY program_code;
Because the view is read-only and already resolves the YES_NO lookup meanings, it is well suited to ad-hoc reporting and to views layered in a custom reporting schema.
-
View: IGSBV_STDNT_PRG_INTERMISSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STDNT_PRG_INTERMISSIONS, object_name:IGSBV_STDNT_PRG_INTERMISSIONS, status:VALID, product: IGS - Student System , description: This entity gives the intermission information of the student's program attempt. , implementation_dba_data: APPS.IGSBV_STDNT_PRG_INTERMISSIONS ,
-
VIEW: APPS.IGS_PS_USEC_CPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_CPS_V, object_name:IGS_PS_USEC_CPS_V, status:VALID,
-
TABLE: IGS.IGS_PS_USEC_CPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_CPS, object_name:IGS_PS_USEC_CPS, status:VALID,
-
View: IGS_PS_USEC_CPS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_STDNT_PRG_INTERMISSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity gives the intermission information of the student's program attempt. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_CPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_CPS_V, object_name:IGS_PS_USEC_CPS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_CPS_V ,
-
View: IGSFV_STDNT_PRG_INTERMISSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STDNT_PRG_INTERMISSIONS, object_name:IGSFV_STDNT_PRG_INTERMISSIONS, status:VALID, product: IGS - Student System , description: This entity gives the intermission information of the student's program attempt. , implementation_dba_data: APPS.IGSFV_STDNT_PRG_INTERMISSIONS ,
-
View: IGSFV_STDNT_PRG_INTERMISSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity gives the intermission information of the student's program attempt. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_STDNT_PRG_INTERMISSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STDNT_PRG_INTERMISSIONS, object_name:IGSBV_STDNT_PRG_INTERMISSIONS, status:VALID,
-
VIEW: APPS.IGSFV_STDNT_PRG_INTERMISSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STDNT_PRG_INTERMISSIONS, object_name:IGSFV_STDNT_PRG_INTERMISSIONS, status:VALID,
-
APPS.IGS_PS_USEC_CPS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_CPS_PKG
12.1.1
-
TABLE: IGS.IGS_PS_LGCY_US_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_LGCY_US_INT, object_name:IGS_PS_LGCY_US_INT, status:VALID,
-
Lookup Type: LEGACY_TOKENS
12.1.1
product: IGS - Student System , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
Lookup Type: LEGACY_TOKENS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
APPS.IGS_PS_UNIT_LGCY_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_UNIT_OFR_PAT_ALL
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_USEC_CPS
12.1.1
-
APPS.IGS_PS_USEC_CPS_PKG dependencies on IGS_PS_USEC_CPS_S
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_USEC_CPS
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_USEC_CPS_S
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_USEC_CPS_PKG
12.1.1
-
APPS.IGS_PS_USEC_CPS_PKG dependencies on IGS_PS_USEC_CPS
12.1.1
-
APPS.IGS_SS_ENR_DETAILS SQL Statements
12.1.1
-
APPS.IGS_SS_ENR_DETAILS dependencies on IGS_PS_USEC_CPS
12.1.1
-
PACKAGE: APPS.IGS_PS_GENERIC_PUB
12.1.1
-
APPS.IGS_PS_USEC_CPS_PKG dependencies on APP_EXCEPTION
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_LGCY_CONC_PKG
12.1.1
-
APPS.IGS_PS_USEC_CPS_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_LGCY_PKG
12.1.1
-
APPS.IGS_PS_USEC_CPS_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_SS_ENR_DETAILS
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_VALIDATE_LGCY_PKG
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'. ,