Search Results accounting_attribute_code
Overview
The view APPS.XLA_AAD_HDR_ACCT_ATTRS_FVL is a reporting and integration artifact within the Subledger Accounting (XLA) product of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It exposes the header-level accounting attribute assignments defined for Application Accounting Definitions (AADs), enriching the raw configuration data with translated names and lookup meanings. Its primary purpose is to present a denormalized, human-readable projection of the relationship between accounting attributes, subledger sources, and the header rules that bind them, so that functional users, implementers, and downstream integrations can inspect how a given AAD derives its journal entry attributes without joining multiple base tables manually.
The suffix _FVL indicates that this is a "Flexfield Value Language" style view designed for language-sensitive display. It resolves the source type code to its user-facing meaning via the lookup XLA_SOURCE_TYPE, which is precisely the basis for the SOURCE_TYPE_DSP column — the column the user searched for. That column provides the translated display value of the source type (for example, whether the source is a system-generated or user-entered value) used to classify where a particular accounting attribute value originates.
Underlying Base Objects
The view is defined over the following documented base objects:
- XLA_AAD_HDR_ACCT_ATTRS (SYNONYM) — the driving table (
AHA) holding the AAD header accounting attribute assignment rows. - XLA_ACCT_ATTRIBUTES_VL (VIEW) — the accounting attribute definition view (
AAL), supplying the attribute name, journal entry level, datatype, and assignment group metadata. - XLA_SOURCES_TL (SYNONYM) — the translated subledger source definitions (
SOU), supplying the source name. - XLA_LOOKUPS (VIEW) — referenced twice:
LKP1resolvesSOURCE_TYPE_CODEagainst lookup typeXLA_SOURCE_TYPE, andLKP2resolvesASSIGNMENT_GROUP_CODEagainst lookup typeXLA_ACCT_ATTR_ASSGN_GROUP.
All joins to the translation and lookup objects are outer joins ((+)), with XLA_SOURCES_TL additionally constrained by USERENV('LANG') so that only the session-language row is returned. This ensures rows are not lost when a translation or lookup meaning is unavailable.
Key Columns
- SOURCE_TYPE_DSP — the translated meaning of
SOURCE_TYPE_CODE, derived from lookup typeXLA_SOURCE_TYPE; identifies the category of the source feeding the attribute. - SOURCE_TYPE_CODE / SOURCE_CODE / SOURCE_APPLICATION_ID — the raw identifiers of the subledger source, joined to
XLA_SOURCES_TL. - SOURCE_NAME — the translated name of the source.
- ACCOUNTING_ATTRIBUTE_CODE / ACCOUNTING_ATTRIBUTE_NAME — the accounting attribute being assigned and its descriptive name.
- ASSIGNMENT_GROUP_CODE / ASSIGNMENT_GROUP_NAME — the assignment grouping, with
ASSIGNMENT_GROUP_NAMEresolved from lookup typeXLA_ACCT_ATTR_ASSGN_GROUP. - EVENT_CLASS_CODE / EVENT_TYPE_CODE / EVENT_CLASS_DEFAULT_FLAG — the event context under which the assignment applies.
- PRODUCT_RULE_TYPE_CODE / PRODUCT_RULE_CODE — the application accounting definition rule header identity.
- AMB_CONTEXT_CODE, DATATYPE_CODE, ASSIGNMENT_LEVEL_CODE, JOURNAL_ENTRY_LEVEL_CODE — configuration context, value datatype, and assignment/journal-entry scope.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns inherited from the driving table.
Common Use Cases and Queries
This view is typically queried to audit or troubleshoot how a specific AAD sources each accounting attribute. A common pattern filters by account definition and displays the source type meaning:
- Listing all attribute assignments for an event class, showing
SOURCE_TYPE_DSPto confirm whether values are system or user derived. - Verifying that required accounting attributes have an assignment within a given product rule.
- Reporting on the sources and assignment groups configured for a subledger application during implementation review.
Representative query:
SELECT event_class_code, accounting_attribute_name, source_type_dsp, source_name, assignment_required_code FROM xla_aad_hdr_acct_attrs_fvl WHERE application_id = :app_id AND product_rule_type_code = :rule_type ORDER BY event_class_code, accounting_attribute_name;
Because the view already resolves lookup meanings and translated names, it removes the need to join XLA_LOOKUPS and the translation tables directly, making it suitable for concurrent-program extracts, OAF pages, and integration queries where a display-ready result set is required.
-
View: XLA_AAD_HDR_ACCT_ATTRS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AAD_HDR_ACCT_ATTRS_FVL, object_name:XLA_AAD_HDR_ACCT_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AAD_HDR_ACCT_ATTRS_FVL ,
-
View: XLA_AAD_HDR_ACCT_ATTRS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_AAD_HDR_ACCT_ATTRS_FVL, object_name:XLA_AAD_HDR_ACCT_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_AAD_HDR_ACCT_ATTRS_FVL ,
-
View: XLA_EVT_CLASS_ACCT_ATTRS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_EVT_CLASS_ACCT_ATTRS_FVL, object_name:XLA_EVT_CLASS_ACCT_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_EVT_CLASS_ACCT_ATTRS_FVL ,
-
View: XLA_EVT_CLASS_ACCT_ATTRS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_EVT_CLASS_ACCT_ATTRS_FVL, object_name:XLA_EVT_CLASS_ACCT_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_EVT_CLASS_ACCT_ATTRS_FVL ,
-
View: XLA_JLT_ACCT_ATTRS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_JLT_ACCT_ATTRS_FVL, object_name:XLA_JLT_ACCT_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_JLT_ACCT_ATTRS_FVL ,
-
View: XLA_JLT_ACCT_ATTRS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_JLT_ACCT_ATTRS_FVL, object_name:XLA_JLT_ACCT_ATTRS_FVL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_JLT_ACCT_ATTRS_FVL ,
-
Table: XLA_ACCT_ATTRIBUTES_TL
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_ACCT_ATTRIBUTES_TL, object_name:XLA_ACCT_ATTRIBUTES_TL, status:VALID, product: XLA - Subledger Accounting , description: The XLA_ACCT_ATTRIBUTES_TL table captures translated values for the accounting attributes. Accounting attributes are pre-defined by Subledger Accounting. Accounting attributes are necessary to complete specific processing associated with th , implementation_dba_data: XLA.XLA_ACCT_ATTRIBUTES_TL ,
-
Table: XLA_JLT_ACCT_ATTRS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_JLT_ACCT_ATTRS, object_name:XLA_JLT_ACCT_ATTRS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_JLT_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the Journal Line Type level. , implementation_dba_data: XLA.XLA_JLT_ACCT_ATTRS ,
-
Table: XLA_EVT_CLASS_ACCT_ATTRS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_EVT_CLASS_ACCT_ATTRS, object_name:XLA_EVT_CLASS_ACCT_ATTRS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_EVT_CLASS_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the event class level. , implementation_dba_data: XLA.XLA_EVT_CLASS_ACCT_ATTRS ,
-
View: XLA_ACCT_ATTRIBUTES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCT_ATTRIBUTES_VL, object_name:XLA_ACCT_ATTRIBUTES_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ACCT_ATTRIBUTES_VL ,
-
Table: XLA_AAD_HDR_ACCT_ATTRS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_AAD_HDR_ACCT_ATTRS, object_name:XLA_AAD_HDR_ACCT_ATTRS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_AAD_HDR_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the AAD level. , implementation_dba_data: XLA.XLA_AAD_HDR_ACCT_ATTRS ,
-
Table: XLA_AAD_HDR_ACCT_ATTRS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_AAD_HDR_ACCT_ATTRS, object_name:XLA_AAD_HDR_ACCT_ATTRS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_AAD_HDR_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the AAD level. , implementation_dba_data: XLA.XLA_AAD_HDR_ACCT_ATTRS ,
-
Table: XLA_JLT_ACCT_ATTRS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_JLT_ACCT_ATTRS, object_name:XLA_JLT_ACCT_ATTRS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_JLT_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the Journal Line Type level. , implementation_dba_data: XLA.XLA_JLT_ACCT_ATTRS ,
-
Table: XLA_EVT_CLASS_ACCT_ATTRS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_EVT_CLASS_ACCT_ATTRS, object_name:XLA_EVT_CLASS_ACCT_ATTRS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_EVT_CLASS_ACCT_ATTRS stores standard, system and custom sources assigned to an accounting attribute at the event class level. , implementation_dba_data: XLA.XLA_EVT_CLASS_ACCT_ATTRS ,
-
Table: XLA_ACCT_ATTRIBUTES_B
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_ACCT_ATTRIBUTES_B, object_name:XLA_ACCT_ATTRIBUTES_B, status:VALID, product: XLA - Subledger Accounting , description: The XLA_ACCT_ATTRIBUTES_B table captures accounting attributes available to the end users. Accounting attributes are pre-defined by the Oracle Subledger Accounting Architecture. Oracle Subledger Accounting Architecture has identified accoun , implementation_dba_data: XLA.XLA_ACCT_ATTRIBUTES_B ,
-
Table: XLA_ACCT_ATTRIBUTES_B
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_ACCT_ATTRIBUTES_B, object_name:XLA_ACCT_ATTRIBUTES_B, status:VALID, product: XLA - Subledger Accounting , description: The XLA_ACCT_ATTRIBUTES_B table captures accounting attributes available to the end users. Accounting attributes are pre-defined by the Oracle Subledger Accounting Architecture. Oracle Subledger Accounting Architecture has identified accoun , implementation_dba_data: XLA.XLA_ACCT_ATTRIBUTES_B ,
-
Table: XLA_ACCT_ATTRIBUTES_TL
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_ACCT_ATTRIBUTES_TL, object_name:XLA_ACCT_ATTRIBUTES_TL, status:VALID, product: XLA - Subledger Accounting , description: The XLA_ACCT_ATTRIBUTES_TL table captures translated values for the accounting attributes. Accounting attributes are pre-defined by Subledger Accounting. Accounting attributes are necessary to complete specific processing associated with th , implementation_dba_data: XLA.XLA_ACCT_ATTRIBUTES_TL ,
-
View: XLA_ACCT_ATTRIBUTES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_ACCT_ATTRIBUTES_VL, object_name:XLA_ACCT_ATTRIBUTES_VL, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_ACCT_ATTRIBUTES_VL ,