Search Results all_operating_units




Overview

AX_SETUP_POSTING_BOOKS_V is a reporting view within the AX – Global Accounting Engine (Global Accounting Engine) module of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. The view exposes the setup configuration of posting book rules defined in the AX_SETUP_POSTING_BOOKS table, joining those rules to the applications, ledgers (sets of books), and operating units that give the otherwise numeric identifiers their business meaning. Its principal role is to provide a human-readable, query-friendly presentation of the mapping between a source organization (operating unit) and the ledger and posting ledger combination used by the Global Accounting Engine when it transfers and posts accounting entries.

The view is not a transactional or reporting fact object; it is a configuration and setup view. It is typically used by implementers and support analysts to validate how subledger accounting events will be routed to the correct ledger for a given operating unit, and to reconcile differences between source and posting ledgers across multiple organizations.

Underlying Base Objects

The view is defined over the following documented base objects:

The view text is a UNION of two queries. The first handles organization-specific rules (SOURCE_ORG_ID <> 0) and joins HR_OPERATING_UNITS to resolve the source organization name. The second handles the wildcard case (SOURCE_ORG_ID = 0), where the rule applies to all operating units, and substitutes the AX_LOOKUPS meaning for the organizational name.

Key Columns

Common Use Cases and Queries

A frequent requirement is searching for the source organization name associated with a posting rule. The query below returns all rules and their resolved organization names:

SELECT source_org_id, source_org_name, main_set_of_books_name,
       posting_set_of_books_name, rule_name, transfer_to_gl
  FROM ax_setup_posting_books_v
 ORDER BY source_org_name;

To isolate the wildcard "all operating units" rules:

SELECT rule_name, source_org_name, posting_set_of_books_name
  FROM ax_setup_posting_books_v
 WHERE source_org_id = 0;

To confirm the posting configuration for a specific operating unit by name:

SELECT source_org_name, main_set_of_books_name,
       posting_set_of_books_name, je_line_type
  FROM ax_setup_posting_books_v
 WHERE source_org_name = :org_name;

Because the view resolves IDs to names and normalizes the wildcard case, it is well suited to ad hoc diagnosis of Global Accounting Engine behavior, regression checking after setup changes, and validation of ledger routing across multi-organization implementations.