Search Results igs_as_entry_conf
Overview
IGS_AS_ENTRY_CONF is a configuration table in the Oracle E-Business Suite Student System (IGS) product family, owned by the IGS schema. Its documented description states that it "stores seed data for entry configuration of marks and grades." In practical terms, the table functions as a control repository that governs how marks and grades are captured, derived, validated, and uploaded within the assessment and grading components of Oracle Student System. Each row represents a discrete configuration record identified by a control number, and the flag columns within that row determine the behavior of grade entry forms, self-service submission screens, and batch upload processes.
The ETRM metadata classifies this object as standalone under the heuristic Data Vault classification derived from foreign key mining. No inbound or outbound foreign key relationships were documented, and the only declared constraints are the primary key IGS_AS_ENTRY_CONF_PK and the unique index IGS_AS_ENTRY_CONF_U1, both defined on S_CONTROL_NUM. As a modeling suggestion, this object is therefore best treated as a reference or hub-style entity rather than a transactional satellite, since it holds relatively static configuration data consumed by application logic rather than capturing event history.
Key Information Stored
The table contains 34 documented physical columns in the 12.1.1 schema. The most significant of these are listed below.
- S_CONTROL_NUM — The surrogate primary key and simultaneously the business-key candidate, enforced by both IGS_AS_ENTRY_CONF_PK and the unique index IGS_AS_ENTRY_CONF_U1. It identifies each configuration row.
- KEY_ALLOW_INVALID_IND — Controls whether invalid grades may be entered during keyed (online) entry.
- KEY_COLLECT_MARK_IND — Determines whether marks are collected alongside grades during keyed entry.
- KEY_GRADE_DERIVE_IND — Governs whether grades are automatically derived from marks.
- KEY_MARK_MNDTRY_IND — Indicates whether a mark is mandatory for keyed grade entry.
- KEY_CHECK_DIGIT_IND — Controls check-digit validation behavior.
- KEY_OVERWRITE_ALLOWED_IND — Specifies whether existing entries may be overwritten.
- KEY_SS_GRADE_MNDTRY_IND and KEY_ADM_GRADE_MNDTRY_IND — Define mandatory-grade rules for self-service and administrative entry contexts respectively.
- KEY_MARK_ENTRY_DEC_POINTS — Sets the decimal precision applied to mark entry.
- KEY_PRTL_SBMN_ALLOWED_IND — Controls whether partial submission of grades is permitted.
- UPLD_PERSON_NO_EXIST, UPLD_CRS_NOT_ENROLLED, UPLD_UNIT_NOT_ENROLLED, UPLD_UNIT_DISCONT — Define validation responses for upload scenarios involving missing persons, unenrolled courses or units, and discontinued units.
- UPLD_GRADE_EXISTS, UPLD_GRADE_INVALID, UPLD_MARK_GRADE_INVALID — Specify handling for duplicate, invalid, or inconsistent grades during upload.
- UPLD_UG_SBMTD_GRADE_EXIST and UPLD_UG_SAVED_GRADE_EXIST — Address conflict scenarios with previously submitted or saved grades.
- UPLD_ASMNT_ITEM_NOT_EXIST and UPLD_ASMNT_ITEM_GRD_EXIST — Control behavior when assessment items or their grades are missing or duplicated.
- KEY_AI_* columns (KEY_AI_COLLECT_MARK_FLAG, KEY_AI_MARK_MNDTRY_FLAG, KEY_AI_GRADE_DERIVE_FLAG, KEY_AI_ALLOW_INVALID_FLAG, KEY_AI_MARK_ENTRY_DEC_POINTS) — Mirror the keyed-entry flags for assessment item contexts, and KEY_DERIVE_UNIT_GRADE_FLAG and KEY_ALLOW_INST_FINALIZE_FLAG govern unit-grade derivation and institutional finalization.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS audit columns recording row creation and modification.
Common Use Cases and Queries
Because the table holds configuration rather than transactional data, it is most often queried directly during implementation, troubleshooting, or setup validation. Administrators use it to confirm which entry behaviors are enabled before go-live, and support analysts inspect it when grade entry or upload processes behave unexpectedly.
A typical inspection query retrieves all flags for a given control number:
SELECT S_CONTROL_NUM, KEY_ALLOW_INVALID_IND, KEY_COLLECT_MARK_IND, KEY_GRADE_DERIVE_IND, KEY_MARK_MNDTRY_IND, KEY_MARK_ENTRY_DEC_POINTS, KEY_PRTL_SBMN_ALLOWED_IND FROM IGS.IGS_AS_ENTRY_CONF WHERE S_CONTROL_NUM = :control_num;
Reporting scenarios include auditing which configurations permit invalid grade entry, verifying that upload validation flags align with institutional policy, and comparing assessment-item flags (KEY_AI_*) against their keyed-entry counterparts to detect inconsistent setups. Change-tracking queries against LAST_UPDATED_BY and LAST_UPDATE_DATE help identify recently modified configurations.
Related Objects
The ETRM metadata documents no foreign key relationships for this table; the heuristic Data Vault classification is standalone, meaning no parent or child tables are joined through declared constraints. Consequently, related objects must be inferred from functional context within the IGS Student System rather than from FK data. The primary key and unique index IGS_AS_ENTRY_CONF_U1 both reference S_CONTROL_NUM, which is the natural join column if other tables in the assessment schema carry a matching control-number column. Consumer objects in practice are the grade entry forms, self-service grade submission pages, and the mark and grade upload processes of Oracle Student System, which read these flags at runtime to determine validation and derivation behavior. Where a join is required, it should be constructed on S_CONTROL_NUM rather than on an assumed foreign key, and any integration should be validated against the specific implementation's configuration before deployment.
-
Table: IGS_AS_ENTRY_CONF
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_ENTRY_CONF, object_name:IGS_AS_ENTRY_CONF, status:VALID, product: IGS - Student System , description: Stores seed data for entry configuration of marks and grades , implementation_dba_data: IGS.IGS_AS_ENTRY_CONF ,
-
Table: IGS_AS_ENTRY_CONF
12.2.2
product: IGS - Student System (Obsolete) , description: Stores seed data for entry configuration of marks and grades , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AS_ADI_UPLD_AIO_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_AS_ENTRY_CONF
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AS_ENTRY_CONF, status:VALID,
-
APPS.IGS_AS_ENTRY_CONF_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AS_UG_ADI_V
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_DERIVE_GRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_DERIVE_GRADE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_ENTRY_CONF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_ENTRY_CONF_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_UG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_ADI_UPLD_UG_PKG, status:VALID,
-
View: IGS_AS_UG_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Assessment Unit Grading WebADI View , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AS_FINALIZE_GRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_FINALIZE_GRADE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_PR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_ADI_UPLD_PR_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_AIO_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_ADI_UPLD_AIO_PKG, status:VALID,
-
View: IGS_AS_UG_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UG_ADI_V, object_name:IGS_AS_UG_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Unit Grading WebADI View , implementation_dba_data: APPS.IGS_AS_UG_ADI_V ,
-
PACKAGE BODY: APPS.IGS_AS_ENTRY_CONF_PKG
12.1.1
-
TABLE: IGS.IGS_AS_ENTRY_CONF
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_ENTRY_CONF, object_name:IGS_AS_ENTRY_CONF, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_AIO_PKG
12.1.1
-
VIEW: APPS.IGS_AS_UG_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UG_ADI_V, object_name:IGS_AS_UG_ADI_V, status:VALID,
-
APPS.IGS_AS_DERIVE_GRADE SQL Statements
12.1.1
-
APPS.IGS_AS_ADI_UPLD_UG_PKG SQL Statements
12.1.1
-
APPS.IGS_AS_FINALIZE_GRADE dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_DERIVE_GRADE dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_ENTRY_CONF_PKG dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_ADI_UPLD_PR_PKG SQL Statements
12.1.1
-
APPS.IGS_AS_ADI_UPLD_UG_PKG dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_ADI_UPLD_AIO_PKG dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_ADI_UPLD_PR_PKG dependencies on IGS_AS_ENTRY_CONF
12.1.1
-
APPS.IGS_AS_FINALIZE_GRADE SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_AS_ENTRY_CONF_PKG dependencies on IGS_AS_ENTRY_CONF_PKG
12.1.1
-
APPS.IGS_AS_FINALIZE_GRADE dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_AS_FINALIZE_GRADE dependencies on IGS_AS_GRD_SCHEMA
12.1.1
-
APPS.IGS_AS_FINALIZE_GRADE dependencies on IGS_EN_SU_ATTEMPT
12.1.1
-
APPS.IGS_AS_FINALIZE_GRADE dependencies on IGS_PS_UNIT_OFR_OPT
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_UG_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_FINALIZE_GRADE
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_ADI_UPLD_PR_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_DERIVE_GRADE
12.1.1
-
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'. ,
-
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'. ,