Search Results month_name
Overview
FII_TANDE_RMNTH_EXP_SUM_V is a database view historically delivered within the Oracle E-Business Suite Financial Intelligence (FII) product family. In the ETRM documentation set for Oracle EBS 12.1.1 and 12.2.2, the object is catalogued under the FII module with an explicit "Obsolete" designation and the implementation note "Not implemented in this database." Consequently, the view is documented as legacy metadata only; it is not created in a standard, current 12.1.1 or 12.2.2 application database.
Where deployed, the view presents a monthly expense summary projection built around a sequence identifier (SEQ_ID), a month label, current-year and prior-year expense measures, and a chain of fourteen hierarchical level keys. Its function was to serve as a reporting read-layer over the underlying summary table, exposing a stable, presentation-friendly column set for period-over-period expense comparison and dimensional drill-down.
Underlying Base Objects
The view text identifies a single direct base object: FII_TANDE_RMNTH_EXP_SUM. The view performs no joins and introduces no aggregate functions or GROUP BY clauses; it is a straight projection with one transformation. The documented view text is:
- SELECT clause projecting SEQ_ID, MONTH_NAME, CYR_EXP, PYR_EXP, and LEVEL9_KEY through LEVEL15_KEY.
- MONTH_NAME is passed through SUBSTR(MONTH_NAME, 1, 3), truncating the stored month value to its first three characters.
- All remaining columns are selected unchanged from FII_TANDE_RMNTH_EXP_SUM.
No referenced base objects beyond FII_TANDE_RMNTH_EXP_SUM are documented in the ETRM metadata. The view therefore inherits its grain, row count, and dimensional semantics entirely from that summary table.
Key Columns
- SEQ_ID — A sequence identifier carried over from the base table. It provides a unique or near-unique row key for the summarised expense record and is commonly used for ordering, joining, or deduplication logic in extracts.
- MONTH_NAME — The reporting month, truncated to three characters (for example, JAN, FEB, MAR). This abbreviation supports compact column headers and stable month bucketing in reports.
- CYR_EXP — Current-year expense amount for the month identified by the row.
- PYR_EXP — Prior-year expense amount for the same month, enabling period-over-period variance calculation directly in the query.
- LEVEL9_KEY through LEVEL15_KEY — Seven contiguous hierarchical key columns representing the deepest available levels of the accounting or organisational flexfield dimension set. They permit grouping, filtering, and drill-down at the lowest (level 9 to level 15) summarisation tiers.
Common Use Cases and Queries
Because the object is obsolete and documented as not implemented, the primary practical value is historical reference and migration assessment. Where an installation retains the legacy object, typical usage is monthly expense variance reporting and drill-down to low-level hierarchy keys.
- Variance analysis: selecting MONTH_NAME with (CYR_EXP - PYR_EXP) to expose month-over-month expense movement.
- Lowest-level roll-ups: grouping by LEVEL15_KEY (or the deepest populated key) to aggregate expense by the most granular dimension.
- Ordered extracts: ORDER BY SEQ_ID to produce a stable, reproducible report sequence.
A representative query is:
- SELECT SEQ_ID, MONTH_NAME, CYR_EXP, PYR_EXP, (CYR_EXP - PYR_EXP) AS VARIANCE, LEVEL9_KEY, LEVEL10_KEY, LEVEL11_KEY, LEVEL12_KEY, LEVEL13_KEY, LEVEL14_KEY, LEVEL15_KEY FROM FII_TANDE_RMNTH_EXP_SUM_V ORDER BY SEQ_ID;
Before adapting any such query for 12.1.1 or 12.2.2, confirm object existence in the target database, since the ETRM metadata records FII_TANDE_RMNTH_EXP_SUM_V as not implemented.
-
View: FII_TANDE_RMNTH_EXP_SUM_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_FMNTH_EXP_SUM_V_WH
12.1.1
product: FII - Financial Intelligence , description: FII_TANDE_FMNTH_EXP_SUM_V_WH is one of the views to support Revenue and Expenses Portal , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_RMNTH_EXP_SUM_V_WH
12.1.1
product: FII - Financial Intelligence , description: FII_TANDE_RMNTH_EXP_SUM_V_WH is one of the views to support Revenue and Expenses Portal , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_RMNTH_EXP_SUM_V
12.1.1
product: FII - Financial Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_FMNTH_EXP_SUM_V_WH
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_TANDE_FMNTH_EXP_SUM_V_WH is one of the views to support Revenue and Expenses Portal , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_FMNTH_EXP_SUM_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_FMNTH_EXP_SUM_V
12.1.1
product: FII - Financial Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: FII_TANDE_RMNTH_EXP_SUM_V_WH
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_TANDE_RMNTH_EXP_SUM_V_WH is one of the views to support Revenue and Expenses Portal , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_REP_MONTH_V
12.1.1
-
View: PA_REP_MONTH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_MONTH_V, object_name:PA_REP_MONTH_V, status:VALID, product: PA - Projects , description: PA_REP_MONTH_V is a view to get month name and month number , implementation_dba_data: APPS.PA_REP_MONTH_V ,
-
APPS.ISC_DBI_REV_CUM_TREND_PKG SQL Statements
12.1.1
-
APPS.FII_GL_CUMUL_REV_TREND_PKG SQL Statements
12.1.1
-
VIEW: APPS.PA_REP_MONTH_V
12.2.2
-
View: PA_REP_MONTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_MONTH_V, object_name:PA_REP_MONTH_V, status:VALID, product: PA - Projects , description: PA_REP_MONTH_V is a view to get month name and month number , implementation_dba_data: APPS.PA_REP_MONTH_V ,
-
APPS.FII_EA_CUMUL_EXP_TREND_PKG SQL Statements
12.1.1
-
VIEW: APPS.MTH_445_CAL_START_MONTH_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MTH_445_CAL_START_MONTH_V, status:VALID,
-
TABLE: MSC.MSC_CALENDAR_DTL
12.1.1
owner:MSC, object_type:TABLE, object_name:MSC_CALENDAR_DTL, status:VALID,
-
VIEW: APPS.MTH_445_CAL_START_MONTH_V
12.2.2
-
VIEW: APPS.PA_REP_MONTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_MONTH_V, object_name:PA_REP_MONTH_V, status:VALID,
-
VIEW: APPS.PA_REP_MONTH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_MONTH_V, object_name:PA_REP_MONTH_V, status:VALID,
-
PACKAGE BODY: APPS.FII_GL_CUMUL_REV_TREND_PKG
12.1.1
-
MATERIALIZED VIEW: APPS.MSC_PHUB_DATES_MV
12.2.2
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MSC_PHUB_DATES_MV, status:VALID,
-
VIEW: APPS.MSC_PHUB_DATES_MV#
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_PHUB_DATES_MV#, status:VALID,
-
TABLE: APPS.MSC_PHUB_DATES_MV
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:MSC.MSC_PHUB_DATES_MV, object_name:MSC_PHUB_DATES_MV, status:VALID,
-
APPS.POA_DBI_PQC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ISC_DBI_REV_CUM_TREND_PKG
12.1.1
-
PACKAGE BODY: APPS.FII_EA_CUMUL_EXP_TREND_PKG
12.1.1
-
VIEW: APPS.MSC_PHUB_DATES_MV#
12.2.2
-
APPS.MSC_PHUB_PKG SQL Statements
12.1.1
-
MATERIALIZED VIEW: APPS.MSC_PHUB_DATES_MV
12.2.2
-
APPS.IMC_REPORTS_SUMMARY_PKG SQL Statements
12.1.1
-
APPS.IMC_REPORTS_SUMMARY_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.POA_DBI_PQC_PKG
12.1.1
-
PACKAGE BODY: APPS.IMC_REPORTS_SUMMARY_PKG
12.1.1
-
PACKAGE BODY: APPS.IMC_REPORTS_SUMMARY_PKG
12.2.2
-
APPS.MSC_PHUB_PKG dependencies on MSC_CALENDAR_DTL
12.1.1
-
APPS.MSC_PHUB_PKG dependencies on FND_GLOBAL
12.1.1
-
PACKAGE BODY: APPS.MSC_PHUB_PKG
12.1.1
-
APPS.FII_EA_CUMUL_EXP_TREND_PKG dependencies on FII_EA_UTIL_PKG
12.1.1
-
APPS.IMC_REPORTS_SUMMARY_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IMC_REPORTS_SUMMARY_PKG dependencies on HZ_PARTIES
12.2.2
-
APPS.IMC_REPORTS_SUMMARY_PKG dependencies on IMC_REPORTS_TEMPINFO
12.2.2
-
APPS.IMC_REPORTS_SUMMARY_PKG dependencies on IMC_REPORTS_TEMPINFO
12.1.1
-
APPS.FII_GL_CUMUL_REV_TREND_PKG dependencies on FII_GL_UTIL_PKG
12.1.1
-
eTRM - MSC Tables and Views
12.2.2
description: This table contains the mapping between user-defined zone and included regions ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2