Search Results time_id
Overview
The view APPS.FII_SRS_ALL_TIME_PERIODS_V is a reporting and integration construct within the Oracle E-Business Suite Financial Intelligence (FII) / Enterprise Performance Foundation data model. It presents a consolidated, human-readable list of time dimension members — periods, quarters, and years — together with a placeholder for the "N/A" literal. Its purpose is to provide a single, uniform source of time identifiers for Oracle SRS (Standard Reporting System) and other downstream reporting or extract processes that must reference time periods generically without knowing, in advance, whether a given value represents a period, a quarter, or a year.
The view is particularly relevant to users searching on the column name time_id, because that column is the generalized surrogate key that unifies identifiers originating from three separate time hierarchies. In Oracle EBS 12.1.1 and 12.2.2, this view is typically consumed by reporting tools, concurrent-program extracts, and integration loads that need a flat, de-normalized enumeration of every selectable time member, including the special "N/A" option used when no time dimension applies.
Underlying Base Objects
Although the documented ETRM metadata lists no base objects, the view text itself reveals its defining query. It is a UNION ALL-style (here implemented as UNION) composite over four sources:
FII_TIME_ENT_PERIOD— the enterprise period entity, contributing period-level records.FII_TIME_ENT_QTR— the enterprise quarter entity, contributing quarter-level records.FII_TIME_ENT_YEAR— the enterprise year entity, contributing year-level records.FND_LOOKUP_VALUES— the standard Oracle Applications lookup table, filtered toLOOKUP_TYPE = 'FII_LITERAL'andLOOKUP_CODE = 'N/A', supplying the single "not applicable" row.
The outer SELECT wraps this union and projects only four columns: NAME, TIME_ID, PERIOD_TYPE_ID, and PERIOD. Because each underlying entity uses a different primary-key column name (ENT_PERIOD_ID, ENT_QTR_ID, ENT_YEAR_ID), the union aliases them all to the common name TIME_ID.
Key Columns
NAME— The descriptive label of the time member (fromP.NAME,Q.NAME,Y.NAME, or the lookup meaning for the N/A row). This is the value typically displayed to end users.TIME_ID— The generalized surrogate key. For periods it holdsFII_TIME_ENT_PERIOD.ENT_PERIOD_ID; for quarters,ENT_QTR_ID; for years,ENT_YEAR_ID; and for the N/A literal, the constant-1.PERIOD_TYPE_ID— A discriminator indicating the hierarchy level:32for period,64for quarter,128for year, and-1for the N/A literal.PERIOD— A single-character type flag:'P','Q','Y', or'N/A', mirroringPERIOD_TYPE_ID.
The pairing of PERIOD_TYPE_ID and PERIOD allows callers to disambiguate TIME_ID values, since keys from different hierarchies could otherwise appear to collide.
Common Use Cases and Queries
Typical usage includes populating time selectors in reporting parameters, validating time identifiers during extract loads, and joining generic time references back to the specific enterprise entities. A basic enumeration query is:
SELECT name, time_id, period_type_id, period
FROM apps.fii_srs_all_time_periods_v
ORDER BY period_type_id, name;
To isolate only quarter members:
SELECT time_id, name
FROM apps.fii_srs_all_time_periods_v
WHERE period_type_id = 64;
To locate a specific member by its identifier when the type is already known:
SELECT name, period
FROM apps.fii_srs_all_time_periods_v
WHERE time_id = :p_time_id
AND period_type_id = 32;
These patterns are representative of how the view bridges the FII enterprise time dimension and downstream SRS reporting requirements in Oracle EBS 12.1.1 and 12.2.2.
-
VIEW: APPS.FII_SRS_ALL_TIME_PERIODS_V
12.1.1
-
VIEW: APPS.BIX_DM_TIME_PARAM_V
12.1.1
-
View: FII_SRS_ALL_TIME_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_SRS_ALL_TIME_PERIODS_V, object_name:FII_SRS_ALL_TIME_PERIODS_V, status:VALID, product: FII - Financial Intelligence , description: View that supports time period LOV in FII integrator. , implementation_dba_data: APPS.FII_SRS_ALL_TIME_PERIODS_V ,
-
MATERIALIZED VIEW: APPS.ENI_DBI_GL_BASE_SUM_MV
12.1.1
-
TABLE: APPS.ENI_DBI_PRC_SUM2_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ENI.ENI_DBI_PRC_SUM2_MV, object_name:ENI_DBI_PRC_SUM2_MV, status:VALID,
-
View: FII_SRS_ALL_TIME_PERIODS_V
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: View that supports time period LOV in FII integrator. , implementation_dba_data: Not implemented in this database ,
-
TABLE: APPS.ENI_DBI_GL_BASE_SUM_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ENI.ENI_DBI_GL_BASE_SUM_MV, object_name:ENI_DBI_GL_BASE_SUM_MV, status:VALID,
-
VIEW: PJI.PJI_FM_AGGR_DLY_RATES#
12.2.2
-
VIEW: OZF.OZF_DASHB_DAILY_KPI#
12.2.2
-
VIEW: OZF.OZF_BASELINE_SALES_MV#
12.2.2
-
APPS.PJI_PMV_PROFITABILITY_TREND SQL Statements
12.1.1
-
VIEW: HRI.HRI_TIME_RPT_STRUCT#
12.2.2
-
VIEW: PJI.PJI_TIME_CAL_RPT_STRUCT#
12.2.2
-
VIEW: HRI.HRI_TIME_STRUCTURES#
12.2.2
-
APPS.PJI_PMV_AVL SQL Statements
12.1.1
-
VIEW: PJI.PJI_TIME_RPT_STRUCT#
12.2.2
-
VIEW: OZF.OZF_ORDER_SALES_SUMRY_MV#
12.2.2
-
TABLE: APPS.ISC_WMS_001_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.ISC_WMS_001_MV, object_name:ISC_WMS_001_MV, status:VALID,
-
VIEW: APPS.OKI_SRM_022_V
12.1.1
-
MATERIALIZED VIEW: APPS.ENI_DBI_PRC_SUM2_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ENI_DBI_PRC_SUM2_MV, status:VALID,
-
VIEW: OZF.OZF_ORDER_SALES_SUMRY_MV_TEMP#
12.2.2
-
MATERIALIZED VIEW: APPS.ENI_DBI_GL_BASE_SUM_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ENI_DBI_GL_BASE_SUM_MV, status:VALID,
-
VIEW: OZF.OZF_INVENTORY_SUMMARY_MV_TEMP#
12.2.2
-
VIEW: OZF.OZF_BASELINE_SALES_MV_TEMP#
12.2.2
-
VIEW: OZF.OZF_INVENTORY_SUMMARY_MV#
12.2.2
-
VIEW: HRI.HRI_TIME_CAL_RPT_STRUCT#
12.2.2
-
VIEW: OZF.OZF_TIME_RPT_STRUCT#
12.2.2
-
VIEW: APPS.FII_GL_JE_SUMMARY_B_P_V
12.1.1
-
VIEW: APPS.FII_GL_JE_SUMMARY_B_S_V
12.1.1
-
TABLE: APPS.FII_GL_AGRT_SUM2_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.FII_GL_AGRT_SUM2_MV, object_name:FII_GL_AGRT_SUM2_MV, status:VALID,
-
VIEW: PJI.PJI_RM_AGGR_RES6#
12.2.2
-
APPS.OZF_REFRESH_VIEW_PVT SQL Statements
12.2.2
-
VIEW: PJI.PJI_RM_RES_WT_F#
12.2.2
-
TABLE: APPS.OPI_WMS_009_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.OPI_WMS_009_MV, object_name:OPI_WMS_009_MV, status:VALID,
-
TABLE: APPS.OPI_WMS_001_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.OPI_WMS_001_MV, object_name:OPI_WMS_001_MV, status:VALID,
-
APPS.PJI_PMV_UTIL SQL Statements
12.1.1
-
TABLE: APPS.ENI_DBI_GL_BASE_SUM_C_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ENI.ENI_DBI_GL_BASE_SUM_C_MV, object_name:ENI_DBI_GL_BASE_SUM_C_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.FII_AP_HLIA_I_MV
12.1.1
-
VIEW: APPS.OKI_SRM_025_V
12.1.1
-
TABLE: APPS.OPI_WMS_007_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.OPI_WMS_007_MV, object_name:OPI_WMS_007_MV, status:VALID,
-
VIEW: APPS.OKI_SRM_027_V
12.1.1
-
VIEW: APPS.OKI_SRM_026_V
12.1.1
-
APPS.PJI_PMV_BACKLOG SQL Statements
12.1.1
-
VIEW: PJI.PJI_AC_CUST_PJP0#
12.2.2
-
MATERIALIZED VIEW: APPS.OZF_INVENTORY_SUMMARY_MV
12.1.1
-
TABLE: APPS.ENI_DBI_GL_BASE_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:ENI.ENI_DBI_GL_BASE_MV, object_name:ENI_DBI_GL_BASE_MV, status:VALID,
-
TABLE: APPS.OPI_WMS_008_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.OPI_WMS_008_MV, object_name:OPI_WMS_008_MV, status:VALID,
-
TABLE: APPS.ISC_DBI_CFM_016_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.ISC_DBI_CFM_016_MV, object_name:ISC_DBI_CFM_016_MV, status:VALID,
-
TABLE: APPS.ISC_DBI_CFM_007_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.ISC_DBI_CFM_007_MV, object_name:ISC_DBI_CFM_007_MV, status:VALID,
-
TABLE: APPS.BIX_EMAIL_DETAILS_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.BIX_EMAIL_DETAILS_MV, object_name:BIX_EMAIL_DETAILS_MV, status:VALID,