Search Results fnd_mo_reporting_entities_v
Overview
FND_MO_REPORTING_ENTITIES_V is a reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the FND – Application Object Library product family and is used by the Multi-Org (MO) reporting infrastructure to expose the set of reporting entities that a given responsibility or user is authorized to access. The view consolidates ledger-level reporting entities from General Ledger into a single, security-filtered result set that downstream ETRM (Enterprise Tax Reporting and Management) and financial reporting components can query.
The view is particularly significant because it surfaces the COMPLETION_STATUS_CODE column, which reflects the configuration completion state of each ledger as recorded in GL_LEDGER_CONFIGURATIONS. Users searching for "completion_status_code" are typically trying to determine whether a ledger's configuration has been fully completed before allowing it to participate in tax or accounting reporting. The view returns a value such as 'C' (complete) or an incomplete indicator for ledgers that have not finished configuration setup, enabling reporting tools to suppress or flag incompletely configured ledgers.
Underlying Base Objects
The view is defined as a UNION ALL over two logically similar branches. The first branch joins GL_LEDGERS_PUBLIC_ALL_V and GL_LEDGERS to GL_LEDGER_CONFIGURATIONS on CONFIGURATION_ID, returning primary ledgers. The second branch handles ALC (Application Ledger Configuration) and secondary ledgers, sourcing TARGET_LEDGER_ID values from GL_LEDGER_RELATIONSHIPS where TARGET_LEDGER_CATEGORY_CODE is 'ALC' or 'SECONDARY', RELATIONSHIP_ENABLED_FLAG is 'Y', and RELATIONSHIP_TYPE_CODE is 'SUBLEDGER'. Documented base objects include GL_LEDGERS, GL_LEDGERS_PUBLIC_ALL_V, GL_LEDGER_CONFIGURATIONS, GL_LEDGER_RELATIONSHIPS, HR_OPERATING_UNITS, HR_ORGANIZATION_INFORMATION, MO_GLOBAL, and XLE_ENTITY_PROFILES.
Both branches are filtered by a security predicate that calls MO_GLOBAL.CHECK_ACCESS against operating unit organization IDs derived from HR_ORGANIZATION_INFORMATION, ensuring only authorized ledgers are returned.
Key Columns
- REPORTING_LEVEL – Hard-coded as '1000', indicating the ledger reporting level.
- ENTITY_NAME – The ledger name (GL.NAME).
- ENTITY_ID – The ledger identifier (GL.LEDGER_ID).
- OPERATING_UNIT_ID / LEGAL_ENTITY_ID – Returned as -9999 in the documented view text, acting as placeholders at the ledger level.
- LEDGER_ID – The governing ledger.
- CURRENCY_CODE – Ledger currency.
- LEDGER_CATEGORY_CODE – Primary, ALC, or Secondary designation.
- COMPLETION_STATUS_CODE – Sourced from GL_LEDGER_CONFIGURATIONS, indicating whether ledger configuration is complete.
Common Use Cases and Queries
Typical usage filters the view by completion status to exclude partially configured ledgers from reporting:
- Listing all reporting entities with completed configurations:
SELECT ENTITY_NAME, LEDGER_ID, COMPLETION_STATUS_CODE FROM FND_MO_REPORTING_ENTITIES_V WHERE COMPLETION_STATUS_CODE = 'C'; - Auditing incomplete ledger setups:
SELECT ENTITY_NAME, LEDGER_CATEGORY_CODE FROM FND_MO_REPORTING_ENTITIES_V WHERE COMPLETION_STATUS_CODE != 'C'; - Joining to XLE_ENTITY_PROFILES for legal entity reconciliation.
- Feeding ETRM tax reporting extracts scoped to authorized ledgers only.
-
View: FND_MO_REPORTING_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_MO_REPORTING_ENTITIES_V, object_name:FND_MO_REPORTING_ENTITIES_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_MO_REPORTING_ENTITIES_V ,
-
View: FND_MO_REPORTING_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_MO_REPORTING_ENTITIES_V, object_name:FND_MO_REPORTING_ENTITIES_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.FND_MO_REPORTING_ENTITIES_V ,
-
PACKAGE BODY: APPS.FND_MO_REPORTING_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_MO_REPORTING_API, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_CONFIGURATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_CONFIGURATIONS, status:VALID,
-
PACKAGE BODY: APPS.FND_MO_REPORTING_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_MO_REPORTING_API, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_CONFIGURATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_CONFIGURATIONS, status:VALID,
-
VIEW: APPS.FND_MO_REPORTING_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_MO_REPORTING_ENTITIES_V, object_name:FND_MO_REPORTING_ENTITIES_V, status:VALID,
-
SYNONYM: APPS.GL_LEDGER_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_RELATIONSHIPS, status:VALID,
-
VIEW: APPS.FND_MO_REPORTING_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_MO_REPORTING_ENTITIES_V, object_name:FND_MO_REPORTING_ENTITIES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.FND_MO_REPORTING_API SQL Statements
12.1.1
-
SYNONYM: APPS.GL_LEDGER_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGER_RELATIONSHIPS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.FND_MO_REPORTING_API SQL Statements
12.2.2
-
SYNONYM: APPS.XLE_ENTITY_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLE_ENTITY_PROFILES, status:VALID,
-
VIEW: APPS.GL_LEDGERS_PUBLIC_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LEDGERS_PUBLIC_ALL_V, object_name:GL_LEDGERS_PUBLIC_ALL_V, status:VALID,
-
VIEW: APPS.GL_LEDGERS_PUBLIC_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_LEDGERS_PUBLIC_ALL_V, object_name:GL_LEDGERS_PUBLIC_ALL_V, status:VALID,
-
SYNONYM: APPS.XLE_ENTITY_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLE_ENTITY_PROFILES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.FND_MO_REPORTING_API
12.1.1
-
PACKAGE BODY: APPS.FND_MO_REPORTING_API
12.2.2
-
APPS.FND_MO_REPORTING_API dependencies on FND_MO_REPORTING_ENTITIES_V
12.1.1
-
VIEW: APPS.HR_OPERATING_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID,
-
APPS.FND_MO_REPORTING_API dependencies on FND_MO_REPORTING_ENTITIES_V
12.2.2
-
SYNONYM: APPS.GL_LEDGERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGERS, status:VALID,
-
VIEW: APPS.HR_OPERATING_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID,
-
SYNONYM: APPS.GL_LEDGERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_LEDGERS, status:VALID,
-
APPS.ZX_EXTRACT_PKG SQL Statements
12.1.1
-
APPS.ZX_EXTRACT_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.MO_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:MO_GLOBAL, status:VALID,
-
APPS.FND_MO_REPORTING_API dependencies on FND_PROFILE
12.2.2
-
PACKAGE: APPS.MO_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:MO_GLOBAL, status:VALID,
-
APPS.FND_MO_REPORTING_API dependencies on FND_PROFILE
12.1.1
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
APPS.ZX_EXTRACT_PKG dependencies on ZX_REP_CONTEXT_T
12.1.1
-
SYNONYM: APPS.HR_ORGANIZATION_INFORMATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ORGANIZATION_INFORMATION, status:VALID,
-
APPS.ZX_EXTRACT_PKG dependencies on ZX_REP_CONTEXT_T
12.2.2
-
PACKAGE BODY: APPS.ZX_EXTRACT_PKG
12.1.1
-
PACKAGE BODY: APPS.ZX_EXTRACT_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
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 - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
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 - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,