Search Results rule_check_ind
Overview
IGS_PR_STDNT_PS_ATT_V is an Oracle E-Business Suite view owned by the APPS schema within the IGS (Student System) product family. In release 12.1.1 and 12.2.2 it exposes student course attempt and attendance data drawn from the IGS_PR_STDNT_PS_ATT entity, joined to the party table to resolve the human-readable party number. The view presents one row per student course attempt, identified by the base table ROWID, and carries the full range of progression, attendance, completion, and administrative attributes that the Student System maintains for a learner's enrolment record.
Its principal role is to provide a denormalised, read-only projection of the persisted student attempt record for reporting, extract, and integration purposes. Because it surfaces both the recorded attendance values (ATTENDANCE_MODE, ATTENDANCE_TYPE) and the values derived by the progression rules engine (DERIVED_ATT_MODE, DERIVED_ATT_TYPE), the view is particularly relevant to queries that search on derived_att_mode. Callers can compare the derived attendance mode produced by rule processing against the attendance mode held on the record, which supports audit, reconciliation, and downstream reporting of student progression outcomes.
Underlying Base Objects
The documented view text references two source objects:
- IGS_PR_STDNT_PS_ATT (aliased ESPA) — the principal base table holding student course attempt, attendance, and progression data. Every column in the view derives from this table with the exception of the party number.
- HZ_PARTIES (aliased PE) — the trading community party table, joined on PERSON_ID to resolve PARTY_NUMBER. This supplies the PERSON_NUMBER column exposed as a human-readable student identifier.
The view makes no use of aggregation, DISTINCT, or set operators; it is a straightforward select-with-join. This means row counts correspond one-to-one with qualifying rows in the attempt table, and the ROW_ID column (ESPA.ROWID) can be used to map a view row back to its physical attempt record. No additional base objects are documented in the ETRM metadata, and no materialised or snapshot variants are implied.
Key Columns
- ROW_ID / PERSON_ID / PERSON_NUMBER — physical row identifier, internal person key, and the external party number of the student.
- COURSE_CD / VERSION_NUMBER / CAL_TYPE / LOCATION_CD — the course, version, calendar type, and location defining the attempt.
- ATTENDANCE_MODE / ATTENDANCE_TYPE — the attendance mode and type recorded on the attempt (for example full-time, part-time, or the institution's defined mode values).
- DERIVED_ATT_MODE / DERIVED_ATT_TYPE — the attendance mode and type calculated by the progression and rules processing, which is the focus of the derived_att_mode search. These may differ from the recorded values where rule derivation supersedes manual entry.
- COURSE_ATTEMPT_STATUS / PROGRESSION_STATUS / COURSE_RQRMNT_COMPLETE_IND — status and completion flags for the attempt.
- COMMENCEMENT_DT / DISCONTINUED_DT / LAPSED_DT / DERIVED_COMPLETION_YR / DERIVED_COMPLETION_PERD — key dates and derived completion period information.
- STUDENT_CONFIRMED_IND / PROVISIONAL_IND / ADVANCED_STANDING_IND / RULE_CHECK_IND — indicator flags governing confirmation, provisional status, advanced standing, and rule checking.
- FEE_CAT / FUNDING_SOURCE / CORRESPONDENCE_CAT — fee, funding, and correspondence categorisation.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical usage includes reporting the derived attendance mode for a student population, comparing derived against recorded attendance to detect rule-processing discrepancies, and extracting attempt data for a given course or calendar type. A representative query filtering on the derived attendance mode is:
SELECT person_number, course_cd, version_number, cal_type, attendance_mode, derived_att_mode, derived_att_type, course_attempt_status FROM igs_pr_stdnt_ps_att_v WHERE derived_att_mode = 'FT' AND logical_delete_dt IS NULL;- Reporting full-time versus part-time derived attendance by course:
SELECT course_cd, derived_att_mode, COUNT(*) FROM igs_pr_stdnt_ps_att_v GROUP BY course_cd, derived_att_mode; - Reconciling recorded and derived values:
SELECT person_number, course_cd, attendance_mode, derived_att_mode FROM igs_pr_stdnt_ps_att_v WHERE attendance_mode <> derived_att_mode; - Extracting progression status for a calendar type:
SELECT person_number, progression_status, course_rqrmnt_complete_ind FROM igs_pr_stdnt_ps_att_v WHERE cal_type = 'STD' AND provisional_ind = 'N';
Because LOGICAL_DELETE_DT is exposed, queries should generally exclude logically deleted rows unless historical records are explicitly required.
-
APPS.IGS_EN_GET_SCAEH_DTL SQL Statements
12.1.1
-
View: IGS_PR_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STDNT_PS_ATT_V, object_name:IGS_PR_STDNT_PS_ATT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_STDNT_PS_ATT_V ,
-
VIEW: APPS.IGS_AS_SCAH_EFFECTIVE_H_V
12.1.1
-
View: IGS_PR_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SCAH_EFFECTIVE_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: Used to create effective student program attempt history records in recognition of back dating commencement and discontinuation dates. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the secured rows in the student program attempt table. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT, object_name:IGS_EN_STDNT_PS_ATT, status:VALID, product: IGS - Student System , description: This view contains the data of student attempts for a given specific program structure. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT ,
-
View: IGS_AS_SC_ATTEMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H, object_name:IGS_AS_SC_ATTEMPT_H, status:VALID, product: IGS - Student System , description: This view is multi org view , implementation_dba_data: APPS.IGS_AS_SC_ATTEMPT_H ,
-
View: IGS_EN_STDNT_PS_ATT
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the data of student attempts for a given specific program structure. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_STDNT_PS_ATT_V
12.1.1
-
VIEW: APPS.IGS_AS_SCA_H_V
12.1.1
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_SV
12.1.1
-
VIEW: APPS.IGS_PR_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STDNT_PS_ATT_V, object_name:IGS_PR_STDNT_PS_ATT_V, status:VALID,
-
View: IGS_AS_SCAH_EFFECTIVE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAH_EFFECTIVE_H_V, object_name:IGS_AS_SCAH_EFFECTIVE_H_V, status:VALID, product: IGS - Student System , description: Used to create effective student program attempt history records in recognition of back dating commencement and discontinuation dates. , implementation_dba_data: APPS.IGS_AS_SCAH_EFFECTIVE_H_V ,
-
View: IGS_EN_STDNT_PS_ATT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_SV, object_name:IGS_EN_STDNT_PS_ATT_SV, status:VALID, product: IGS - Student System , description: This view contains the secured rows in the student program attempt table. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT_SV ,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT
12.1.1
-
View: IGS_AS_SC_ATTEMPT_H
12.2.2
product: IGS - Student System (Obsolete) , description: This view is multi org view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SC_ATTEMPT_H
12.1.1
-
View: IGS_AS_SCA_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCA_H_V, object_name:IGS_AS_SCA_H_V, status:VALID, product: IGS - Student System , description: This view is used to merge student course attempt history with the current student course attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time peri , implementation_dba_data: APPS.IGS_AS_SCA_H_V ,
-
View: IGS_AS_SCA_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge student course attempt history with the current student course attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time peri , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SCAH_EFFECTIVE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAH_EFFECTIVE_H_V, object_name:IGS_AS_SCAH_EFFECTIVE_H_V, status:VALID,
-
VIEW: APPS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V, object_name:IGS_FI_SCAH_EFFECTIVE_H_CAT_V, status:VALID,
-
View: IGS_FI_SCAH_EFFECTIVE_H_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V, object_name:IGS_FI_SCAH_EFFECTIVE_H_CAT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V ,
-
VIEW: APPS.IGS_AD_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_STDNT_PS_ATT_V, object_name:IGS_AD_STDNT_PS_ATT_V, status:VALID,
-
View: IGS_FI_SCAH_EFFECTIVE_H_CAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_PS_ATT_CH_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_PS_ATT_CH_OPT_V, object_name:IGS_EN_PS_ATT_CH_OPT_V, status:VALID, product: IGS - Student System , description: This view describes the change course option of an enrolled student which also takes course code, location and attempt status into consideration. , implementation_dba_data: APPS.IGS_EN_PS_ATT_CH_OPT_V ,
-
View: IGS_AD_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SC_ATTEMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H, object_name:IGS_AS_SC_ATTEMPT_H, status:VALID,
-
View: IGS_AD_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_STDNT_PS_ATT_V, object_name:IGS_AD_STDNT_PS_ATT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_STDNT_PS_ATT_V ,
-
View: IGS_EN_STDNT_PS_ATT_CRV_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes and maintains the student course version of a specific program structure. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT_CRV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_CRV_V, object_name:IGS_EN_STDNT_PS_ATT_CRV_V, status:VALID, product: IGS - Student System , description: This view describes and maintains the student course version of a specific program structure. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT_CRV_V ,
-
View: IGS_EN_PS_ATT_CH_OPT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes the change course option of an enrolled student which also takes course code, location and attempt status into consideration. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_STDNT_PS_ATT_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_STDNT_PS_ATT_CAT_V, object_name:IGS_FI_STDNT_PS_ATT_CAT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_STDNT_PS_ATT_CAT_V ,
-
View: IGS_FI_STDNT_PS_ATT_CAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SCA_V, object_name:IGS_EN_SCA_V, status:VALID,
-
View: IGS_EN_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SCA_V, object_name:IGS_EN_SCA_V, status:VALID, product: IGS - Student System , description: This view would be used in the form. , implementation_dba_data: APPS.IGS_EN_SCA_V ,
-
View: IGS_EN_SCA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view would be used in the form. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_GET_SCAEH_DTL
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB SQL Statements
12.1.1
-
APPS.IGS_AS_SC_ATTEMPT_H_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_EN_PS_ATT_CH_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_PS_ATT_CH_OPT_V, object_name:IGS_EN_PS_ATT_CH_OPT_V, status:VALID,
-
PACKAGE: APPS.IGS_EN_SPA_LGCY_PUB
12.1.1
-
TABLE: IGS.IGS_EN_LGCY_SPA_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_LGCY_SPA_INT, object_name:IGS_EN_LGCY_SPA_INT, status:VALID,
-
TABLE: IGS.IGS_EN_STDNT_PS_ATT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_ALL, object_name:IGS_EN_STDNT_PS_ATT_ALL, status:VALID,
-
VIEW: APPS.IGS_AS_SCA_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCA_H_V, object_name:IGS_AS_SCA_H_V, status:VALID,
-
TABLE: IGS.IGS_AS_SC_ATTEMPT_H_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H_ALL, object_name:IGS_AS_SC_ATTEMPT_H_ALL, status:VALID,
-
VIEW: APPS.IGS_FI_STDNT_PS_ATT_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_STDNT_PS_ATT_CAT_V, object_name:IGS_FI_STDNT_PS_ATT_CAT_V, status:VALID,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_CRV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_CRV_V, object_name:IGS_EN_STDNT_PS_ATT_CRV_V, status:VALID,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_SV, object_name:IGS_EN_STDNT_PS_ATT_SV, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_SC_ATTEMPT_H_PKG
12.1.1