Search Results notification_threshold




Overview

GLBV_GLOBAL_INTERCO_SUBS is a read-only Oracle EBS view in the General Ledger (GL) module that exposes the configuration of intercompany subsidiaries defined for global intercompany processing. It presents subsidiary-level setup attributes — including the chart of accounts, set of books, currency, company value, notification thresholds, and transfer parameters — in a denormalized, translatable form suitable for reporting, integration, and user-facing inquiry. The view is defined with the WITH READ ONLY clause, so it can be queried but never used as a DML target. In Oracle EBS 12.1.1 and 12.2.2, it plays a supporting role in the Intercompany and Advanced Global Intercompany System (AGIS) functionality, where subsidiaries represent the counterparties between which intercompany transactions are entered, approved, and transferred. Because the view resolves lookup codes into their meanings (via the _LA: token convention), it is well suited to concurrent-program extracts, Oracle Reports, OAF/Forms list-of-values, and BI Publisher data models that require human-readable descriptions rather than raw lookup codes.

Underlying Base Objects

The view is defined over a single base table, GL_IEA_SUBSIDIARIES, aliased as GLOBAL_INTERCO_SUB. The ETRM metadata lists no additional referenced base objects, and the view text confirms a straightforward projection of that table with no joins. General Ledger intercompany subsidiaries are maintained through the AGIS setup, and each row in GL_IEA_SUBSIDIARIES corresponds to one subsidiary belonging to a given set of books and chart of accounts. The view therefore inherits the key structure of that table directly — SUBSIDIARY_ID is the primary identifier, and SET_OF_BOOKS_ID and CHART_OF_ACCOUNTS_ID establish the accounting context in which the subsidiary operates. The read-only nature of the view and its use of translated lookup tokens make it a presentation-layer object rather than a transactional one; underlying maintenance is performed against the base table through the standard AGIS forms.

Key Columns

Common Use Cases and Queries

The view is typically queried to report subsidiary setup, to identify the transfer target set of books, or to drive integration extracts. A representative query retrieving all enabled subsidiaries and their transfer targets is:

SELECT subsidiary_id, subsidiary_name, set_of_books_id, transfer_set_of_books_id, transfer_currency_code FROM glbv_global_interco_subs WHERE "_LA:ENABLED_FLAG" = 'Yes';

To locate subsidiaries that transfer into a specific set of books:

SELECT subsidiary_name, company, transfer_currency_code FROM glbv_global_interco_subs WHERE transfer_set_of_books_id = :p_set_of_books_id;

To audit notification thresholds and conversion settings across a ledger:

SELECT subsidiary_name, notification_threshold, "_LA:CONVERSION_RATES_TYPE" FROM glbv_global_interco_subs WHERE set_of_books_id = :p_sob ORDER BY subsidiary_name;

Because the view is read-only, all such queries are safe for concurrent reporting and never risk modifying AGIS configuration. Where the ETRM metadata is silent (for example, on indexes or dependencies), behavior follows the underlying GL_IEA_SUBSIDIARIES table.