Search Results igs_en_atd_mode
Overview
IGS_EN_ATD_MODE is an Oracle E-Business Suite view owned by the APPS schema and reported as VALID under the IGS (Student System) product family. Its documented purpose is to expose university-defined attendance modes — such as Internal, External and Multimodal — that drive the enrolment process within the Student System. In practice it is a reporting and integration-friendly projection over the underlying attendance mode data, presenting a single row per attendance mode together with the descriptive and administrative attributes that a student records implementation requires.
Most technical references to this object appear in reporting contexts such as Oracle Reports, BI Publisher, Discoverer and downstream extracts where attendance mode codes must be resolved to descriptions. This is corroborated by the fact that the view follows the standard EBS "reporting view over an _ALL table" pattern: the column list mirrors the base table exactly, with ROW_ID added as a ROWID alias, and the only behavioural change is the enforcement of organization-level (multi-org) security via the ORG_ID predicate. Because the caller never sees rows outside its own operating unit context, the view is a natural choice for data extracts and interfaces that must respect EBS multi-org isolation.
Underlying Base Objects
The view text defines IGS_EN_ATD_MODE as a single-table view over IGS_EN_ATD_MODE_ALL. No other base objects are documented in the ETRM metadata, and the view text confirms there are no joins, unions or aggregations — all columns are selected directly from the base table, with only ROW_ID derived from the physical ROWID of IGS_EN_ATD_MODE_ALL.
- Base table:
IGS_EN_ATD_MODE_ALL(the "all organizations" repository of attendance modes). - Filter:
NVL(ORG_ID, NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'), 1, 1), ' ', NULL, SUBSTRB(USERENV('CLIENT_INFO'), 1, 10))), -99)) =the same expression — the classic multi-org_ALLpredicate pattern used throughout EBS 11i, 12.1.1 and 12.2.2. - Multi-org mechanism: the predicate extracts the operating unit identifier from the
CLIENT_INFOsession context (set byFND_CLIENT_INFO), so the view returns seeded/global rows (whereORG_IDis null, normalized to-99) as well as rows belonging to the caller's operating unit.
Because the view is defined over an _ALL table, no base object other than IGS_EN_ATD_MODE_ALL is exposed or required.
Key Columns
ROW_ID— the database ROWID of the underlying row inIGS_EN_ATD_MODE_ALL; useful for uniquely identifying or subsequently updating a row.ATTENDANCE_MODE— the coded identifier of the attendance mode (for example Internal, External or Multimodal); the primary business key used in enrolment logic.DESCRIPTION— the university-defined display text for the attendance mode.GOVT_ATTENDANCE_MODE— the statutory or government reporting attendance mode classification, where the institution maps its own modes to an external reporting code.CLOSED_IND— indicates whether the attendance mode has been closed and is therefore unavailable for new enrolment.ORG_ID— the operating unit that owns the record;NULLdenotes a global/seeded row visible to all operating units.- Audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— the standard EBS "who did what, when" set for traceability.
Common Use Cases and Queries
Typical consumers are enrolment reports and validation routines that need the set of active attendance modes available to a student's operating unit, plus extracts that must publish the government-facing classification.
- Populating an LOV or validation list with open attendance modes.
- Extracting a code-to-description lookup for enrolment or student record extracts.
- Joining attendance mode data to enrolment records for statistical or statutory reporting.
Example — all active attendance modes for the current operating unit context:
SELECT attendance_mode, description, govt_attendance_mode FROM igs_en_atd_mode WHERE NVL(closed_ind, 'N') = 'N' ORDER BY attendance_mode;
Example — resolving a description from a stored mode code within an extract join:
SELECT e.person_id, e.attendance_mode, a.description FROM igs_en_enrolments e, igs_en_atd_mode a WHERE e.attendance_mode = a.attendance_mode;
Because multi-org filtering is already applied inside the view, application code need not add an ORG_ID predicate; doing so explicitly is redundant but harmless provided the value matches the caller's operating unit.
-
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 ,
-
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 ,
-
PACKAGE BODY: APPS.IGS_PS_VAL_COO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VAL_COO, status:VALID,
-
APPS.IGS_PS_VAL_COO SQL Statements
12.1.1
-
APPS.IGS_PS_VAL_GAM SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_VAL_CFAR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_CFAR, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_GAM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VAL_GAM, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FAR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FAR, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_AM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VAL_AM, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_VAL_APCOO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_VAL_APCOO, status:VALID,
-
PACKAGE BODY: APPS.IGS_ST_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_ST_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_SPA_TERMS_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SPA_TERMS_API, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_ANTICIPATED_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_ANTICIPATED_DATA, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_WF_P2A
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_WF_P2A, status:VALID,
-
SYNONYM: APPS.IGS_EN_ATD_MODE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_ATD_MODE_ALL, status:VALID,
-
VIEW: APPS.IGF_AP_IA_LOOKUP_V
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_010
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_010, status:VALID,
-
PACKAGE BODY: APPS.IGS_GE_VAL_PARAM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GE_VAL_PARAM, status:VALID,
-
VIEW: APPS.IGS_FI_FEE_AS_RATE_V
12.1.1
-
VIEW: APPS.IGF_AP_IA_LOOKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_IA_LOOKUP_V, object_name:IGF_AP_IA_LOOKUP_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_PRECREATE_APPL_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PRECREATE_APPL_PUB, status:VALID,
-
APPS.IGS_FI_VAL_CFAR SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_ST_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_ST_GEN_004, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_GAM
12.1.1
-
View: IGF_AP_IA_LOOKUP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Lookup Types required for Institutional Application LOV items , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_VAL_SUA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_SUA, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_PROGRAM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_PROGRAM, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VAL_COO
12.1.1
-
View: IGF_AP_IA_LOOKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_IA_LOOKUP_V, object_name:IGF_AP_IA_LOOKUP_V, status:VALID, product: IGF - Financial Aid , description: Lookup Types required for Institutional Application LOV items , implementation_dba_data: APPS.IGF_AP_IA_LOOKUP_V ,
-
PACKAGE BODY: APPS.IGS_EN_GEN_009
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_009, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_002, status:VALID,
-
View: IGS_FI_FEE_AS_RATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS_RATE_V, object_name:IGS_FI_FEE_AS_RATE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_FEE_AS_RATE_V ,
-
PACKAGE BODY: APPS.IGS_EN_GEN_010
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_010, status:VALID,
-
View: IGS_FI_FEE_AS_RATE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PRECREATE_APPL_PUB SQL Statements
12.1.1
-
APPS.IGS_GE_VAL_PARAM SQL Statements
12.1.1
-
APPS.IGS_AD_VAL_APCOO SQL Statements
12.1.1
-
VIEW: APPS.IGS_FI_FEE_AS_RATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS_RATE_V, object_name:IGS_FI_FEE_AS_RATE_V, status:VALID,
-
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,
-
APPS.IGF_AW_ANTICIPATED_DATA SQL Statements
12.1.1
-
APPS.IGS_ST_GEN_001 SQL Statements
12.1.1
-
APPS.IGS_AD_VAL_APCOOD SQL Statements
12.1.1
-
APPS.IGS_AD_GEN_010 SQL Statements
12.1.1
-
APPS.IGS_FI_VAL_FAR SQL Statements
12.1.1
-
APPS.IGS_ST_GEN_004 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_GE_VAL_PARAM
12.1.1
-
APPS.IGS_FI_VAL_CFAR dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_AD_GEN_002 dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_AD_GEN_010 dependencies on IGS_EN_ATD_MODE
12.1.1
-
APPS.IGS_PS_VAL_AM dependencies on IGS_EN_ATD_MODE
12.1.1