Search Results xle_fp_ledger_v
Overview
XLE_FP_LEDGER_V is a reporting view owned by the APPS schema within the Oracle E-Business Suite Legal Entity Configurator (XLE) product. Its purpose is to expose the relationship between a General Ledger ledger and the legal entity that owns or is associated with that ledger, restricted to the balancing segment. In Oracle EBS 12.1.1 and 12.2.2, the Legal Entity Configurator is the repository for legal entity definitions and their assignments to ledgers, and downstream processes such as subledger accounting, intercompany balancing, and tax determination frequently need to resolve a ledger to its legal entity context. Rather than requiring callers to join GL_LEDGERS, GL_LEDGER_CONFIGURATIONS, GL_LEDGER_NORM_SEG_VALS, XLE_ENTITY_PROFILES, and HZ_GEOGRAPHIES manually, XLE_FP_LEDGER_V encapsulates that join into a single reusable object. The view is documented as VALID and is referenced in ETRM metadata for both 12.1.1 and 12.2.2. The user search term "gl_ledger_norm_seg_vals" reflects the fact that this base table is central to the view's definition, since it supplies the balancing segment value that ties a ledger to its legal entity.
Underlying Base Objects
The view is defined over five referenced base objects, all exposed through APPS synonyms:
- GL_LEDGERS — the ledger master, supplying LEDGER_ID, NAME, SHORT_NAME, LEDGER_CATEGORY_CODE, and CONFIGURATION_ID.
- GL_LEDGER_CONFIGURATIONS — the ledger configuration header, used to filter out ledgers whose configuration is still IN_PROGRESS.
- GL_LEDGER_NORM_SEG_VALS — the normalized segment value assignments for a ledger; the view restricts this to SEGMENT_TYPE_CODE = 'B' (balancing segment) and excludes rows whose STATUS_CODE is 'D'.
- XLE_ENTITY_PROFILES — the legal entity definition, supplying the legal entity name, identifier, and effective dates.
- HZ_GEOGRAPHIES — the geography repository, restricted to GEOGRAPHY_TYPE = 'COUNTRY', providing the legal entity's country code.
The join logic resolves the legal entity either through the balancing segment value's LEGAL_ENTITY_ID or, when that is null, directly from XLE_ENTITY_PROFILES via NVL. The configuration join ensures only completed ledger configurations are returned, and the geography join enforces a valid country-level geography for the legal entity.
Key Columns
- LEDGER_ID — unique identifier of the ledger.
- LEDGER_NAME, LEDGER_SHORT_NAME — descriptive names from GL_LEDGERS.
- LEGAL_ENTITY_ID — resolved legal entity identifier, derived via NVL from the balancing segment value or the entity profile.
- LEGAL_ENTITY_NAME, LEGAL_ENTITY_IDENTIFIER — legal entity name and its registered identifier from XLE_ENTITY_PROFILES.
- LEGAL_ENTITY_COUNTRY — country code from HZ_GEOGRAPHIES.
- LE_EFFECTIVE_FROM, LE_EFFECTIVE_TO — validity dates of the legal entity.
- LEDGER_CATEGORY_CODE — the ledger category (e.g., PRIMARY, SECONDARY).
- SEGMENT_VALUE — the balancing segment value associated with the ledger.
- START_DATE, END_DATE — effective dates of the balancing segment value assignment.
Common Use Cases and Queries
The view is typically used to report the ledger-to-legal-entity mapping for a given balancing segment, to validate configuration before period close, or to feed downstream integrations that need country and entity identifiers. A representative query retrieves the active ledger and entity information for a balancing segment value:
SELECT ledger_name, ledger_short_name, legal_entity_name, legal_entity_country, segment_value FROM apps.xle_fp_ledger_v WHERE segment_value = :balancing_segment;SELECT ledger_id, legal_entity_id, ledger_category_code FROM apps.xle_fp_ledger_v WHERE ledger_category_code = 'PRIMARY';SELECT legal_entity_name, le_effective_from, le_effective_to FROM apps.xle_fp_ledger_v WHERE SYSDATE BETWEEN le_effective_from AND NVL(le_effective_to, SYSDATE);
Because the view already filters for completed configurations, active balancing segments, and valid country geographies, queries against it return only usable ledger-entity combinations, making it suitable for operational reporting and integration lookups in both 12.1.1 and 12.2.2 environments.
-
View: XLE_FP_LEDGER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLE.XLE_FP_LEDGER_V, object_name:XLE_FP_LEDGER_V, status:VALID, product: XLE - Legal Entity Configurator , implementation_dba_data: APPS.XLE_FP_LEDGER_V ,
-
View: XLE_FP_LEDGER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLE.XLE_FP_LEDGER_V, object_name:XLE_FP_LEDGER_V, status:VALID, product: XLE - Legal Entity Configurator , implementation_dba_data: APPS.XLE_FP_LEDGER_V ,
-
VIEW: APPS.XLE_FP_LEDGER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLE.XLE_FP_LEDGER_V, object_name:XLE_FP_LEDGER_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.XLE_FP_LEDGER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLE.XLE_FP_LEDGER_V, object_name:XLE_FP_LEDGER_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.GL_LEDGER_CONFIGURATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_CONFIGURATIONS, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_CONFIGURATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_CONFIGURATIONS, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_NORM_SEG_VALS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_NORM_SEG_VALS, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_NORM_SEG_VALS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_NORM_SEG_VALS, status:VALID,
-
SYNONYM: APPS.HZ_GEOGRAPHIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_GEOGRAPHIES, status:VALID,
-
SYNONYM: APPS.HZ_GEOGRAPHIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_GEOGRAPHIES, status:VALID,
-
SYNONYM: APPS.XLE_ENTITY_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLE_ENTITY_PROFILES, status:VALID,
-
SYNONYM: APPS.XLE_ENTITY_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLE_ENTITY_PROFILES, status:VALID,
-
SYNONYM: APPS.GL_LEDGERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGERS, status:VALID,
-
eTRM - XLE Tables and Views
12.2.2
description: XLE_UNQ_PROFILES stores information about an Unqualified Legal Construct ,
-
SYNONYM: APPS.GL_LEDGERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGERS, status:VALID,
-
eTRM - XLE Tables and Views
12.1.1
description: XLE_UNQ_PROFILES stores information about an Unqualified Legal Construct ,
-
eTRM - XLE Tables and Views
12.2.2
description: XLE_UNQ_PROFILES stores information about an Unqualified Legal Construct ,
-
eTRM - XLE Tables and Views
12.1.1
description: XLE_UNQ_PROFILES stores information about an Unqualified Legal Construct ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1