Search Results primary_prog_type_source
Overview
The IGS_EN_STDNT_PS_ATT_SV view is a secured database view owned by the APPS schema within the IGS (Student System) product family in Oracle E-Business Suite. Its documented purpose is to expose the secured rows of the student program attempt table, filtering the underlying data so that only records permitted by the institution's security model are visible to the querying user. This security layer is a common pattern in the Student System, where row-level access to applicant and student data must be constrained by organizational and functional privileges.
Because it restricts rows at the database tier rather than in the application tier, the view is the preferred object for reporting, integration, and downstream extracts. It returns the same logical attributes as the base table while inheriting the security predicate defined by the product, which ensures consistency between the application forms and any external consumers of the data. In EBS 12.1.1 and 12.2.2 the view is registered in ETRM with STATUS = VALID, indicating the compiled definition matches the current database state.
Underlying Base Objects
The view text selects from a single base object, IGS_EN_STDNT_PS_ATT_ALL, which is the multi-organization table storing student program attempt records. Each attempt represents a student's enrollment in a program version for a specific calendar instance, tracking confirmation, status, progression, and completion attributes.
ETRM documents no additional referenced objects for this view. Operationally, however, the security filter that distinguishes the _SV view from unrestricted access relies on the Student System security framework, typically realized through security functions and organization (ORG_ID) predicates applied when the view is accessed through the standard APIs. The view therefore functions as the read-only, guarded projection of the base table, retaining the ROWID as ROW_ID to allow row identification.
Key Columns
- ROW_ID — the ROWID of the base row, used for direct row identification.
- ORG_ID — the operating unit / organization owning the attempt, central to multi-org and security filtering.
- PERSON_ID — the student or applicant party identifier.
- COURSE_CD, VERSION_NUMBER — the program (course) code and version attempt under way.
- CAL_TYPE, LOCATION_CD, ATTENDANCE_MODE, ATTENDANCE_TYPE — calendar, delivery location, and attendance classification.
- COURSE_ATTEMPT_STATUS, PROGRESSION_STATUS — the attempt's overall status and the student's progression outcome.
- COMMENCEMENT_DT, DISCONTINUED_DT, LAPSED_DT, LAST_DATE_OF_ATTENDANCE — key dates for lifecycle tracking.
- DISCONTINUATION_REASON_CD, DROPPED_BY — reason and actor for withdrawal.
- PROVISIONAL_IND, ADVANCED_STANDING_IND, STUDENT_CONFIRMED_IND — indicator flags governing confirmations and standing.
- KEY_PROGRAM, PRIMARY_PROGRAM_TYPE — identifies the primary or key program for the student.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–20 — descriptor flexfield columns for institution-specific data.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — audit columns.
Common Use Cases and Queries
Typical uses include extracting confirmed student attempts for a given organization, reporting progression and discontinuation trends, and feeding downstream student-record or funding interfaces. The following query lists active program attempts for an organization, ordered by commencement:
SELECT person_id, course_cd, version_number, cal_type,
course_attempt_status, progression_status, commencement_dt
FROM igs_en_stdnt_ps_att_sv
WHERE org_id = :p_org_id
AND student_confirmed_ind = 'Y'
AND logical_delete_dt IS NULL
ORDER BY commencement_dt;
To reconcile secured rows against the base table, compare counts by organization:
SELECT a.org_id, COUNT(*) base_rows, COUNT(s.row_id) secured_rows
FROM igs_en_stdnt_ps_att_all a,
igs_en_stdnt_ps_att_sv s
WHERE a.rowid = s.row_id (+)
GROUP BY a.org_id;
Because the view enforces accessibility, it should be preferred over direct queries against the base table in reports and integrations, ensuring that consumers see only the records their responsibility permits.
-
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: APPS.IGS_EN_STDNT_PS_ATT_SV
12.1.1
-
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: 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: 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: APPS.IGS_AS_SCA_H_V
12.1.1
-
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_EN_STDNT_PS_ATT
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: 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_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: IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSBV_STUDENT_PROGRAM_ATTEMPTS, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: APPS.IGSBV_STUDENT_PROGRAM_ATTEMPTS ,
-
View: IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSFV_STUDENT_PROGRAM_ATTEMPTS, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: APPS.IGSFV_STUDENT_PROGRAM_ATTEMPTS ,
-
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: IGSFV_STUDENT_PROGRAM_ATTEMPTS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a student's attempt at studying a particular course offered by the university. , 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 ,
-
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 ,
-
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.IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSBV_STUDENT_PROGRAM_ATTEMPTS, status:VALID,
-
PACKAGE: APPS.IGS_EN_SPA_LGCY_PUB
12.1.1
-
VIEW: APPS.IGSFV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSFV_STUDENT_PROGRAM_ATTEMPTS, status:VALID,
-
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_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,
-
VIEW: APPS.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,
-
APPS.IGS_EN_STDNT_PS_ATT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SC_ATTEMPT_H_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SPA_LGCY_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_STDNT_PS_ATT_PKG
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB dependencies on IGS_EN_LGCY_SPA_INT
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB dependencies on IGS_PR_CLASS_STD
12.1.1
-
APPS.IGS_EN_GEN_009 dependencies on IGS_EN_SU_ATTEMPT
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB dependencies on IGS_EN_STDNT_PS_ATT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AU_GEN_003
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_EN_STDNT_PS_ATT_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_009
12.1.1
-
APPS.IGS_EN_STDNT_PS_ATT_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_EN_STDNT_PS_ATT_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB dependencies on FND_MSG_PUB
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'. ,