Search Results progression_status
Overview
The IGS_AS_GPC_ACA_STNDG_V view belongs to the IGS (Student System) product family within Oracle E-Business Suite, a module now classified as obsolete in release 12.1.1 and 12.2.2. Functionally, the view exposes Advance Standing Information for a progression, presenting records that describe the standing awarded to a student in relation to an academic progression associated with a grading period. It acts as a reporting and integration façade over the underlying Advance Standing table, translating the stored progression status code into a human-readable description through a lookup join.
Because IGS is obsolete and the view is not implemented in the reference database, it is primarily encountered in legacy schemas, historical data migrations, and read-only reporting against archived Student System installations. Its principal role is to simplify downstream queries: consumers do not need to know the lookup type or join IGS_LOOKUPS_VIEW themselves, since the view already decodes PROGRESSION_STATUS into PROGRESSION_STATUS_DESC.
Underlying Base Objects
The view text is defined as a two-table join:
- IGS_AS_GPC_ACA_STNDG ACA — the primary Advance Standing table holding the progression and grading period data. The view selects ACA.ROWID as ROW_ID plus all business and audit columns from this table.
- IGS_LOOKUPS_VIEW LKUP — the standard lookup view, joined on
LKUP.LOOKUP_CODE = ACA.PROGRESSION_STATUSand constrained toLKUP.LOOKUP_TYPE = 'PROGRESSION_STATUS'. This provides the decoded meaning exposed as PROGRESSION_STATUS_DESC.
No base objects are documented for the 12.2.2 metadata (referenced base objects: none documented), and the object carries no documented owner. The authoritative definition therefore remains the view text itself, which confirms IGS_AS_GPC_ACA_STNDG and IGS_LOOKUPS_VIEW as the effective sources. The join is effectively an equijoin filtered by the lookup type, meaning any progression status code without a matching 'PROGRESSION_STATUS' lookup row is excluded from the result set.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_AS_GPC_ACA_STNDG row; useful for row identification in extracts.
- GPC_ACA_STNDG_ID — primary key of the advance standing record.
- GRADING_PERIOD_CD — the grading period code to which the standing applies.
- PROGRESSION_STATUS — coded status value stored on the base record.
- PROGRESSION_STATUS_DESC — decoded meaning of the status, sourced from IGS_LOOKUPS_VIEW.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard Oracle audit columns describing record creation and maintenance.
Common Use Cases and Queries
Typical usage involves extracting advance standing outcomes per grading period, validating that status codes have valid lookup definitions, or feeding progression data into integration interfaces and reports.
Sample query returning standings for a specific grading period:
SELECT GPC_ACA_STNDG_ID,
GRADING_PERIOD_CD,
PROGRESSION_STATUS,
PROGRESSION_STATUS_DESC
FROM IGS_AS_GPC_ACA_STNDG_V
WHERE GRADING_PERIOD_CD = :grading_period
ORDER BY GPC_ACA_STNDG_ID;
A second common scenario audits status distribution across grading periods, aggregating by the decoded description:
SELECT GRADING_PERIOD_CD,
PROGRESSION_STATUS_DESC,
COUNT(*) cnt
FROM IGS_AS_GPC_ACA_STNDG_V
GROUP BY GRADING_PERIOD_CD, PROGRESSION_STATUS_DESC;
Because the view enforces the lookup join internally, records with unmapped progression status codes will not appear; reconciliation queries against the base table IGS_AS_GPC_ACA_STNDG should be used where completeness is required.
-
Lookup Type: PROGRESSION_STATUS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Progression Status , description: Progression Status ,
-
Lookup Type: PROGRESSION_STATUS
12.1.1
product: IGS - Student System , meaning: Progression Status , description: Progression Status ,
-
View: IGS_AS_GPC_ACA_STNDG_V
12.2.2
product: IGS - Student System (Obsolete) , description: Advance Standing Information for a progression , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AS_GPC_ACA_STNDG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_GPC_ACA_STNDG, object_name:IGS_AS_GPC_ACA_STNDG, status:VALID,
-
VIEW: APPS.IGS_AS_GPC_ACA_STNDG_V
12.1.1
-
View: IGS_AS_GPC_ACA_STNDG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GPC_ACA_STNDG_V, object_name:IGS_AS_GPC_ACA_STNDG_V, status:VALID, product: IGS - Student System , description: Advance Standing Information for a progression , implementation_dba_data: APPS.IGS_AS_GPC_ACA_STNDG_V ,
-
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_GPC_ACA_STNDG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GPC_ACA_STNDG_V, object_name:IGS_AS_GPC_ACA_STNDG_V, status:VALID,
-
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_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
-
Table: IGS_AS_GPC_ACA_STNDG
12.2.2
product: IGS - Student System (Obsolete) , description: Stores grading period cohorts academic standing details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_STDNT_PS_ATT_V
12.1.1
-
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: 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_AS_SCA_H_V
12.1.1
-
Table: IGS_AS_GPC_ACA_STNDG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_GPC_ACA_STNDG, object_name:IGS_AS_GPC_ACA_STNDG, status:VALID, product: IGS - Student System , description: Stores grading period cohorts academic standing details , implementation_dba_data: IGS.IGS_AS_GPC_ACA_STNDG ,
-
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_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 ,
-
APPS.IGS_AS_GPC_ACA_STNDG_PKG SQL Statements
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_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: 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_AD_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , 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: 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: 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_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: 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: 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: 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: 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 ,
-
PACKAGE BODY: APPS.IGS_AS_GPC_ACA_STNDG_PKG
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.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,
-
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_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,