Search Results fa_book_controls_sec
Overview
APPS.IGI_IAC_BOOK_CONTROLS_V is a reporting view in the Oracle E-Business Suite (EBS) Financials product family, owned by the APPS schema. It is documented in ETRM for both 12.1.1 and 12.2.2. The view combines the IAC (Intelligent Accounting Center / Global Accounting Engine-related asset configuration) book control attributes stored in IGI_IAC_BOOK_CONTROLS with the secured book definition records held in FA_BOOK_CONTROLS_SEC. Its principal function is to expose IAC book control setup information only for those depreciation books to which the querying responsibility or user has secured access, by enforcing an inner join between the two underlying objects on the book type code.
Because FA_BOOK_CONTROLS_SEC is the security-aware repository of depreciation book controls in Oracle Assets, restricting a IAC book control record through this join ensures that users querying or reporting through the view can only see book-level IAC configuration for books they are authorized to use. This makes the view suitable for Oracle Assets and subledger accounting reporting, extensions, and integrations where book-level IAC parameters must be surfaced alongside standard book security.
Underlying Base Objects
The view is defined over two referenced base objects, both exposed as synonyms in the APPS schema:
- IGI_IAC_BOOK_CONTROLS (SYNONYM) — the primary table storing IAC book control configuration, aliased as IBC in the view definition.
- FA_BOOK_CONTROLS_SEC (SYNONYM) — the Oracle Assets book controls security table, aliased as FBC.
The join condition is IBC.BOOK_TYPE_CODE = FBC.BOOK_TYPE_CODE. The view is therefore a single-table projection of IGI_IAC_BOOK_CONTROLS with an inner join to FA_BOOK_CONTROLS_SEC purely for access restriction. If a book type code exists in IGI_IAC_BOOK_CONTROLS but not in the security table, or if the security table does not grant access, the corresponding row is excluded from the view result. The view exposes the ROWID of IGI_IAC_BOOK_CONTROLS as the column ROW_ID, along with the stacked book type code and audit columns.
Key Columns
- ROW_ID — the ROWID of the IGI_IAC_BOOK_CONTROLS row, preserved for row-level identification.
- BOOK_TYPE_CODE — the depreciation book identifier; the join key shared with FA_BOOK_CONTROLS_SEC.
- GL_JE_SOURCE — the General Ledger journal source associated with IAC processing for the book.
- JE_IAC_DEPRN_CATEGORY — the journal category used for IAC depreciation entries.
- JE_IAC_REVAL_CATEGORY — the journal category used for IAC revaluation entries.
- JE_IAC_TXN_CATEGORY — the journal category used for IAC transaction entries.
- PERIOD_NUM_FOR_CATCHUP — the period number used for catch-up processing.
- ORG_ID — the operating unit / organization identifier for multi-org security.
- CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard EBS audit columns.
Common Use Cases and Queries
Typical uses include diagnosing IAC journal creation setup for a specific book, verifying which journal categories and GL source are configured, and building reports that respect book security. A simple retrieval by book type code:
SELECT book_type_code, gl_je_source, je_iac_deprn_category, je_iac_reval_category, je_iac_txn_category, period_num_for_catchup FROM apps.igi_iac_book_controls_v WHERE book_type_code = :book;SELECT book_type_code, gl_je_source FROM apps.igi_iac_book_controls_v ORDER BY book_type_code;SELECT v.book_type_code, v.gl_je_source, v.je_iac_txn_category, v.last_update_date FROM apps.igi_iac_book_controls_v v WHERE v.org_id = :org_id;
Because the view already restricts results through FA_BOOK_CONTROLS_SEC, queries issued from a secured responsibility automatically reflect only accessible books, avoiding the need to re-implement book security logic in custom reports and integrations.
-
VIEW: APPS.IGI_IAC_BOOK_CONTROLS_V
12.2.2
-
VIEW: APPS.IGI_IAC_BOOK_CONTROLS_V
12.1.1
-
VIEW: APPS.FA_ASSET_MAINT_VIEW
12.2.2
-
SYNONYM: APPS.FA_BOOK_CONTROLS_SEC
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FA_BOOK_CONTROLS_SEC, status:VALID,
-
APPS.JA_CN_FA_BI_EXPORT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JA_CN_FA_BI_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_BI_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_MM_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_MM_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.FARX_INV_MISS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FARX_INV_MISS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_RAI_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_RAI_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.FARX_INV_MISS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FARX_INV_MISS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_ADIRA_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_ADIRA_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_PS_FA_MI_EXP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_PS_FA_MI_EXP_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_PS_FA_AC_EXP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_PS_FA_AC_EXP_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_MI_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_MI_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_ADI_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_ADI_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_PS_FA_BI_EXP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_PS_FA_BI_EXP_PKG, status:VALID,
-
View: FA_ASSET_MAINT_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_MAINT_VIEW, object_name:FA_ASSET_MAINT_VIEW, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_ASSET_MAINT_VIEW ,
-
APPS.JA_CN_FA_ACS_EXPORT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JA_CN_PS_FA_ACUI_EXP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_PS_FA_ACUI_EXP_PKG, status:VALID,
-
SYNONYM: APPS.FA_BOOK_CONTROLS_SEC
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FA_BOOK_CONTROLS_SEC, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_AC_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_AC_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_ACUI_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_ACUI_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_ACS_EXPORT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JA_CN_FA_ACS_EXPORT_PKG, status:VALID,
-
PACKAGE BODY: APPS.FA_SECURITY2
12.2.2
-
APPS.FARX_INV_MISS_PKG SQL Statements
12.1.1
-
APPS.FARX_INV_MISS_PKG SQL Statements
12.2.2
-
APPS.JA_CN_PS_FA_ACUI_EXP_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FA_SECURITY2
12.1.1
-
APPS.JA_CN_FA_MM_EXPORT_PKG SQL Statements
12.2.2
-
APPS.JA_CN_FA_ACUI_EXPORT_PKG SQL Statements
12.2.2
-
APPS.JA_CN_PS_FA_BI_EXP_PKG SQL Statements
12.2.2
-
APPS.JA_CN_FA_ADIRA_EXPORT_PKG SQL Statements
12.2.2
-
VIEW: APPS.IGI_IAC_BOOK_CONTROLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_IAC_BOOK_CONTROLS_V, object_name:IGI_IAC_BOOK_CONTROLS_V, status:VALID,
-
VIEW: APPS.IGI_IAC_BOOK_CONTROLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_IAC_BOOK_CONTROLS_V, object_name:IGI_IAC_BOOK_CONTROLS_V, status:VALID,
-
VIEW: APPS.FA_MASS_ADDITIONS_V
12.1.1
-
VIEW: APPS.FA_MASS_ADDITIONS_V
12.2.2
-
VIEW: APPS.FA_ASSET_MAINT_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_MAINT_VIEW, object_name:FA_ASSET_MAINT_VIEW, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_FA_BI_EXPORT_PKG
12.2.2
-
APPS.JA_CN_FA_ADI_EXPORT_PKG SQL Statements
12.2.2
-
APPS.JA_CN_FA_RAI_EXPORT_PKG SQL Statements
12.2.2
-
View: FA_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_MASS_ADDITIONS_V ,
-
View: FA_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_MASS_ADDITIONS_V ,
-
PACKAGE BODY: APPS.JA_CN_FA_ACS_EXPORT_PKG
12.2.2
-
VIEW: FA.FA_BOOK_CONTROLS#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_BOOK_CONTROLS#, 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,
-
PACKAGE BODY: APPS.FARX_INV_MISS_PKG
12.1.1
-
PACKAGE BODY: APPS.FARX_INV_MISS_PKG
12.2.2
-
VIEW: APPS.FA_MASS_ADDITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID,
-
VIEW: APPS.FA_MASS_ADDITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_MASS_ADDITIONS_V, object_name:FA_MASS_ADDITIONS_V, status:VALID,
-
PACKAGE BODY: APPS.JA_CN_PS_FA_ACUI_EXP_PKG
12.2.2