Search Results jai_fa_ast_years
Overview
JAI_FA_AST_YEARS is a reference table owned by the JA schema within the Asia/Pacific Localizations product family of Oracle E-Business Suite. Its documented purpose is to store the year start date and year end date for periods against which fixed asset and related period rates are defined. In practice, the table acts as a lightweight calendar-year dimension that localizations and downstream reporting objects use to bucket financial, inventory, and spend data by fiscal or calendar year.
From a Data Vault modeling perspective, the metadata classifies this object as standalone, meaning the heuristics mined from the foreign-key structure do not identify it as either a hub or a link. Nonetheless, the presence of a surrogate primary key (YEAR_ID) and two descriptive business attributes (YEAR_START and YEAR_END) makes JAI_FA_AST_YEARS a natural candidate for a small reference or hub-style dimension, with the date ranges functioning as the descriptive satellite attributes. Its role is largely supporting: it supplies a stable YEAR_ID that many localized materialized views and staging tables reference for time-based aggregation.
Key Information Stored
The table contains nine documented columns, and the most important of these are described below. The surrogate primary key is YEAR_ID, enforced through the unique index JAI_FA_AST_YEARS_PK. A second unique index, JAI_FA_AST_YEARS_UK1, covers YEAR_START and YEAR_END, designating these two columns as the business-key candidates that uniquely identify a year by its boundaries.
- YEAR_ID — Surrogate primary key; the value referenced by all downstream foreign keys.
- YEAR_START — Start date of the year; part of the business-key unique index.
- YEAR_END — End date of the year; part of the business-key unique index.
- CREATED_BY, CREATION_DATE — Standard Oracle audit columns recording row creation.
- LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard audit columns recording the most recent modification.
- LAST_UPDATE_LOGIN — Login identifier associated with the last update.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the Oracle Applications framework.
Common Use Cases and Queries
The primary use case is time bucketing. Because YEAR_ID is a compact surrogate, it is widely joined into reporting and materialized-view queries to resolve a year's boundaries without repeating date literals. A typical lookup pattern is:
SELECT year_id, year_start, year_end FROM ja.jai_fa_ast_years WHERE :p_date BETWEEN year_start AND year_end;
Reporting scenarios include fixed-asset period-rate reporting for APAC localizations, fiscal-year roll-ups in inventory valuation summaries, and spend-analysis staging tables that need a governed year key. Analysts commonly join JAI_FA_AST_YEARS to a fact or materialized view on YEAR_ID, for example:
SELECT v.year_id, y.year_start, y.year_end, SUM(v.amount)
FROM opi_inv_val_sum_mv v,
ja.jai_fa_ast_years y
WHERE v.year_id = y.year_id
GROUP BY v.year_id, y.year_start, y.year_end
ORDER BY y.year_start;
Because the table is small and changes infrequently, it is well suited to being cached or used as a lookup dimension in BI Publisher reports and Discoverer workbooks that must present data by year.
Related Objects
A large number of staging tables, materialized views, and dimensions reference JAI_FA_AST_YEARS through the YEAR_ID column. The most significant are listed below with their join columns.
- ISC_DR_BKLG_01_MV — references YEAR_ID for backlog reporting.
- FII_TIME_YEAR and FII_TIME_QTR — time dimensions keyed on YEAR_ID.
- FII_TOP_SPENDERS_STG — spend-analysis staging table joined on YEAR_ID.
- FII_GL_LOCAL_SNAP_F — GL local snapshot fact joined on YEAR_ID.
- OZF_FUNDS_UTILIZED_ALL_B — funds-utilization base table joined on YEAR_ID.
- OPI_INV_VAL_SUM_MV, OPI_INV_CCA_SUM_MV, OPI_COGS_001_MV — inventory valuation and cost-of-goods materialized views.
- ENI_DBI_INV_BASE_MV, ENI_DBI_CO_UNION_MV — DBI inventory base and company-union views.
- PJI_TIME_MV and PJI_TIME_DAY_MV — project time materialized views.
- MTH_YEAR_D — month/year reference table joined on YEAR_ID.
These relationships demonstrate that YEAR_ID is the operative integration point; any change to the year boundaries in JAI_FA_AST_YEARS propagates semantically to every dependent view that aggregates by year.
-
Table: JAI_FA_AST_YEARS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_FA_AST_YEARS, object_name:JAI_FA_AST_YEARS, status:VALID, product: JA - Asia/Pacific Localizations , description: Table stores the year startdate and the enddate. The period rates are defined. , implementation_dba_data: JA.JAI_FA_AST_YEARS ,
-
Table: JAI_FA_AST_YEARS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_FA_AST_YEARS, object_name:JAI_FA_AST_YEARS, status:VALID, product: JA - Asia/Pacific Localizations , description: Table stores the year startdate and the enddate. The period rates are defined. , implementation_dba_data: JA.JAI_FA_AST_YEARS ,
-
VIEW: JA.JAI_FA_AST_YEARS#
12.2.2
-
VIEW: JA.JAI_FA_AST_YEARS#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_FA_AST_YEARS#, status:VALID,
-
SYNONYM: APPS.JAI_FA_AST_YEARS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JAI_FA_AST_YEARS, status:VALID,
-
SYNONYM: APPS.JAI_FA_AST_YEARS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JAI_FA_AST_YEARS, status:VALID,
-
VIEW: APPS.JAI_FINYR_QUARTER_V
12.2.2
-
TABLE: JA.JAI_FA_AST_YEARS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_FA_AST_YEARS, object_name:JAI_FA_AST_YEARS, status:VALID,
-
TABLE: JA.JAI_FA_AST_YEARS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_FA_AST_YEARS, object_name:JAI_FA_AST_YEARS, status:VALID,
-
PACKAGE: APPS.JA_JAINYEDE_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JA_JAINYEDE_XMLP_PKG, status:VALID,
-
View: JAI_FINYR_QUARTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_FINYR_QUARTER_V, object_name:JAI_FINYR_QUARTER_V, status:VALID, product: JA - Asia/Pacific Localizations , description: View to provide values for the end date parameter for the fixed assets schedule report , implementation_dba_data: APPS.JAI_FINYR_QUARTER_V ,
-
PACKAGE: APPS.JA_JAINYEDE_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JA_JAINYEDE_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_JAINYEDE_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_JAINYEDE_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_JAINYEDE_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JA_JAINYEDE_XMLP_PKG, status:VALID,
-
VIEW: APPS.JAI_FINYR_QUARTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_FINYR_QUARTER_V, object_name:JAI_FINYR_QUARTER_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.JA_JAINYEDE_XMLP_PKG dependencies on JAI_FA_AST_YEARS
12.1.1
-
APPS.JA_JAINYEDE_XMLP_PKG dependencies on JAI_FA_AST_YEARS
12.1.1
-
APPS.JA_JAINYEDE_XMLP_PKG dependencies on JAI_FA_AST_YEARS
12.2.2
-
APPS.JA_JAINYEDE_XMLP_PKG dependencies on JAI_FA_AST_YEARS
12.2.2
-
APPS.JA_JAINYEDE_XMLP_PKG SQL Statements
12.2.2
-
APPS.JA_JAINYEDE_XMLP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JA_JAINYEDE_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.JA_JAINYEDE_XMLP_PKG
12.1.1
-
eTRM - JA Tables and Views
12.2.2
description: The 'JA_CN_VOUCHER_NUMBER' table stores the voucher number of GL journal lines. ,
-
eTRM - JA Tables and Views
12.1.1
description: The 'JA_CN_SYSTEM_PARAMETERS_ALL' table stores information defined by 'System Options' form, 'Electronic Accounting Book Export' program will get most data from data in the table. A legal entity can only have one record in the table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - JA Tables and Views
12.1.1
description: The 'JA_CN_SYSTEM_PARAMETERS_ALL' table stores information defined by 'System Options' form, 'Electronic Accounting Book Export' program will get most data from data in the table. A legal entity can only have one record in the table. ,
-
eTRM - JA Tables and Views
12.2.2
description: The 'JA_CN_VOUCHER_NUMBER' table stores the voucher number of GL journal lines. ,