Search Results okl_var_int_process_b_u1




Overview

OKL.OKL_VAR_INT_PROCESS_B is a transaction-processing table in the Oracle E-Business Suite ETRM (Enterprise Trading and Risk Management) module, owned by the OKL schema. As its name indicates, it tracks the "Variable Interest Rate Process" — the batch workflow that recalculates or rebooks leases and contracts subject to variable (floating) interest terms. The table records the linkage between a parent "Super Trump" transaction and its child transaction created during the rebooking operation, together with the contract number, rebook status, and the concurrent manager context under which the process was executed.

Physically, the table resides on the APPS_TS_TX_DATA tablespace with PCT_FREE 10, and its unique index OKL_VAR_INT_PROCESS_B_U1 on the ID column is stored on APPS_TS_TX_IDX. The primary key constraint OKL_VAR_INT_PROCESS_B_PK is defined on ID. Under the heuristic Data Vault classification derived from the FK structure, this object is modeled as standalone — it does not participate in a documented hub-link-satellite chain and should be treated as an independent process-log entity rather than a core master or relationship table.

Key Information Stored

The table contains 33 documented columns. The most operationally significant are:

Common Use Cases and Queries

Typical usage centers on reconciliation and process monitoring of variable interest rebooking runs. A frequent pattern joins parent and child transactions through the TRX identifiers, restricting by operating unit:

  • Process audit: SELECT contract_number, status, rebook_status FROM okl.okl_var_int_process_b WHERE request_id = :p_request_id;
  • Reconciliation: locate rows where PARENT_TRX_ID and CHILD_TRX_ID pairs are incomplete or where STATUS is not in the expected completion set.
  • Concurrent manager drill-down: join REQUEST_ID to FND_CONCURRENT_REQUESTS to attribute each row to its submitting program and completion timestamp.
  • Multi-org reporting: aggregate by ORG_ID to compare rebooking volumes across operating units.
  • Flexfield reporting: query ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 for locally configured tracking attributes.

Related Objects

Because the model is classified standalone, the table is referenced primarily through logical, not enforced, joins. The most significant related objects are:

Subsequent or dependent OKL processing tables that consume CHILD_TRX_ID complete the logical dependency chain for downstream rebooking steps.