Search Results seq_id
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.1.1
product: FII - Financial Intelligence , 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_FMNTH_EXP_SUM_V
12.1.1
product: FII - Financial Intelligence , implementation_dba_data: Not implemented in this database ,
-
View: FII_PA_BUDGET_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PA_BUDGET_F_FCV, object_name:FII_PA_BUDGET_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FII_PA_BUDGET_F_FCV is the EDW Project Budget fact source view , implementation_dba_data: APPS.FII_PA_BUDGET_F_FCV ,
-
View: FII_PA_COST_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PA_COST_F_FCV, object_name:FII_PA_COST_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FII_PA_COST_F_FCV is the EDW Project Cost fact source view , implementation_dba_data: APPS.FII_PA_COST_F_FCV ,
-
View: FII_PA_REVENUE_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PA_REVENUE_F_FCV, object_name:FII_PA_REVENUE_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FII_PA_REVENUE_F_FCV is the EDW Project Revenue fact source view , implementation_dba_data: APPS.FII_PA_REVENUE_F_FCV ,
-
View: FII_AP_INV_ON_HOLD_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_INV_ON_HOLD_FCV, object_name:FII_AP_INV_ON_HOLD_FCV, status:VALID, product: FII - Financial Intelligence , description: FII_AP_INV_ON_HOLD_FCV is the collection view for FII_AP_INV_ON_HOLD_F fact , implementation_dba_data: APPS.FII_AP_INV_ON_HOLD_FCV ,
-
View: FIIBV_PA_BUDGET_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PA_BUDGET_F_FCV, object_name:FIIBV_PA_BUDGET_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_PA_BUDGET_F_FCV is the EDW Project Budget fact base view , implementation_dba_data: APPS.FIIBV_PA_BUDGET_F_FCV ,
-
View: FII_AP_HOLD_DATA_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_HOLD_DATA_FCV, object_name:FII_AP_HOLD_DATA_FCV, status:VALID, product: FII - Financial Intelligence , description: FII_AP_HOLD_DATA_FCV is the collection view for FII_AP_HOLD_DATA_F fact , implementation_dba_data: APPS.FII_AP_HOLD_DATA_FCV ,
-
View: FIIBV_PA_REVENUE_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PA_REVENUE_F_FCV, object_name:FIIBV_PA_REVENUE_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_PA_REVENUE_F_FCV is the EDW Project Revenue fact base view , implementation_dba_data: APPS.FIIBV_PA_REVENUE_F_FCV ,
-
View: FIIBV_PA_COST_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PA_COST_F_FCV, object_name:FIIBV_PA_COST_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_PA_COST_F_FCV is the EDW Project Cost fact base view , implementation_dba_data: APPS.FIIBV_PA_COST_F_FCV ,
-
View: FII_AP_SCH_PAYMTS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_SCH_PAYMTS_FCV, object_name:FII_AP_SCH_PAYMTS_FCV, status:VALID, product: FII - Financial Intelligence , description: None. Internal Table. , implementation_dba_data: APPS.FII_AP_SCH_PAYMTS_FCV ,
-
View: FII_AP_INV_PAYMTS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_INV_PAYMTS_FCV, object_name:FII_AP_INV_PAYMTS_FCV, status:VALID, product: FII - Financial Intelligence , description: Internal view used for warehouse data extraction. , implementation_dba_data: APPS.FII_AP_INV_PAYMTS_FCV ,
-
View: FII_AR_PROD_REV4_V_WH
12.1.1
product: FII - Financial Intelligence , description: FII_AR_PROD_REV4_V_WH is an internal view used to support Product Revenue Portlet , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_PROD_REV4_V
12.1.1
product: FII - Financial Intelligence , description: FII_AR_PROD_REV4_V is an internal view used to support Product Revenue Portlet , implementation_dba_data: Not implemented in this database ,
-
View: FII_AR_TRX_DIST_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_TRX_DIST_FCV, object_name:FII_AR_TRX_DIST_FCV, status:VALID, product: FII - Financial Intelligence , description: Internal view used for warehouse data extraction , implementation_dba_data: APPS.FII_AR_TRX_DIST_FCV ,
-
View: FII_AP_INV_LINES_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_INV_LINES_FCV, object_name:FII_AP_INV_LINES_FCV, status:VALID, product: FII - Financial Intelligence , description: Internal view used for warehouse data extraction. , implementation_dba_data: APPS.FII_AP_INV_LINES_FCV ,
-
View: FII_AR_E_REVENUE_FCV
12.1.1
product: FII - Financial Intelligence , description: FII_AR_E_REVENUE_FCV is the collection view for FII_AR_E_REVENUE_F fact , implementation_dba_data: Not implemented in this database ,
-
View: FIIBV_AP_INV_PAYMTS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_INV_PAYMTS_FCV, object_name:FIIBV_AP_INV_PAYMTS_FCV, status:VALID, product: FII - Financial Intelligence , description: None. Internal Table. , implementation_dba_data: APPS.FIIBV_AP_INV_PAYMTS_FCV ,
-
View: FIIBV_AP_HOLD_DATA_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_HOLD_DATA_FCV, object_name:FIIBV_AP_HOLD_DATA_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_AP_HOLD_DATA_FCV is the base view for FII_AP_HOLD_DATA_F fact , implementation_dba_data: APPS.FIIBV_AP_HOLD_DATA_FCV ,
-
View: FIIBV_AP_INV_ON_HOLD_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_INV_ON_HOLD_FCV, object_name:FIIBV_AP_INV_ON_HOLD_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_AP_INV_ON_HOLD_FCV is the base view for FIIBV_AP_INV_ON_HOLD_F fact , implementation_dba_data: APPS.FIIBV_AP_INV_ON_HOLD_FCV ,
-
View: FIIBV_AP_SCH_PAYMTS_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_SCH_PAYMTS_FCV, object_name:FIIBV_AP_SCH_PAYMTS_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_AP_SCH_PAYMTS_FCV is the base view for FII_AP_SCH_PAYMTS_F fact , implementation_dba_data: APPS.FIIBV_AP_SCH_PAYMTS_FCV ,
-
View: FIIBV_AP_INV_LINES_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_INV_LINES_FCV, object_name:FIIBV_AP_INV_LINES_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_AP_INV_LINES_FCV is the base view for FII_AP_INV_LINES_F fact , implementation_dba_data: APPS.FIIBV_AP_INV_LINES_FCV ,