Search Results xla_launch_options
Overview
The XLA_LAUNCH_OPTIONS table is a Subledger Accounting (XLA) configuration table in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the default accounting program launch options for a specific combination of application and ledger. Accounting programs in XLA — such as Create Accounting, Transfer Journal Entries to GL, and Post Journal Entries to GL — are typically initiated with a set of runtime parameters (accounting mode, summary reporting, transfer and posting flags). XLA_LAUNCH_OPTIONS persists the defaults that pre-populate these parameters, allowing users to avoid re-entering the same options on every run. For applications that support valuation method accounting, the table maintains separate default option sets for primary and secondary valuation methods.
From a dimensional modeling perspective, the ETRM metadata carries a heuristic Data Vault classification of standalone, meaning the table is not mined as a hub, link, or satellite through foreign key structure. This should be treated as a modeling suggestion only. Conceptually, the natural business key of (APPLICATION_ID, LEDGER_ID) behaves like a hub-like identifier, while the remaining attribute columns (flags, mode codes, limits) would map to satellite-style descriptive attributes in a Data Vault design. The table is owned by the XLA schema and is marked VALID.
Key Information Stored
The table is uniquely identified by the primary key constraint XLA_LAUNCH_OPTIONS_PK over the columns APPLICATION_ID and LEDGER_ID. A unique index, XLA_LAUNCH_OPTIONS_U1, also covers (APPLICATION_ID, LEDGER_ID), which serves as the business-key candidate — there is no separate surrogate system-generated key. Together, these two columns define the scope of each row: one set of launch defaults per application per ledger. The documented schema contains 18 columns; the most significant functional columns are:
- ACCOUNTING_MODE_CODE — the default accounting mode (for example, Draft or Final) applied when Create Accounting is launched.
- ACCOUNTING_MODE_OVERRIDE_FLAG — indicates whether users may override the default accounting mode at run time.
- SUMMARY_REPORT_FLAG — default setting for summary reporting during the accounting run.
- SUMMARY_REPORT_OVERRIDE_FLAG — controls whether the summary report option can be changed by the submitter.
- SUBMIT_TRANSFER_TO_GL_FLAG — default behavior for transferring journal entries to General Ledger.
- SUBMIT_TRANSFER_OVERRIDE_FLAG — whether the transfer-to-GL flag may be overridden.
- SUBMIT_GL_POST_FLAG — default behavior for posting journal entries to GL.
- SUBMIT_GL_POST_OVERRIDE_FLAG — whether the GL posting flag may be overridden.
- ERROR_LIMIT — maximum number of errors permitted before the accounting process halts.
- PROCESSES — number of concurrent processes used when launching the accounting program.
- PROCESSING_UNIT_SIZE — the grouping size for processing units during the run.
The remaining columns are standard audit and concurrency attributes: CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Administrators and support analysts query this table to confirm the defaults applied when the Create Accounting or Transfer to GL programs are submitted. A typical retrieval for a single ledger looks like:
SELECT application_id, ledger_id, accounting_mode_code, error_limit, processes, processing_unit_size FROM xla.xla_launch_options WHERE ledger_id = :ledger_id;
Because the override flags govern user flexibility, a frequent diagnostic scenario is determining whether a discrepancy between expected and actual run parameters is caused by a disallowed override:
SELECT APPLICATION_ID, LEDGER_ID, ACCOUNTING_MODE_OVERRIDE_FLAG, SUMMARY_REPORT_OVERRIDE_FLAG FROM xla.xla_launch_options WHERE SUBMIT_TRANSFER_TO_GL_FLAG = 'Y';
Reporting use cases include auditing default process counts and error limits across ledgers, and identifying applications that have no configured launch options (i.e., rely solely on runtime user input). The table is also useful in upgrade or clone validation exercises, where comparing default options between source and target environments reveals configuration drift.
Related Objects
Although the metadata classifies this table as standalone (no mined foreign keys), it logically references foundational EBS entities and is referenced by downstream configuration. The most significant related objects include:
- FND_APPLICATION — supplies the application name/description behind APPLICATION_ID.
- GL_LEDGERS — resolves LEDGER_ID to the ledger name, chart of accounts, and currency.
- XLA_ACCOUNTING_PROGRAMS (and the XLA accounting program definitions) — the programs whose defaults are stored here.
- XLA_LAUNCH_OPTIONS itself is queried by the XLA post-accounting and transfer request submission logic.
- FND_CONCURRENT_REQUESTS — used in tandem to compare stored defaults against the actual submitted request parameters.
Analysts should treat (APPLICATION_ID, LEDGER_ID) as the reliable join key when correlating this table with GL and application-level configuration.
-
Table: XLA_LAUNCH_OPTIONS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_LAUNCH_OPTIONS, object_name:XLA_LAUNCH_OPTIONS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_LAUNCH_OPTIONS table stores the defaults for accounting program launch options for an application and a ledger. For applications that support valuation method accounting, these default options are stored for a primary and secondary , implementation_dba_data: XLA.XLA_LAUNCH_OPTIONS ,
-
Table: XLA_LAUNCH_OPTIONS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_LAUNCH_OPTIONS, object_name:XLA_LAUNCH_OPTIONS, status:VALID, product: XLA - Subledger Accounting , description: The XLA_LAUNCH_OPTIONS table stores the defaults for accounting program launch options for an application and a ledger. For applications that support valuation method accounting, these default options are stored for a primary and secondary , implementation_dba_data: XLA.XLA_LAUNCH_OPTIONS ,
-
VIEW: XLA.XLA_LAUNCH_OPTIONS#
12.2.2
owner:XLA, object_type:VIEW, object_name:XLA_LAUNCH_OPTIONS#, status:VALID,
-
SYNONYM: APPS.XLA_LAUNCH_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLA_LAUNCH_OPTIONS, status:VALID,
-
SYNONYM: APPS.XLA_LAUNCH_OPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLA_LAUNCH_OPTIONS, status:VALID,
-
VIEW: XLA.XLA_LAUNCH_OPTIONS#
12.2.2
-
APPS.XLA_ACCT_SETUP_PKG SQL Statements
12.1.1
-
APPS.XLA_ACCT_SETUP_PKG SQL Statements
12.2.2
-
VIEW: APPS.XLA_SUBLEDGER_OPTIONS_V
12.1.1
-
PACKAGE BODY: APPS.XLA_ACCT_SETUP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_ACCT_SETUP_PKG, status:VALID,
-
PACKAGE BODY: APPS.XLA_ACCT_SETUP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_ACCT_SETUP_PKG, status:VALID,
-
VIEW: APPS.XLA_SUBLEDGER_OPTIONS_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_THIRD_PARTY_MERGE, status:VALID,
-
TABLE: XLA.XLA_LAUNCH_OPTIONS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_LAUNCH_OPTIONS, object_name:XLA_LAUNCH_OPTIONS, status:VALID,
-
TABLE: XLA.XLA_LAUNCH_OPTIONS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_LAUNCH_OPTIONS, object_name:XLA_LAUNCH_OPTIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
View: XLA_SUBLEDGER_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SUBLEDGER_OPTIONS_V, object_name:XLA_SUBLEDGER_OPTIONS_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_SUBLEDGER_OPTIONS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
View: XLA_SUBLEDGER_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SUBLEDGER_OPTIONS_V, object_name:XLA_SUBLEDGER_OPTIONS_V, status:VALID, product: XLA - Subledger Accounting , implementation_dba_data: APPS.XLA_SUBLEDGER_OPTIONS_V ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.XLA_ACCT_SETUP_PKG
12.1.1
-
PACKAGE BODY: APPS.XLA_ACCT_SETUP_PKG
12.2.2
-
VIEW: APPS.XLA_SUBLEDGER_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SUBLEDGER_OPTIONS_V, object_name:XLA_SUBLEDGER_OPTIONS_V, status:VALID,
-
VIEW: APPS.XLA_SUBLEDGER_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_SUBLEDGER_OPTIONS_V, object_name:XLA_SUBLEDGER_OPTIONS_V, status:VALID,
-
APPS.XLA_ACCT_SETUP_PKG dependencies on XLA_LAUNCH_OPTIONS
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_LAUNCH_OPTIONS
12.1.1
-
APPS.XLA_ACCT_SETUP_PKG dependencies on XLA_LAUNCH_OPTIONS
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_THIRD_PARTY_SITES_V
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_THIRD_PARTY_SITES_V
12.1.1
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_LEDGER_OPTIONS
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_LEDGER_OPTIONS
12.1.1
-
APPS.XLA_ACCT_SETUP_PKG dependencies on XLA_JE_CATEGORIES
12.1.1
-
APPS.XLA_ACCT_SETUP_PKG dependencies on XLA_JE_CATEGORIES
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE SQL Statements
12.2.2
-
APPS.XLA_ACCT_SETUP_PKG dependencies on XLA_LEDGER_OPTIONS
12.2.2
-
APPS.XLA_ACCT_SETUP_PKG dependencies on XLA_LEDGER_OPTIONS
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.2.2
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.1.1