Search Results event_class_group_code
Overview
XLA_EVENT_CLASS_ATTRS_FVL is an APPS-owned, VALID view within the Oracle E-Business Suite Subledger Accounting (XLA) module. It is a "flexfield value" style view that presents the event class attributes configured for each subledger application, entity, and event class, enriched with translated lookup names, general ledger journal category descriptions, and application names. Rather than exposing raw configuration identifiers, the view performs the language-sensitive joins required to return user-facing names, making it suitable for both reporting and integration layers that must display Subledger Accounting setup in a readable form.
In the context of a search for event_class_group_code, this view is particularly relevant because it exposes EVENT_CLASS_GROUP_CODE directly alongside its translated description, EVENT_CLASS_GROUP_NAME. That pairing allows users to both filter by the group code and display the group's meaning without additional joins. The view is documented in ETRM 12.2.2 and is also applicable to 12.1.1, since the underlying XLA event class and event class group tables exist in both releases.
Underlying Base Objects
The documented base objects referenced by XLA_EVENT_CLASS_ATTRS_FVL are:
- XLA_EVENT_CLASS_ATTRS (SYNONYM) — the primary driving table, holding the accounting attributes configured per event class, including the event class group code and the accounting flags.
- XLA_EVENT_CLASSES_TL (SYNONYM) — the translated event class table, supplying EVENT_CLASS_NAME for the user's language.
- XLA_EVENT_CLASS_GRPS_TL (SYNONYM) — the translated event class group table, supplying EVENT_CLASS_GROUP_NAME.
- XLA_ENTITY_TYPES_TL (SYNONYM) — the translated entity types table, supplying ENTITY_NAME.
- GL_JE_CATEGORIES (SYNONYM) — the General Ledger journal categories table, supplying USER_JE_CATEGORY_NAME.
- XLA_APPLICATIONS_XVL (VIEW) — the applications lookup view, supplying APPLICATION_NAME.
Joins are keyed on APPLICATION_ID, ENTITY_CODE, EVENT_CLASS_CODE, and EVENT_CLASS_GROUP_CODE, with language-restricted joins (LANGUAGE = USERENV('LANG')) against each translated table. The view explicitly excludes ENTITY_CODE values of 'MANUAL' and 'THIRD_PARTY_MERGE'.
Key Columns
- ROW_ID — the ROWID of the XLA_EVENT_CLASS_ATTRS row, used to uniquely identify a configured attribute set.
- APPLICATION_ID / APPLICATION_NAME — the subledger application identifier and its display name.
- ENTITY_CODE / ENTITY_NAME — the entity within the application (for example, transaction types) and its translated name.
- EVENT_CLASS_CODE / EVENT_CLASS_NAME — the accounting event class and its translated description.
- EVENT_CLASS_GROUP_CODE / EVENT_CLASS_GROUP_NAME — the grouping of event classes and its translated description; the code is the direct target of the user's search.
- JE_CATEGORY_NAME / USER_JE_CATEGORY_NAME — the journal category code and its user-facing GL name.
- ALLOW_ACTUALS_FLAG, ALLOW_BUDGETS_FLAG, ALLOW_ENCUMBRANCE_FLAG — indicators of which balance types the event class supports.
- CALCULATE_ACCTD_AMTS_FLAG, CALCULATE_G_L_AMTS_FLAG — flags governing whether accounted and GL amounts are calculated.
- REPORTING_VIEW_NAME — the reporting view associated with the event class.
Common Use Cases and Queries
Typical scenarios include reviewing Subledger Accounting event class configuration, diagnosing why a journal entry was created with a particular category, and reporting on which balance types an event class permits. A representative query filtering on the event class group code is:
SELECT application_name,
entity_name,
event_class_name,
event_class_group_code,
event_class_group_name,
user_je_category_name
FROM apps.xla_event_class_attrs_fvl
WHERE event_class_group_code = :p_event_class_group_code
ORDER BY application_name, entity_name, event_class_name;
Because the view already resolves translated names, no additional joins to the TL tables are required, and results are returned in the session's language. This makes it a convenient source for concurrent programs, BI Publisher reports, and integration extracts that need to present Subledger Accounting setup to end users.
-
View: XLA_EVENT_CLASS_ATTRS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_EVENT_CLASS_ATTRS_FVL, object_name:XLA_EVENT_CLASS_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_EVENT_CLASS_ATTRS_FVL ,
-
View: XLA_EVENT_CLASS_ATTRS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_EVENT_CLASS_ATTRS_FVL, object_name:XLA_EVENT_CLASS_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_EVENT_CLASS_ATTRS_FVL ,
-
Table: XLA_EVENT_CLASS_GRPS_B
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_EVENT_CLASS_GRPS_B, object_name:XLA_EVENT_CLASS_GRPS_B, status:VALID, product: XLA - Subledger Accounting , description: The table XLA_EVENT_CLASS_GRPS_B record groups of event classes for processing purpose. , implementation_dba_data: XLA.XLA_EVENT_CLASS_GRPS_B ,
-
Table: XLA_EVENT_CLASS_GRPS_TL
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_EVENT_CLASS_GRPS_TL, object_name:XLA_EVENT_CLASS_GRPS_TL, status:VALID, product: XLA - Subledger Accounting , description: The table XLA_EVENT_CLASS_GRPS_TL record translated information about event class groups. , implementation_dba_data: XLA.XLA_EVENT_CLASS_GRPS_TL ,
-
Table: XLA_EVENT_CLASS_GRPS_TL
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_EVENT_CLASS_GRPS_TL, object_name:XLA_EVENT_CLASS_GRPS_TL, status:VALID, product: XLA - Subledger Accounting , description: The table XLA_EVENT_CLASS_GRPS_TL record translated information about event class groups. , implementation_dba_data: XLA.XLA_EVENT_CLASS_GRPS_TL ,
-
Table: XLA_EVENT_CLASS_GRPS_B
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_EVENT_CLASS_GRPS_B, object_name:XLA_EVENT_CLASS_GRPS_B, status:VALID, product: XLA - Subledger Accounting , description: The table XLA_EVENT_CLASS_GRPS_B record groups of event classes for processing purpose. , implementation_dba_data: XLA.XLA_EVENT_CLASS_GRPS_B ,
-
View: XLA_EVENT_CLASS_GRPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_EVENT_CLASS_GRPS_VL, object_name:XLA_EVENT_CLASS_GRPS_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_EVENT_CLASS_GRPS_VL ,
-
View: XLA_EVENT_CLASS_GRPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_EVENT_CLASS_GRPS_VL, object_name:XLA_EVENT_CLASS_GRPS_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_EVENT_CLASS_GRPS_VL ,
-
View: XLA_ENTITY_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ENTITY_EVENTS_V, object_name:XLA_ENTITY_EVENTS_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ENTITY_EVENTS_V ,
-
View: XLA_ENTITY_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ENTITY_EVENTS_V, object_name:XLA_ENTITY_EVENTS_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ENTITY_EVENTS_V ,