Search Results fa_deprn_periods
Overview
The FA_DEPRN_PERIODS table is a core data structure within the Oracle E-Business Suite (EBS) Fixed Assets module (OFA). It serves as the master repository for all depreciation periods defined for each asset book. Its primary role is to establish the chronological framework for all asset-related transactions, including depreciation runs, additions, retirements, and adjustments. The table maintains a unique sequence of accounting periods for each book, ensuring financial integrity and auditability by tracking the period status (e.g., OPEN, CLOSED, FUTURE) and linking transactional batches to the General Ledger (GL).
Key Information Stored
The table's structure is centered on uniquely identifying a period within a specific asset book and recording its state. The primary key is a composite of BOOK_TYPE_CODE and PERIOD_COUNTER, where the PERIOD_COUNTER is a sequentially increasing integer that defines the order of periods. An alternate unique key uses BOOK_TYPE_CODE, FISCAL_YEAR, and PERIOD_NUM for fiscal year reporting alignment. Critical columns include PERIOD_NAME, CALENDAR_PERIOD_OPEN_DATE, CALENDAR_PERIOD_CLOSE_DATE, and DEPRECIATION_BATCH_ID. A suite of batch ID columns (e.g., ADDITION_BATCH_ID, RETIREMENT_BATCH_ID, REVAL_BATCH_ID) establishes foreign key relationships to the GL_JE_BATCHES table, creating a critical audit trail from asset transactions to their corresponding journal entries in the General Ledger.
Common Use Cases and Queries
This table is essential for period control, reporting, and transaction analysis. Common operational queries involve identifying open periods for transaction entry, validating period status before running depreciation, and reconciling asset activity to the GL. A typical reporting query retrieves period details for a specific book to analyze the timing of transactions.
- Sample Query: Find Open Periods for a Book
SELECT period_name, period_counter, calendar_period_open_date
FROM fa_deprn_periods
WHERE book_type_code = 'CORP'
AND period_close_date IS NULL
ORDER BY period_counter; - Sample Query: Link Asset Transactions to GL Batches
SELECT fdp.period_name, fdp.depreciation_batch_id, gjb.name batch_name, gjb.status batch_status
FROM fa_deprn_periods fdp, gl_je_batches gjb
WHERE fdp.book_type_code = 'CORP'
AND fdp.depreciation_batch_id = gjb.je_batch_id
AND fdp.fiscal_year = 2024;
Related Objects
FA_DEPRN_PERIODS has extensive relationships, acting as a central hub for transactional integrity. Its primary foreign key relationship is with FA_BOOK_CONTROLS on BOOK_TYPE_CODE. Crucially, it is referenced as a parent table by numerous transactional and summary tables, using its composite primary key (BOOK_TYPE_CODE, PERIOD_COUNTER). Key documented relationships include:
- FA_ADJUSTMENTS: Referenced for the period an adjustment was created (PERIOD_COUNTER_CREATED) and the period it was adjusted (PERIOD_COUNTER_ADJUSTED).
- FA_BOOKS: Referenced for key asset lifecycle dates (PERIOD_COUNTER_FULLY_RESERVED, PERIOD_COUNTER_FULLY_RETIRED, PERIOD_COUNTER_CAPITALIZED).
- GL_JE_BATCHES: Over a dozen foreign keys (e.g., DEPRECIATION_BATCH_ID, ADDITION_BATCH_ID, RETIREMENT_BATCH_ID) link every major asset transaction batch to its corresponding GL journal batch.
- Self-Referential: A foreign key on (BOOK_TYPE_CODE, PERIOD_COUNTER) points back to the same table, potentially for hierarchical period structures.
-
Table: FA_DEPRN_PERIODS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_PERIODS, object_name:FA_DEPRN_PERIODS, status:VALID, product: OFA - Assets , description: Information about each depreciation period , implementation_dba_data: FA.FA_DEPRN_PERIODS ,
-
Table: FA_DEPRN_PERIODS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_PERIODS, object_name:FA_DEPRN_PERIODS, status:VALID, product: OFA - Assets , description: Information about each depreciation period , implementation_dba_data: FA.FA_DEPRN_PERIODS ,
-
Table: FA_BOOKS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOKS, object_name:FA_BOOKS, status:VALID, product: OFA - Assets , description: Financial information of each asset , implementation_dba_data: FA.FA_BOOKS ,
-
Table: FA_BOOKS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOKS, object_name:FA_BOOKS, status:VALID, product: OFA - Assets , description: Financial information of each asset , implementation_dba_data: FA.FA_BOOKS ,
-
View: FAFV_ASSET_BKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ASSET_BKS, object_name:FAFV_ASSET_BKS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ASSET_BKS ,
-
View: FAFV_ASSET_BKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ASSET_BKS, object_name:FAFV_ASSET_BKS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ASSET_BKS ,
-
Table: FA_MC_CONVERSION_HISTORY
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_CONVERSION_HISTORY, object_name:FA_MC_CONVERSION_HISTORY, status:VALID, product: OFA - Assets , description: Table to store the conversion history of primary to reporting books , implementation_dba_data: FA.FA_MC_CONVERSION_HISTORY ,
-
Table: FA_MC_CONVERSION_HISTORY
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_CONVERSION_HISTORY, object_name:FA_MC_CONVERSION_HISTORY, status:VALID, product: OFA - Assets , description: Table to store the conversion history of primary to reporting books , implementation_dba_data: FA.FA_MC_CONVERSION_HISTORY ,
-
Table: FA_BOOK_CONTROLS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOK_CONTROLS, object_name:FA_BOOK_CONTROLS, status:VALID, product: OFA - Assets , description: Control information that affects all assets in a depreciation book , implementation_dba_data: FA.FA_BOOK_CONTROLS ,
-
Table: FA_BOOK_CONTROLS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOK_CONTROLS, object_name:FA_BOOK_CONTROLS, status:VALID, product: OFA - Assets , description: Control information that affects all assets in a depreciation book , implementation_dba_data: FA.FA_BOOK_CONTROLS ,
-
Table: FA_MC_ADJUSTMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_ADJUSTMENTS, object_name:FA_MC_ADJUSTMENTS, status:VALID, product: OFA - Assets , description: Stores information to create adjustment journal entries in the reporting currency , implementation_dba_data: FA.FA_MC_ADJUSTMENTS ,
-
Table: FA_ADJUSTMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ADJUSTMENTS, object_name:FA_ADJUSTMENTS, status:VALID, product: OFA - Assets , description: Information used by the posting program to generate journal entry lines in the general ledger , implementation_dba_data: FA.FA_ADJUSTMENTS ,
-
Table: FA_MC_ADJUSTMENTS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_ADJUSTMENTS, object_name:FA_MC_ADJUSTMENTS, status:VALID, product: OFA - Assets , description: Stores information to create adjustment journal entries in the reporting currency , implementation_dba_data: FA.FA_MC_ADJUSTMENTS ,
-
Table: FA_ADJUSTMENTS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ADJUSTMENTS, object_name:FA_ADJUSTMENTS, status:VALID, product: OFA - Assets , description: Information used by the posting program to generate journal entry lines in the general ledger , implementation_dba_data: FA.FA_ADJUSTMENTS ,
-
View: FA_DEFERRED_DEPRN_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEFERRED_DEPRN_EVENTS_V, object_name:FA_DEFERRED_DEPRN_EVENTS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEFERRED_DEPRN_EVENTS_V ,
-
View: FA_DEFERRED_DEPRN_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEFERRED_DEPRN_EVENTS_V, object_name:FA_DEFERRED_DEPRN_EVENTS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEFERRED_DEPRN_EVENTS_V ,
-
Table: FA_DEFERRED_DEPRN
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEFERRED_DEPRN, object_name:FA_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line , implementation_dba_data: FA.FA_DEFERRED_DEPRN ,
-
Table: FA_DEFERRED_DEPRN
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEFERRED_DEPRN, object_name:FA_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line , implementation_dba_data: FA.FA_DEFERRED_DEPRN ,
-
View: FAFV_TRANS_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_TRANS_LINES, object_name:FAFV_TRANS_LINES, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FAFV_TRANS_LINES ,
-
View: FA_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANSACTIONS_V, object_name:FA_TRANSACTIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_TRANSACTIONS_V ,
-
View: FA_SORP_CAT_LINK_REVAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SORP_CAT_LINK_REVAL_V, object_name:FA_SORP_CAT_LINK_REVAL_V, status:VALID, product: OFA - Assets , description: This view is used to retrieve impairments and related information selected by user for linking while performing revaluation at asset level. In addition it retrieves the eligible impairment amount and avialble revaluation reserve amount avil , implementation_dba_data: APPS.FA_SORP_CAT_LINK_REVAL_V ,
-
View: FAFV_TRANS_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_TRANS_LINES, object_name:FAFV_TRANS_LINES, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FAFV_TRANS_LINES ,
-
View: FA_SORP_ASSET_LINK_REVAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SORP_ASSET_LINK_REVAL_V, object_name:FA_SORP_ASSET_LINK_REVAL_V, status:VALID, product: OFA - Assets , description: This view is used to retrieve impairments and related information selected by user for linking while performing revaluation at category level. In addition it retrieves the eligible impairment amount and avialble revaluation reserve amount a , implementation_dba_data: APPS.FA_SORP_ASSET_LINK_REVAL_V ,
-
View: FA_FINANCIAL_INQUIRY_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FINANCIAL_INQUIRY_COST_V, object_name:FA_FINANCIAL_INQUIRY_COST_V, status:VALID, product: OFA - Assets , description: Financial Cost History , implementation_dba_data: APPS.FA_FINANCIAL_INQUIRY_COST_V ,
-
Table: FA_JOURNAL_ENTRIES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_JOURNAL_ENTRIES, object_name:FA_JOURNAL_ENTRIES, status:VALID, product: OFA - Assets , description: Journal Entry Information , implementation_dba_data: FA.FA_JOURNAL_ENTRIES ,
-
Table: FA_JOURNAL_ENTRIES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_JOURNAL_ENTRIES, object_name:FA_JOURNAL_ENTRIES, status:VALID, product: OFA - Assets , description: Journal Entry Information , implementation_dba_data: FA.FA_JOURNAL_ENTRIES ,
-
View: FA_DEPRN_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_WEB_V, object_name:FA_DEPRN_WEB_V, status:VALID, product: OFA - Assets , description: Depreciation information for an asset in a given depreciation book , implementation_dba_data: APPS.FA_DEPRN_WEB_V ,
-
View: FA_DEPRN_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_WEB_V, object_name:FA_DEPRN_WEB_V, status:VALID, product: OFA - Assets , description: Depreciation information for an asset in a given depreciation book , implementation_dba_data: APPS.FA_DEPRN_WEB_V ,
-
View: FABV_ACCT_PRDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ACCT_PRDS, object_name:FABV_ACCT_PRDS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ACCT_PRDS ,
-
View: FABV_ACCT_PRDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ACCT_PRDS, object_name:FABV_ACCT_PRDS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ACCT_PRDS ,
-
Table: FA_DEPRN_SUMMARY
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_SUMMARY, object_name:FA_DEPRN_SUMMARY, status:VALID, product: OFA - Assets , description: Depreciation information at the asset level , implementation_dba_data: FA.FA_DEPRN_SUMMARY ,
-
View: FA_EXTENDED_DEPRN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_EXTENDED_DEPRN_V, object_name:FA_EXTENDED_DEPRN_V, status:VALID, product: OFA - Assets , description: FA_EXTENDED_DEPRN_V view is used for extended depreciation. , implementation_dba_data: APPS.FA_EXTENDED_DEPRN_V ,
-
Table: FA_DEPRN_SUMMARY
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_SUMMARY, object_name:FA_DEPRN_SUMMARY, status:VALID, product: OFA - Assets , description: Depreciation information at the asset level , implementation_dba_data: FA.FA_DEPRN_SUMMARY ,
-
View: FAFV_ACCT_PRDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ACCT_PRDS, object_name:FAFV_ACCT_PRDS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ACCT_PRDS ,
-
View: FAFV_ACCT_PRDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ACCT_PRDS, object_name:FAFV_ACCT_PRDS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ACCT_PRDS ,
-
Table: FA_MC_CONVERSION_RATES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_CONVERSION_RATES, object_name:FA_MC_CONVERSION_RATES, status:VALID, product: OFA - Assets , description: Table to store the exchange rate information to convert assets from primary to reporting book , implementation_dba_data: FA.FA_MC_CONVERSION_RATES ,
-
View: FA_DEPRN_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_EVENTS_V, object_name:FA_DEPRN_EVENTS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEPRN_EVENTS_V ,
-
View: FA_DEPRN_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V, object_name:FA_DEPRN_GROUPS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V ,
-
Table: FA_MC_CONVERSION_RATES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_CONVERSION_RATES, object_name:FA_MC_CONVERSION_RATES, status:VALID, product: OFA - Assets , description: Table to store the exchange rate information to convert assets from primary to reporting book , implementation_dba_data: FA.FA_MC_CONVERSION_RATES ,
-
View: FA_GROUP_COST_INQUIRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_GROUP_COST_INQUIRY_V, object_name:FA_GROUP_COST_INQUIRY_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_GROUP_COST_INQUIRY_V ,
-
View: FA_GROUP_COST_INQUIRY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_GROUP_COST_INQUIRY_V, object_name:FA_GROUP_COST_INQUIRY_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_GROUP_COST_INQUIRY_V ,
-
View: FA_DEPRN_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V, object_name:FA_DEPRN_GROUPS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V ,
-
View: FA_DEPRN_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_EVENTS_V, object_name:FA_DEPRN_EVENTS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEPRN_EVENTS_V ,
-
View: FA_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANSACTIONS_V, object_name:FA_TRANSACTIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_TRANSACTIONS_V ,
-
View: FA_DEPRN_GROUPS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V1, object_name:FA_DEPRN_GROUPS_V1, status:VALID, product: OFA - Assets , description: Adds unplanned depreciation adjustments to fa_deprn_groups_v , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V1 ,
-
View: FA_DEPRN_GROUPS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V1, object_name:FA_DEPRN_GROUPS_V1, status:VALID, product: OFA - Assets , description: Adds unplanned depreciation adjustments to fa_deprn_groups_v , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V1 ,
-
View: FA_FIN_INQRY_DEPRN_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FIN_INQRY_DEPRN_WEB_V, object_name:FA_FIN_INQRY_DEPRN_WEB_V, status:VALID, product: OFA - Assets , description: Depreciation history information , implementation_dba_data: APPS.FA_FIN_INQRY_DEPRN_WEB_V ,
-
View: FA_FINANCIAL_INQUIRY_DEPRN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FINANCIAL_INQUIRY_DEPRN_V, object_name:FA_FINANCIAL_INQUIRY_DEPRN_V, status:VALID, product: OFA - Assets , description: Depreciation history information , implementation_dba_data: APPS.FA_FINANCIAL_INQUIRY_DEPRN_V ,
-
View: FA_RESERVE_TRANSFERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_RESERVE_TRANSFERS_V, object_name:FA_RESERVE_TRANSFERS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_RESERVE_TRANSFERS_V ,
-
View: FA_FINANCIAL_INQUIRY_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FINANCIAL_INQUIRY_COST_V, object_name:FA_FINANCIAL_INQUIRY_COST_V, status:VALID, product: OFA - Assets , description: Financial Cost History , implementation_dba_data: APPS.FA_FINANCIAL_INQUIRY_COST_V ,