Search Results govt_attendance_mode
Overview
IGS_EN_ATD_MODE is a secured (organization-striped) view belonging to the Oracle Student System / Student Records schema (IGS) and exposed through the APPS synonyms layer. In Oracle EBS 12.1.1 and 12.2.2, it presents the list of attendance modes used in enrollment processing — the coded values that describe how a student attends a course, such as full-time, part-time, evening, distance, or block mode. The view is the reporting and integration–facing projection of the attendance mode setup; the underlying _ALL object is the multi-organization table that holds the definition rows, while the view applies a row-level security predicate so each operating unit or organization only sees the attendance mode rows relevant to it.
The column name GOVT_ATTENDANCE_MODE is directly relevant to the user search term "govt_attendance_mode". This column carries the reporting code that must be reported to a government or statutory body (for example, a funding council or education ministry return). It allows an institution to maintain an internal attendance mode for operational use while mapping it to a standardized government attendance classification used in regulatory extracts.
Underlying Base Objects
The view is defined over a single base object, IGS_EN_ATD_MODE_ALL, which is the multi-organization ("_ALL") table storing attendance mode definitions. The view text selects the relevant columns and appends the ROWID, exposed as ROW_ID, so the view can be treated as an updatable entity by Oracle Forms and other tooling.
The defining predicate is the standard Oracle multi-org security clause. It resolves the current organization from the session context (USERENV('CLIENT_INFO')), converts that value to a number, and compares it against ORG_ID on the base table, using NVL(...,-99) to handle rows with a null organization. As a result, the view is not a naive projection: it filters the underlying table dynamically based on the environment that the querying session operates in. Queries against this view therefore return only the attendance mode rows visible to the caller's organization context.
Key Columns
- ROW_ID — the ROWID of the underlying row, used as a surrogate identifier, particularly by Oracle Forms.
- ATTENDANCE_MODE — the primary business key or code identifying the attendance mode.
- DESCRIPTION — the descriptive name or label for the attendance mode.
- GOVT_ATTENDANCE_MODE — the government or statutory attendance mode code, matched by the user's search term. Used in regulatory and funding returns.
- CLOSED_IND — indicates whether the attendance mode is closed to new use (typically Y/N).
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS audit columns.
- ORG_ID — the organization (operating unit) owning the row, and the basis for the view's security filter.
Common Use Cases and Queries
The view is typically used to validate, report, and integrate attendance mode data: joining it to enrollment records for internal analytics; driving validation in an inbound interface; populating government returns by selecting GOVT_ATTENDANCE_MODE; and de-duplicating internal codes against statutory codes.
The simplest usage lists the available modes:
SELECT attendance_mode, description, govt_attendance_mode FROM apps.igs_en_atd_mode WHERE NVL(closed_ind,'N') = 'N' ORDER BY attendance_mode;
To report the government mapping for regulatory extracts:
SELECT attendance_mode, govt_attendance_mode, org_id FROM apps.igs_en_atd_mode WHERE govt_attendance_mode IS NOT NULL;
Because multi-org filtering is embedded in the view, no additional ORG_ID predicate is normally required in reports run within a correctly initialized session; teams that must add one should use apps.fnd_profile.value('ORG_ID') rather than hard-coding a value. Any query should reference the application synonym (APPS.IGS_EN_ATD_MODE) rather than the IGS base object, so that the security predicate and organization defaults maintained by Oracle are honored.
-
VIEW: APPS.IGS_EN_ATD_MODE
12.1.1
-
VIEW: APPS.IGSBV_PROGRAM_ATTENDANCE_MODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROGRAM_ATTENDANCE_MODES, object_name:IGSBV_PROGRAM_ATTENDANCE_MODES, status:VALID,
-
View: IGS_EN_ATD_MODE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ATD_MODE, object_name:IGS_EN_ATD_MODE, status:VALID, product: IGS - Student System , description: This view incorporates various university defined attendance modes like Internal, External and Multimodal. These modes are used for enrolment process. , implementation_dba_data: APPS.IGS_EN_ATD_MODE ,
-
TABLE: IGS.IGS_PS_GOVT_ATD_MODE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_GOVT_ATD_MODE, object_name:IGS_PS_GOVT_ATD_MODE, status:VALID,
-
View: IGS_EN_ATD_MODE
12.2.2
product: IGS - Student System (Obsolete) , description: This view incorporates various university defined attendance modes like Internal, External and Multimodal. These modes are used for enrolment process. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_EN_ATD_MODE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ATD_MODE_ALL, object_name:IGS_EN_ATD_MODE_ALL, status:VALID,
-
APPS.IGS_PS_GOVT_ATD_MODE_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSFV_PROGRAM_ATTENDANCE_MODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROGRAM_ATTENDANCE_MODES, object_name:IGSFV_PROGRAM_ATTENDANCE_MODES, status:VALID,
-
Table: IGS_PS_GOVT_ATD_MODE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_GOVT_ATD_MODE, object_name:IGS_PS_GOVT_ATD_MODE, status:VALID, product: IGS - Student System , description: This entity describes the DETYA set of attendance modes. E.g. 1 - Internal, 2 - External. , implementation_dba_data: IGS.IGS_PS_GOVT_ATD_MODE ,
-
Table: IGS_PS_GOVT_ATD_MODE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the DETYA set of attendance modes. E.g. 1 - Internal, 2 - External. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_VAL_GAM SQL Statements
12.1.1
-
View: IGSBV_PROGRAM_ATTENDANCE_MODES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes available university program attendance modes. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_ATD_MODE_PKG SQL Statements
12.1.1
-
View: IGSFV_PROGRAM_ATTENDANCE_MODES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes available university program attendance modes. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROGRAM_ATTENDANCE_MODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROGRAM_ATTENDANCE_MODES, object_name:IGSFV_PROGRAM_ATTENDANCE_MODES, status:VALID, product: IGS - Student System , description: This is a full view, which describes available university program attendance modes. , implementation_dba_data: APPS.IGSFV_PROGRAM_ATTENDANCE_MODES ,
-
View: IGSBV_PROGRAM_ATTENDANCE_MODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROGRAM_ATTENDANCE_MODES, object_name:IGSBV_PROGRAM_ATTENDANCE_MODES, status:VALID, product: IGS - Student System , description: This is a base view, which describes available university program attendance modes. , implementation_dba_data: APPS.IGSBV_PROGRAM_ATTENDANCE_MODES ,
-
PACKAGE BODY: APPS.IGS_PS_GOVT_ATD_MODE_PKG
12.1.1
-
VIEW: APPS.IGS_EN_ATD_MODE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ATD_MODE, object_name:IGS_EN_ATD_MODE, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ATD_MODE_PKG
12.1.1
-
APPS.IGS_PS_VAL_AM SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VAL_GAM
12.1.1
-
TABLE: IGS.IGS_EN_ST_SNAPSHOT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ST_SNAPSHOT, object_name:IGS_EN_ST_SNAPSHOT, status:VALID,
-
APPS.IGS_EN_ST_SNAPSHOT_PKG SQL Statements
12.1.1
-
APPS.IGS_ST_GOVT_STDNT_EN_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_ST_GOVT_STDNT_EN
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GOVT_STDNT_EN, object_name:IGS_ST_GOVT_STDNT_EN, status:VALID,
-
APPS.IGS_ST_GEN_001 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VAL_AM
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_ST_SNAPSHOT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_ST_GOVT_STDNT_EN_PKG
12.1.1
-
APPS.IGS_EN_VAL_SUA SQL Statements
12.1.1
-
APPS.IGS_EN_VAL_SUA dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_ST_GEN_001 dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_EN_ATD_MODE_PKG dependencies on IGS_EN_ATD_MODE_ALL
12.1.1
-
APPS.IGS_PS_GOVT_ATD_MODE_PKG dependencies on IGS_PS_GOVT_ATD_MODE
12.1.1
-
APPS.IGS_EN_VAL_SUA dependencies on IGS_AS_UNIT_MODE
12.1.1
-
APPS.IGS_PS_VAL_AM dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_PS_VAL_GAM dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_PS_VAL_AM dependencies on IGS_PS_GOVT_ATD_MODE
12.1.1
-
APPS.IGS_ST_GEN_004 SQL Statements
12.1.1
-
APPS.IGS_PS_GOVT_ATD_MODE_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
PACKAGE BODY: APPS.IGS_ST_GEN_001
12.1.1
-
APPS.IGS_PS_GOVT_ATD_MODE_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_PS_GOVT_ATD_MODE_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_EN_ATD_MODE_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_EN_ATD_MODE_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_EN_ATD_MODE_PKG dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGS_ST_GEN_004
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_VAL_SUA
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'. ,