Search Results xla_acct_line_types_fvl
Overview
XLA_ACCT_LINE_TYPES_FVL is a validation view owned by the APPS schema within the Subledger Accounting (XLA) product of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. It presents a denormalized, human-readable representation of the accounting line types defined for each subledger application and event class. Underlying records in the base tables store coded values and language-independent identifiers; this view resolves those codes into descriptive names by joining lookup views, translation tables, and application references. Its role is primarily reporting and integration: it allows developers, functional analysts, and integration teams to inspect how accounting line types are configured without decoding internal codes manually. The view exposes the accounting class code and its display meaning, which is why it surfaces frequently in queries searching for the "xla_accounting_class" concept.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over a fixed set of base objects: XLA_ACCT_LINE_TYPES_B (a synonym to the base table) supplies the core configuration columns and ROWID; XLA_ACCT_LINE_TYPES_TL provides the translated name and description for the line type. XLA_EVENT_CLASSES_TL supplies the event class name via a join on application, context, entity, and event class codes. XLA_APPLICATIONS_XVL resolves the application identifier into an application name. FND_ID_FLEX_STRUCTURES_V resolves TRANSACTION_COA_ID into a chart of accounts name. Multiple aliases of XLA_LOOKUPS (L, L1, L2, L3, L4) resolve the accounting line type, merge duplicate, accounting class, rounding class, and business class codes into their display meanings. GL_ENCUMBRANCE_TYPES supplies the encumbrance type description. The view is therefore a read-only projection whose column set mirrors the base table plus descriptive translations.
Key Columns
- APPLICATION_ID / APPLICATION_NAME — identifies the subledger application owning the line type.
- EVENT_CLASS_CODE / EVENT_CLASS_NAME — the event class within the application to which the line type belongs.
- ACCOUNTING_LINE_TYPE_CODE / ACCOUNTING_LINE_TYPE_DSP — the internal code and its lookup meaning for the accounting line type.
- ACCOUNTING_CLASS_CODE / ACCOUNTING_CLASS_DSP — the accounting class assigned to the line type; ACCOUNTING_CLASS_DSP uses NVL to fall back to the raw code when no lookup meaning exists.
- ROUNDING_CLASS_CODE / ROUNDING_CLASS_DSP, MERGE_DUPLICATE_CODE / MERGE_DUPLICATE_DSP, and BUSINESS_CLASS_CODE / BUSINESS_CLASS_NAME — configuration classifiers exposed with descriptive meanings.
- TRANSACTION_COA_ID / TRANSACTION_COA_NAME — the transaction chart of accounts and its resolved flexfield structure name.
- NATURAL_SIDE_CODE, GL_TRANSFER_MODE_CODE, SWITCH_SIDE_FLAG, GAIN_OR_LOSS_FLAG, ENABLED_FLAG — behavioral attributes governing posting and side-switching.
- ENCUMBRANCE_TYPE_ID / ENCUMBRANCE_TYPE — the associated encumbrance type, where applicable.
Common Use Cases and Queries
Typical uses include auditing accounting line type setup, validating that the correct accounting class is assigned before go-live, and feeding configuration extracts into integration tooling. A representative query lists enabled line types and their accounting classes for a given application:
SELECT application_name, event_class_name, accounting_line_type_dsp, accounting_class_dsp, enabled_flag FROM apps.xla_acct_line_types_fvl WHERE application_id = 200 AND enabled_flag = 'Y';
Another common pattern resolves the accounting class for a specific line type, directly addressing the "xla_accounting_class" search intent:
SELECT accounting_line_type_code, accounting_class_code, accounting_class_dsp FROM apps.xla_acct_line_types_fvl WHERE event_class_code = 'INVOICES';
Because the view performs all lookup and translation joins internally, queries against it avoid the multi-table resolution logic otherwise required against XLA_ACCT_LINE_TYPES_B and XLA_LOOKUPS, making it well suited to ad hoc reporting and diagnostic queries in both 12.1.1 and 12.2.2 environments.
-
View: XLA_ACCT_LINE_TYPES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCT_LINE_TYPES_FVL, object_name:XLA_ACCT_LINE_TYPES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ACCT_LINE_TYPES_FVL ,
-
View: XLA_ACCT_LINE_TYPES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCT_LINE_TYPES_FVL, object_name:XLA_ACCT_LINE_TYPES_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ACCT_LINE_TYPES_FVL ,
-
SYNONYM: APPS.XLA_EVENT_CLASSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLA_EVENT_CLASSES_TL, status:VALID,
-
SYNONYM: APPS.XLA_ACCT_LINE_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLA_ACCT_LINE_TYPES_B, status:VALID,
-
SYNONYM: APPS.XLA_ACCT_LINE_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLA_ACCT_LINE_TYPES_B, status:VALID,
-
SYNONYM: APPS.XLA_ACCT_LINE_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLA_ACCT_LINE_TYPES_TL, status:VALID,
-
VIEW: APPS.XLA_APPLICATIONS_XVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_APPLICATIONS_XVL, object_name:XLA_APPLICATIONS_XVL, status:VALID,
-
SYNONYM: APPS.XLA_EVENT_CLASSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLA_EVENT_CLASSES_TL, status:VALID,
-
SYNONYM: APPS.XLA_ACCT_LINE_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLA_ACCT_LINE_TYPES_TL, status:VALID,
-
VIEW: APPS.XLA_APPLICATIONS_XVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_APPLICATIONS_XVL, object_name:XLA_APPLICATIONS_XVL, status:VALID,
-
VIEW: APPS.FND_ID_FLEX_STRUCTURES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_ID_FLEX_STRUCTURES_V, object_name:FND_ID_FLEX_STRUCTURES_V, status:VALID,
-
VIEW: APPS.FND_ID_FLEX_STRUCTURES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_ID_FLEX_STRUCTURES_V, object_name:FND_ID_FLEX_STRUCTURES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.GL_ENCUMBRANCE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_ENCUMBRANCE_TYPES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.GL_ENCUMBRANCE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_ENCUMBRANCE_TYPES, status:VALID,
-
VIEW: APPS.XLA_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_LOOKUPS, object_name:XLA_LOOKUPS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.XLA_ACCT_LINE_TYPES_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCT_LINE_TYPES_FVL, object_name:XLA_ACCT_LINE_TYPES_FVL, status:VALID,
-
VIEW: APPS.XLA_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_LOOKUPS, object_name:XLA_LOOKUPS, status:VALID,
-
VIEW: APPS.XLA_ACCT_LINE_TYPES_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCT_LINE_TYPES_FVL, object_name:XLA_ACCT_LINE_TYPES_FVL, status:VALID,
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,