Search Results allow_reval_flag
Overview
APPS.OKX_ASST_BK_CONTROLS_V is a reporting view in Oracle E-Business Suite that exposes the asset book control information stored in the Fixed Assets (FA) module. Despite the OKX (Oracle Contracts) naming prefix, the view is defined entirely over the FA_BOOK_CONTROLS table, which is the definitive repository for depreciation book configuration within Oracle Assets. The view presents one row per asset book and is primarily intended to support reporting, integration, and data-mapping scenarios in which book-level controls must be surfaced through a stable, denormalized interface. It is available in both EBS 12.1.1 and 12.2.2, and the documented metadata for 12.2.2 confirms the same SELECT structure.
The view includes the column FULLY_RESERVED_FLAG, which is the field most frequently sought by users. This flag indicates whether a book is designated to hold fully reserved assets, a control that affects how Oracle Assets treats assets whose net book value has reached their salvage value.
Underlying Base Objects
The view is defined over a single documented base object: FA_BOOK_CONTROLS (referenced through a synonym). No joins, unions, or aggregations are applied; the view is a straightforward projection that renames and, in a few cases, transforms columns from the underlying table. Because it reads directly from FA_BOOK_CONTROLS, data returned by the view reflects the live book configuration at query time and carries no separate persistence of its own. The relationship is strictly one-to-one: each FA_BOOK_CONTROLS row maps to exactly one view row.
Key Columns
- BOOK_TYPE_CODE / ID1 — The unique identifier of the asset book, exposed under both the ID1 alias and the original column name.
- BOOK_TYPE_NAME — The descriptive name of the book, presented as DESCRIPTION.
- SET_OF_BOOKS_ID — The general ledger set of books associated with the asset book.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Mapped from INITIAL_DATE and DATE_INEFFECTIVE, defining the active window of the book.
- STATUS — A derived column computed with a DECODE over SYSDATE against the initial and ineffective dates. Returns 'I' for inactive and 'A' for active.
- FULLY_RESERVED_FLAG — Indicates whether the book permits or targets fully reserved assets.
- AMORTIZE_FLAG — Controls whether amortization is applied within the book.
- DEPRN_CALENDAR — The depreciation calendar assigned to the book.
- BOOK_CLASS — Classifies the book (for example, corporate or tax).
- MASS_COPY_SOURCE_BOOK — The source book used for mass copy operations.
- LAST_DEPRN_RUN_DATE — The date of the most recent depreciation run.
- ALLOW_MASS_CHANGES, ALLOW_MASS_COPY, ALLOW_PURGE_FLAG, ALLOW_REVAL_FLAG — Boolean controls governing permitted book-level operations.
- PRIMARY_UOM_CODE — Exposed as NULL in the view definition.
Common Use Cases and Queries
The view is commonly used to list active books, confirm book-control settings during implementations, and drive integrations that require book metadata. A typical query to inspect fully reserved books is:
SELECT book_type_code, name, status, fully_reserved_flag, deprn_calendar FROM apps.okx_asst_bk_controls_v WHERE fully_reserved_flag = 'Y';
To list only currently active books:
SELECT book_type_code, name, set_of_books_id, last_deprn_run_date FROM apps.okx_asst_bk_controls_v WHERE status = 'A' ORDER BY book_type_code;
Because the view is a thin projection of FA_BOOK_CONTROLS, it should be treated as read-only reference data; modifications must be performed through the Fixed Assets application or directly against the base table under controlled conditions.
-
VIEW: APPS.OKX_ASST_BK_CONTROLS_V
12.1.1
-
View: OKX_ASST_BK_CONTROLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ASST_BK_CONTROLS_V, object_name:OKX_ASST_BK_CONTROLS_V, status:VALID, product: OKX - Contracts Integration , description: Contains control information that is applicable to all assets in a depreciation book. , implementation_dba_data: APPS.OKX_ASST_BK_CONTROLS_V ,
-
VIEW: APPS.OKX_ASST_BK_CONTROLS_V
12.2.2
-
View: OKX_ASST_BK_CONTROLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ASST_BK_CONTROLS_V, object_name:OKX_ASST_BK_CONTROLS_V, status:VALID, product: OKX - Contracts Integration , description: Contains control information that is applicable to all assets in a depreciation book. , implementation_dba_data: APPS.OKX_ASST_BK_CONTROLS_V ,
-
VIEW: APPS.FABV_BOOKS
12.1.1
-
VIEW: FA.FA_BOOK_CONTROLS_HISTORY#
12.2.2
-
VIEW: APPS.FA_BOOKS_V
12.1.1
-
VIEW: APPS.FA_BOOKS_V
12.2.2
-
View: FABV_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_BOOKS, object_name:FABV_BOOKS, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FABV_BOOKS ,
-
View: FABV_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_BOOKS, object_name:FABV_BOOKS, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FABV_BOOKS ,
-
View: FA_BOOKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOKS_V, object_name:FA_BOOKS_V, status:VALID, product: OFA - Assets , description: Selects active financial information for an asset in a given book , implementation_dba_data: APPS.FA_BOOKS_V ,
-
VIEW: APPS.FABV_BOOKS
12.2.2
-
VIEW: FA.FA_BOOK_CONTROLS#
12.2.2
-
View: FA_BOOKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOKS_V, object_name:FA_BOOKS_V, status:VALID, product: OFA - Assets , description: Selects active financial information for an asset in a given book , implementation_dba_data: APPS.FA_BOOKS_V ,
-
VIEW: APPS.FABV_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_BOOKS, object_name:FABV_BOOKS, status:VALID,
-
VIEW: APPS.FAFV_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_BOOKS, object_name:FAFV_BOOKS, status:VALID,
-
VIEW: APPS.FA_BOOKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOKS_V, object_name:FA_BOOKS_V, status:VALID,
-
VIEW: APPS.OKX_ASST_BK_CONTROLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ASST_BK_CONTROLS_V, object_name:OKX_ASST_BK_CONTROLS_V, status:VALID,
-
VIEW: APPS.OKX_ASST_BK_CONTROLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ASST_BK_CONTROLS_V, object_name:OKX_ASST_BK_CONTROLS_V, status:VALID,
-
View: FAFV_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_BOOKS, object_name:FAFV_BOOKS, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FAFV_BOOKS ,
-
View: FAFV_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_BOOKS, object_name:FAFV_BOOKS, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FAFV_BOOKS ,
-
VIEW: FA.FA_BOOK_CONTROLS_HISTORY#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_BOOK_CONTROLS_HISTORY#, status:VALID,
-
TABLE: FA.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,
-
TABLE: FA.FA_BOOK_CONTROLS_HISTORY
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOK_CONTROLS_HISTORY, object_name:FA_BOOK_CONTROLS_HISTORY, status:VALID,
-
View: FA_BOOK_CONTROLS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOK_CONTROLS_MRC_V, object_name:FA_BOOK_CONTROLS_MRC_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_BOOK_CONTROLS_MRC_V ,
-
APPS.FA_BOOK_CONTROLS_PKG SQL Statements
12.1.1
-
VIEW: FA.FA_BOOK_CONTROLS#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_BOOK_CONTROLS#, status:VALID,
-
VIEW: APPS.FA_BOOK_CONTROLS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOK_CONTROLS_MRC_V, object_name:FA_BOOK_CONTROLS_MRC_V, status:VALID,
-
View: FA_BOOK_CONTROLS_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOK_CONTROLS_MRC_V, object_name:FA_BOOK_CONTROLS_MRC_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_BOOK_CONTROLS_MRC_V ,
-
VIEW: APPS.FAFV_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_BOOKS, object_name:FAFV_BOOKS, status:VALID,
-
VIEW: APPS.FA_BOOKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOKS_V, object_name:FA_BOOKS_V, status:VALID,
-
VIEW: APPS.FABV_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_BOOKS, object_name:FABV_BOOKS, status:VALID,
-
APPS.FA_BOOK_CONTROLS_PKG SQL Statements
12.2.2
-
APPS.FA_CACHE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FA_BOOK_CONTROLS_PKG
12.1.1
-
VIEW: APPS.FA_BOOK_CONTROLS_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_BOOK_CONTROLS_MRC_V, object_name:FA_BOOK_CONTROLS_MRC_V, status:VALID,
-
TABLE: FA.FA_BOOK_CONTROLS_HISTORY
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOK_CONTROLS_HISTORY, object_name:FA_BOOK_CONTROLS_HISTORY, status:VALID,
-
PACKAGE BODY: APPS.FA_BOOK_CONTROLS_PKG
12.2.2
-
TABLE: FA.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,
-
APPS.FA_CACHE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FA_CACHE_PKG
12.1.1
-
PACKAGE BODY: APPS.FA_GENACCTS_PKG
12.1.1
-
PACKAGE BODY: APPS.FA_GENACCTS_PKG
12.2.2
-
PACKAGE BODY: APPS.FA_CACHE_PKG
12.2.2
-
eTRM - OFA Tables and Views
12.1.1
-
eTRM - OFA Tables and Views
12.2.2
-
eTRM - OKX Tables and Views
12.1.1
-
eTRM - OKX Tables and Views
12.2.2