Search Results igs_en_stdnt_ps_att_sv
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.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_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_PE_PRG_CTXT_V
12.1.1
-
VIEW: APPS.IGS_EN_SPAA_V
12.1.1
-
VIEW: APPS.IGS_AD_PS_APPL_INST_CDT_CTXT_V
12.1.1
-
VIEW: APPS.IGS_PR_STDNT_PR_OU_V
12.1.1
-
VIEW: APPS.IGS_EN_PS_ATT_CH_OPT_V
12.1.1
-
VIEW: APPS.IGS_PR_STD_PRG_AWD_AIM_V
12.1.1
-
View: IGS_AD_PS_APPL_INST_CDT_CTXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_CDT_CTXT_V, object_name:IGS_AD_PS_APPL_INST_CDT_CTXT_V, status:VALID, product: IGS - Student System , description: This will display the context of a research candidature. If the candidature is only linked to an applicant, then it will display Admission Application Instance details, otherwise the candidature must be linked to a student course attempt, a , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_CDT_CTXT_V ,
-
View: IGS_AD_PS_APPL_INST_CDT_CTXT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This will display the context of a research candidature. If the candidature is only linked to an applicant, then it will display Admission Application Instance details, otherwise the candidature must be linked to a student course attempt, a , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_SPAA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPAA_V, object_name:IGS_EN_SPAA_V, status:VALID, product: IGS - Student System , description: View for student program attempt award. , implementation_dba_data: APPS.IGS_EN_SPAA_V ,
-
VIEW: APPS.IGS_PR_STDNT_PS_ATT_V
12.1.1
-
View: IGS_PR_STDNT_PR_OU_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STDNT_PR_OU_V, object_name:IGS_PR_STDNT_PR_OU_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_STDNT_PR_OU_V ,
-
View: IGS_PR_STDNT_PR_OU_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SCA_V
12.1.1
-
View: IGS_EN_SPAA_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for student program attempt award. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_PE_PRG_CTXT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view holds the details of the program context information of a specific student. The information this view holds appears on each form where program units are described. This information is displayed as a context block. , 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_PR_STD_PRG_AWD_AIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STD_PRG_AWD_AIM_V, object_name:IGS_PR_STD_PRG_AWD_AIM_V, status:VALID, product: IGS - Student System , description: This view stores the information about maintenance of a student's targeted awards for each student program attempt, including start/end dates and completion flag. , implementation_dba_data: APPS.IGS_PR_STD_PRG_AWD_AIM_V ,
-
View: IGS_PR_STD_PRG_AWD_AIM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores the information about maintenance of a student's targeted awards for each student program attempt, including start/end dates and completion flag. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_PE_PRG_CTXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_PE_PRG_CTXT_V, object_name:IGS_EN_PE_PRG_CTXT_V, status:VALID, product: IGS - Student System , description: This view holds the details of the program context information of a specific student. The information this view holds appears on each form where program units are described. This information is displayed as a context block. , implementation_dba_data: APPS.IGS_EN_PE_PRG_CTXT_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_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: IGS_PR_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_STDNT_PR_OU_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STDNT_PR_OU_V, object_name:IGS_PR_STDNT_PR_OU_V, status:VALID,
-
VIEW: APPS.IGS_EN_SPAA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPAA_V, object_name:IGS_EN_SPAA_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: 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: APPS.IGS_AS_PROGUGAI_ADI_V
12.1.1
-
VIEW: APPS.IGS_AS_PROGUGAI_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_PROGUGAI_ADI_V, object_name:IGS_AS_PROGUGAI_ADI_V, status:VALID,
-
VIEW: APPS.IGS_PR_STD_PRG_AWD_AIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STD_PRG_AWD_AIM_V, object_name:IGS_PR_STD_PRG_AWD_AIM_V, status:VALID,
-
SYNONYM: APPS.IGS_EN_STDNT_PS_ATT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_STDNT_PS_ATT_ALL, status:VALID,
-
View: IGS_AS_PROGUGAI_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Assessment Progression/UnitGrade/AssessmentItem WebADI View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_PROGUGAI_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_PROGUGAI_ADI_V, object_name:IGS_AS_PROGUGAI_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Progression/UnitGrade/AssessmentItem WebADI View , implementation_dba_data: APPS.IGS_AS_PROGUGAI_ADI_V ,
-
VIEW: APPS.IGS_AD_PS_APPL_INST_CDT_CTXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_CDT_CTXT_V, object_name:IGS_AD_PS_APPL_INST_CDT_CTXT_V, status:VALID,
-
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: APPS.IGS_EN_PE_PRG_CTXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_PE_PRG_CTXT_V, object_name:IGS_EN_PE_PRG_CTXT_V, status:VALID,
-
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,
-
12.1.1 DBA Data
12.1.1
-
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,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_SS_EN_WRAPPERS dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_SS_EN_WRAPPERS dependencies on IGS_SC_GEN_001
12.1.1
-
PACKAGE BODY: APPS.IGS_SS_EN_WRAPPERS
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'. ,
-
12.1.1 DBA Data
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'. ,