Search Results other_amount_prim
Overview
APPS.FII_GL_BASE_MAP_MV_P_V is a reporting and integration view in the Oracle E-Business Suite Financial Intelligence (FII) / Enterprise Performance Foundation product family. It exposes the contents of the materialized view FII_GL_BASE_MAP_MV, which stores General Ledger balance data mapped to the analytical dimensions used by FII fact tables. The view presents a flattened, denormalized projection in which each row represents a mapped GL amount for a specific combination of time, ledger, financial category, and dimension members.
The "_P_V" suffix follows the EBS convention for a "public view" layered over a materialized view, providing a stable API surface for downstream reporting tools, custom concurrent programs, and third-party extract routines. Because the underlying object is a materialized view, queries against this view benefit from precomputed aggregation and join results rather than executing the full GL-to-FII mapping logic at runtime. The view is owned by APPS and is listed as Oracle Proprietary, Confidential Information within the ETRM documentation. The presence of the OTHER_AMOUNT_PRIM column — the term the user searched for — identifies this view as one of the primary sources for the "other amount" primary balance bucket used in FII amount-type reporting.
Underlying Base Objects
The view is defined directly over a single object: FII_GL_BASE_MAP_MV, a materialized view that performs the base GL mapping. As documented in the ETRM metadata for this view, no additional base tables are documented as referenced by the view definition itself. The view acts as a thin projection layer, selecting columns from the materialized view without additional joins or filters.
In practice, FII_GL_BASE_MAP_MV is refreshed from the GL balances and FII mapping tables (dimension mappings, calendar, and ledger definitions). Users should treat FII_GL_BASE_MAP_MV as the authoritative persistence layer and this view as the read interface. Refresh of the materialized view determines data currency, so query results reflect the most recent refresh rather than live GL balances.
Key Columns
- UMARKER — A marker column used internally to distinguish or flag rows during materialized view processing and refresh.
- TIME_ID — Foreign key to the FII time dimension, identifying the accounting period or date context of the balance.
- PERIOD_TYPE_ID — Identifies the period type (for example, accounting period versus quarter) associated with the time dimension member.
- LEDGER_ID — The General Ledger ledger from which the balance originated.
- BUDGET_VERSION_DATE — Effective date of the budget version when the row represents budget data.
- FIN_CATEGORY_ID — Financial category assigned to the balance line.
- COMPANY_DIM_ID, COST_CENTER_DIM_ID, USER_DIM1_ID, USER_DIM2_ID — Dimension member identifiers for company, cost center, and the two user-defined dimensions.
- ACTUAL_B — A flag (typically Y/N) indicating whether the row represents actual balances.
- PRIM_ACTUAL_G, PRIM_BUDGET_G, PRIM_FORECAST_G — Primary actual, budget, and forecast amounts.
- COMMITTED_AMOUNT_PRIM, OBLIGATED_AMOUNT_PRIM, OTHER_AMOUNT_PRIM, BASELINE_AMOUNT_PRIM — Primary committed, obligated, other, and baseline amount buckets.
- POSTED_DATE — The GL posting date associated with the balance.
Common Use Cases and Queries
This view is most often used to extract balances by amount type for FII fact loading, custom financial reports, or reconciliation between GL and FII reporting. The searched term OTHER_AMOUNT_PRIM is typically used to isolate the "other" amount bucket.
Examples:
- Retrieve all primary amount buckets for a ledger and period:
SELECT ledger_id, time_id, prim_actual_g, prim_budget_g, committed_amount_prim, obligated_amount_prim, other_amount_prim FROM apps.fii_gl_base_map_mv_p_v WHERE ledger_id = :ledger_id AND time_id = :time_id; - Isolate rows where the "other" primary amount is non-zero:
SELECT company_dim_id, cost_center_dim_id, other_amount_prim FROM apps.fii_gl_base_map_mv_p_v WHERE other_amount_prim <> 0; - Aggregate committed versus obligated amounts by company:
SELECT company_dim_id, SUM(committed_amount_prim), SUM(obligated_amount_prim) FROM apps.fii_gl_base_map_mv_p_v GROUP BY company_dim_id; - Reconcile GL postings by date:
SELECT posted_date, SUM(baseline_amount_prim) FROM apps.fii_gl_base_map_mv_p_v WHERE posted_date BETWEEN :from_date AND :to_date GROUP BY posted_date;
Because the view exposes dimension IDs rather than descriptive names, join to the corresponding FII dimension views or GL flex value tables to produce user-facing labels. Always qualify the view with the APPS schema and account for materialized view refresh timing when comparing to GL.
-
VIEW: APPS.FII_GL_BASE_MAP_MV_P_V
12.1.1
-
VIEW: APPS.FII_GL_TREND_SUM_MV_P_V
12.1.1
-
VIEW: APPS.FII_GL_AGRT_SUM_MV_P_V
12.1.1
-
TABLE: FII.FII_GL_ENC_CARRYFWD_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_GL_ENC_CARRYFWD_F, object_name:FII_GL_ENC_CARRYFWD_F, status:VALID,
-
View: FII_GL_AGRT_SUM_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_GL_AGRT_SUM_MV_P_V, object_name:FII_GL_AGRT_SUM_MV_P_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_GL_AGRT_SUM_MV_P_V ,
-
View: FII_GL_BASE_MAP_MV_P_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: FII.MLOG$_FII_GL_ENC_CARRYFWD_
12.1.1
owner:FII, object_type:TABLE, object_name:MLOG$_FII_GL_ENC_CARRYFWD_, status:VALID,
-
TABLE: APPS.FII_GL_BASE_MAP_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FII_GL_BASE_MAP_MV, object_name:FII_GL_BASE_MAP_MV, status:VALID,
-
TABLE: FII.MLOG$_FII_GL_JE_SUMMARY_B
12.1.1
owner:FII, object_type:TABLE, object_name:MLOG$_FII_GL_JE_SUMMARY_B, status:VALID,
-
TABLE: APPS.MLOG$_FII_GL_BASE_MAP_MV
12.1.1
owner:APPS, object_type:TABLE, object_name:MLOG$_FII_GL_BASE_MAP_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_GL_TREND_SUM_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_GL_TREND_SUM_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_GL_BASE_MAP_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_GL_BASE_MAP_MV, status:VALID,
-
TABLE: APPS.FII_GL_TREND_SUM_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FII_GL_TREND_SUM_MV, object_name:FII_GL_TREND_SUM_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_GL_AGRT_SUM_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:FII_GL_AGRT_SUM_MV, status:VALID,
-
TABLE: APPS.FII_GL_AGRT_SUM_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FII_GL_AGRT_SUM_MV, object_name:FII_GL_AGRT_SUM_MV, status:VALID,
-
TABLE: FII.FII_GL_ENC_CARRYFWD_T
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_GL_ENC_CARRYFWD_T, object_name:FII_GL_ENC_CARRYFWD_T, status:VALID,
-
View: FII_GL_BASE_MAP_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_GL_BASE_MAP_MV_P_V, object_name:FII_GL_BASE_MAP_MV_P_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_GL_BASE_MAP_MV_P_V ,
-
View: FII_GL_TREND_SUM_MV_P_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: FII_GL_TREND_SUM_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_GL_TREND_SUM_MV_P_V, object_name:FII_GL_TREND_SUM_MV_P_V, status:VALID, product: FII - Financial Intelligence , implementation_dba_data: APPS.FII_GL_TREND_SUM_MV_P_V ,
-
View: FII_GL_AGRT_SUM_MV_P_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
MATERIALIZED VIEW: APPS.FII_GL_BASE_MAP_MV
12.1.1
-
APPS.FII_PSI_JE_DTL_PKG SQL Statements
12.1.1
-
TABLE: FII.FII_GL_JE_SUMMARY_B
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_GL_JE_SUMMARY_B, object_name:FII_GL_JE_SUMMARY_B, status:VALID,
-
TABLE: FII.FII_GL_JE_SUMMARY_STG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_GL_JE_SUMMARY_STG, object_name:FII_GL_JE_SUMMARY_STG, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_GL_TREND_SUM_MV
12.1.1
-
MATERIALIZED VIEW: APPS.FII_GL_AGRT_SUM_MV
12.1.1
-
APPS.FII_GL_JE_B_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_JE_DTL_PKG
12.1.1
-
APPS.FII_SNAP_TBL_REFRESH SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_SNAP_TBL_REFRESH
12.1.1
-
APPS.FII_RECONVERSION_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_GL_JE_B_C
12.1.1
-
APPS.FII_SNAP_TBL_REFRESH dependencies on FII_GL_ENC_CARRYFWD_F
12.1.1
-
APPS.FII_SNAP_TBL_REFRESH dependencies on FII_GL_JE_SUMMARY_B
12.1.1
-
APPS.FII_SNAP_TBL_REFRESH dependencies on FII_TIME_STRUCTURES
12.1.1
-
PACKAGE BODY: APPS.FII_PSI_FUNDS_AVAIL_SUM_PKG
12.1.1
-
APPS.FII_SNAP_TBL_REFRESH dependencies on FII_TIME_ENT_QTR
12.1.1
-
PACKAGE BODY: APPS.FII_RECONVERSION_PKG
12.1.1
-
APPS.FII_GL_JE_B_C dependencies on FII_GL_JE_SUMMARY_STG
12.1.1
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,