Search Results okl_txl_quote_lines_b
Overview
The table OKL_TXL_QUOTE_LINES_B is a core data object within the Oracle E-Business Suite (EBS) module OKL (Leasing and Finance Management). It serves as the primary repository for line-level detail associated with quotes generated for key transactional events: asset termination, contract restructure, or asset repurchase. Each record in this table represents a specific financial component or adjustment line that collectively forms the complete commercial offer (quote) to a customer for one of these events. Its role is critical for capturing the granular financial breakdown, which feeds into downstream contract modifications, journal entries, and settlement calculations in the leasing lifecycle.
Key Information Stored
While the specific column list is not detailed in the provided metadata, the foreign key relationships define the essential contextual data stored in each record. The primary identifier is the ID column, which is the table's primary key. Each line must be associated with a parent quote header via the QTE_ID, linking to OKL_TRX_QUOTES_B. The financial substance of the line is tied to a source contract line via KLE_ID, referencing the OKL_K_LINES table. For restructuring scenarios, a SPLIT_KLE_ID may also reference OKL_K_LINES to denote a new or split contract line. The line's transaction type (TRY_ID referencing OKL_TRX_TYPES_B) and revenue/expense stream type (STY_ID referencing OKL_STRM_TYPE_B) are stored to classify the nature of the charge or credit, such as a termination penalty, unearned interest reversal, or asset repurchase price.
Common Use Cases and Queries
This table is central to generating and analyzing quotes for lease-end or mid-lease transactions. A common operational use case is retrieving all quote lines for a specific customer quote to display in a review screen or to calculate the total quote amount. For reporting, analysts may query this table to summarize volumes and values of termination or restructuring activity by stream type or contract line category. A typical SQL pattern involves joining to the quote header and contract lines to provide context.
SELECT qtl.id, qtl.qte_id, qh.quote_number, kl.line_number,
tt.name transaction_type, st.name stream_type
FROM okl_txl_quote_lines_b qtl,
okl_trx_quotes_b qh,
okl_k_lines kl,
okl_trx_types_b tt,
okl_strm_type_b st
WHERE qtl.qte_id = qh.id
AND qtl.kle_id = kl.id
AND qtl.try_id = tt.id
AND qtl.sty_id = st.id
AND qh.quote_status = 'APPROVED';
Related Objects
The table maintains defined foreign key relationships with several key OKL tables, as documented in the ETRM metadata:
- OKL_TRX_QUOTES_B: The parent quote header. Joined via
OKL_TXL_QUOTE_LINES_B.QTE_ID = OKL_TRX_QUOTES_B.ID. - OKL_K_LINES (two relationships): The original contract line item. Joined via
OKL_TXL_QUOTE_LINES_B.KLE_ID = OKL_K_LINES.ID. For restructuring, a separate relationship exists viaOKL_TXL_QUOTE_LINES_B.SPLIT_KLE_ID = OKL_K_LINES.ID. - OKL_TRX_TYPES_B: Defines the transaction type (e.g., TERMINATION, RESTRUCTURE). Joined via
OKL_TXL_QUOTE_LINES_B.TRY_ID = OKL_TRX_TYPES_B.ID. - OKL_STRM_TYPE_B: Defines the accounting stream type (e.g., INTEREST, PRINCIPAL, FEE). Joined via
OKL_TXL_QUOTE_LINES_B.STY_ID = OKL_STRM_TYPE_B.ID.
-
Table: OKL_TXL_QUOTE_LINES_B
12.2.2
product: OKL - Lease and Finance Management , description: Termination, restructure or repurchase quote lines , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_K_LINES
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES, object_name:OKL_K_LINES, status:VALID, product: OKL - Lease and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core line tables, OKC_K_LINES_B and OKC_K_LINES_TL. OKL_K_LINES contains attributes that relate to contracts created in OKL and do not fit into the standard lines tables OKC_K_LINES_ , implementation_dba_data: OKL.OKL_K_LINES ,
-
Table: OKL_TXL_QUOTE_LINES_TL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TXL_QUOTE_LINES_TL, object_name:OKL_TXL_QUOTE_LINES_TL, status:VALID, product: OKL - Lease and Finance Management , description: Translatable columns from OKL_TXL_QUOTE_LINES_B, per MLS standards , implementation_dba_data: OKL.OKL_TXL_QUOTE_LINES_TL ,
-
Table: OKL_TRX_QUOTES_B
12.2.2
product: OKL - Lease and Finance Management , description: Termination, restructure or repurchase quotes , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_TRX_TYPES_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TRX_TYPES_B, object_name:OKL_TRX_TYPES_B, status:VALID, product: OKL - Lease and Finance Management , description: Transaction types , implementation_dba_data: OKL.OKL_TRX_TYPES_B ,
-
Table: OKL_STRM_TYPE_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_STRM_TYPE_B, object_name:OKL_STRM_TYPE_B, status:VALID, product: OKL - Lease and Finance Management , description: Holds the definition of payment types. , implementation_dba_data: OKL.OKL_STRM_TYPE_B ,
-
View: OKL_TXL_QUOTE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXL_QUOTE_LINES_V, object_name:OKL_TXL_QUOTE_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: Termination, restructure or repurchase quote lines , implementation_dba_data: APPS.OKL_TXL_QUOTE_LINES_V ,
-
View: OKL_AM_QTE_UNITS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_QTE_UNITS_UV, object_name:OKL_AM_QTE_UNITS_UV, status:VALID, product: OKL - Lease and Finance Management , description: Quote unit details view , implementation_dba_data: APPS.OKL_AM_QTE_UNITS_UV ,