Search Results penalty_applied_flag
Overview
IGS_AS_ASSITEM_ADI_V is a reporting and integration view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product. Its documented description is "Assessment Item WebADI View," indicating that it exists primarily to support the WebADI (Web Applications Desktop Integrator) mechanism for uploading and validating assessment item data into the student system. WebADI views in ETRM typically expose a flattened, human-readable projection of the underlying normalized tables so that spreadsheet-based data entry can be mapped to the correct columns without requiring users to navigate complex relational structures.
The view joins student assessment data with party (person) information, unit offering options, assessment definitions, and unit version details, producing one row per assessment outcome per student per unit attempt. Because it is a view rather than a table, it carries no storage of its own; it is a query layer over several base objects in the IGS and HZ schemas. Within Oracle EBS 12.1.1 and 12.2.2, views of this type are commonly used for both inbound WebADI uploads and outbound reporting extracts against assessment, marking, and penalty data.
The search term "penalty_applied_flag" corresponds directly to the PENALTY_APPLIED_FLAG column exposed by this view, which is sourced from the IGS_AS_SU_ATMPT_ITM table. Users searching this flag are typically investigating whether a late-submission or other penalty has been applied to a specific assessment outcome.
Underlying Base Objects
The view is defined over the following documented base objects:
- HZ_PARTIES — provides PERSON_LAST_NAME, PERSON_FIRST_NAME, PERSON_MIDDLE_NAME, PARTY_NUMBER, and PARTY_ID, joined to the assessment attempt on PARTY_ID = PERSON_ID.
- IGS_EN_SU_ATTEMPT_SV — the student unit attempt record, supplying location and unit offering option context.
- IGS_AS_SU_ATMPT_ITM — the assessment attempt item, which is the primary source of outcome data including MARK, GRADE, OUTCOME_DT, PENALTY_APPLIED_FLAG, WAIVED_FLAG, OVERRIDE_DUE_DT, and SUBMITTED_DATE.
- IGS_PS_UNIT_OFR_OPT_ALL — the unit offering option, supplying LOCATION_CD, UOO_ID, and UNIT_CLASS.
- IGS_AS_ASSESSMNT_ITM_ALL — the assessment item definition, supplying ASSESSMENT_TYPE.
- IGS_PS_UNIT_VER_ALL — the unit version, supplying TITLE.
The view also references IGS_AS_UNITASS_ITEM_ALL, IGS_PS_UNITASS_ITEM, and the package function IGS_AS_ANON_GRD_PKG.CHK_ANON_GRADED, plus the lookup function IGS_GE_GEN_004.GENP_GET_LOOKUP, to derive REFERENCE, DUE_DT, anonymised grading status, and comment text. The join is driven by PERSON_ID and UNIT_CD across the party, attempt, and unit version records.
Key Columns
The principal columns exposed by the view include:
- PENALTY_APPLIED_FLAG — indicates whether a penalty has been applied to the assessment outcome.
- PARTY_NAME, PARTY_NUMBER, PERSON_ID — identify the student.
- MARK, GRADE, OUTCOME_DT, GRADING_SCHEMA_CD, GS_VERSION_NUMBER — describe the assessment result.
- ASSESSMENT_ID, ASSESSMENT_TYPE, REFERENCE, DUE_DT, OVERRIDE_DUE_DT, SUBMITTED_DATE — describe the assessment item and submission timing.
- WAIVED_FLAG — indicates whether the assessment requirement was waived.
- COURSE_CD, UNIT_CD, TITLE, CAL_TYPE, CI_SEQUENCE_NUMBER, UNIT_CLASS, LOCATION_CD, UOO_ID — provide academic context.
- CHK_ANON_GRADED, ANONYMOUS_ID — support anonymised grading workflows.
- COMMENTS — decoded lookup text for the outcome comment code.
Common Use Cases and Queries
A frequent requirement is to list assessment outcomes where a penalty has been recorded, for example to reconcile marking or to audit late submissions.
SELECT PERSON_ID, UNIT_CD, ASSESSMENT_ID, MARK, GRADE, PENALTY_APPLIED_FLAG FROM APPS.IGS_AS_ASSITEM_ADI_V WHERE PENALTY_APPLIED_FLAG = 'Y';
Another common scenario is a WebADI extract for a specific unit and calendar type, filtering only submissions with recorded penalty or waiver activity.
SELECT PARTY_NUMBER, PARTY_NAME, UNIT_CD, ASSESSMENT_ID,
SUBMITTED_DATE, DUE_DT, WAIVED_FLAG, PENALTY_APPLIED_FLAG
FROM APPS.IGS_AS_ASSITEM_ADI_V
WHERE UNIT_CD = :unit_cd
AND CAL_TYPE = :cal_type;
The view can also be used to review outstanding or overridden due dates alongside penalty status, supporting student enquiry and results processing. Because the view performs functional lookups and nested subqueries, queries should be constrained by UNIT_CD, CAL_TYPE, or PERSON_ID where possible to avoid full scans during reporting.
-
View: IGS_AS_ASSITEM_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ASSITEM_ADI_V, object_name:IGS_AS_ASSITEM_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Item WebADI View , implementation_dba_data: APPS.IGS_AS_ASSITEM_ADI_V ,
-
View: IGS_AS_ASSITEM_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Assessment Item WebADI View , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_ASSITEM_ADI_V
12.1.1
-
VIEW: APPS.IGS_AS_ASSITEM_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_ASSITEM_ADI_V, object_name:IGS_AS_ASSITEM_ADI_V, status:VALID,
-
TABLE: IGS.IGS_AS_AIO_INTERFACE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_AIO_INTERFACE, object_name:IGS_AS_AIO_INTERFACE, status:VALID,
-
View: IGSBV_AS_SU_ATMPT_AST_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_SU_ATMPT_AST_ITEMS, object_name:IGSBV_AS_SU_ATMPT_AST_ITEMS, status:VALID, product: IGS - Student System , description: Describes assessment item allocated to student unit attempt, either manually or by unit's default assessment items. , implementation_dba_data: APPS.IGSBV_AS_SU_ATMPT_AST_ITEMS ,
-
View: IGS_AS_SUAAI_OUTHIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAAI_OUTHIST_V, object_name:IGS_AS_SUAAI_OUTHIST_V, status:VALID, product: IGS - Student System , description: This is history view to for tracking the student assessment items outcomes. , implementation_dba_data: APPS.IGS_AS_SUAAI_OUTHIST_V ,
-
View: IGSBV_AS_SU_ATMPT_AST_ITEMS
12.2.2
product: IGS - Student System (Obsolete) , description: Describes assessment item allocated to student unit attempt, either manually or by unit's default assessment items. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUAAI_OUTHIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This is history view to for tracking the student assessment items outcomes. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SUAAI_OUTHIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAAI_OUTHIST_V, object_name:IGS_AS_SUAAI_OUTHIST_V, status:VALID,
-
TABLE: IGS.IGS_AS_SUAAI_OUHIST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SUAAI_OUHIST, object_name:IGS_AS_SUAAI_OUHIST, status:VALID,
-
View: IGS_AS_SUAAI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAAI_V, object_name:IGS_AS_SUAAI_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AS_SUAAI_V ,
-
View: IGS_AS_SUAAI_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_AS_SU_ATMPT_AST_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_SU_ATMPT_AST_ITEMS, object_name:IGSBV_AS_SU_ATMPT_AST_ITEMS, status:VALID,
-
APPS.IGS_AS_SUAAI_OUHIST_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_AS_SU_ATMPT_ITM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SU_ATMPT_ITM, object_name:IGS_AS_SU_ATMPT_ITM, status:VALID,
-
VIEW: APPS.IGS_AS_SUAAI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAAI_V, object_name:IGS_AS_SUAAI_V, status:VALID,
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG SQL Statements
12.1.1
-
APPS.IGS_AS_ADI_UPLD_AIO_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SUAAI_OUHIST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SU_ATMPT_ITM_PKG
12.1.1
-
APPS.IGS_AS_ADI_UPLD_AIO_PKG dependencies on IGS_AS_AIO_INTERFACE
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_AIO_PKG
12.1.1
-
APPS.IGS_AS_SUAAI_OUHIST_PKG dependencies on IGS_AS_SUAAI_OUHIST
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_AS_SU_ATMPT_ITM
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on FND_MESSAGE
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'. ,