Search Results ar_exchange_rate_type
Overview
The APPS.OKL_CS_BILLINGTRX_UV view is a reporting construct within the Oracle E-Business Suite (EBS) Lease and Financial Management modules, specifically part of the ETRM (Enterprise Transaction and Reporting Model) family. It exposes billing transaction details for contracts managed by Oracle Lease Management (OKL) and Oracle Contracts (OKC), consolidating invoice lines, payment schedule data, asset information, and contract header attributes into a single denormalized result set. Its name follows the common EBS convention of a "_UV" suffix, indicating it is a user-facing view intended for ad-hoc queries, extracts, and integration lookups rather than direct transactional processing.
The view is relevant to both 12.1.1 and 12.2.2 releases; underlying metadata is consistent with the ETRM 12.2.2 documentation. Because it synthesizes data across lease contracts, AR invoices, and fixed assets, it is typically consumed by reporting tools, custom concurrent programs, and OBIEE/BI Publisher data models.
Underlying Base Objects
The view is defined over a UNION ALL of two principal query branches. The first branch joins OKL_CS_BPD_INV_DTL_V (the core billing transaction detail view) to the following documented base objects:
- AR_PAYMENT_SCHEDULES_ALL — provides exchange rate type, exchange rate, exchange date, and transaction date for the receivable.
- FA_ADDITIONS_B — supplies the fixed asset number and asset ID linked to the contract line item.
- OKC_K_ITEMS, OKC_LINE_STYLES_B, OKC_K_LINES_B — define the contract line structure and filter lines marked with the "FIXED_ASSET" line style.
- OKL_K_HEADERS — supplies contract header context, including deal type (the view excludes deals of type 'LOAN').
- OKL_STRM_TYPE_TL — resolves the transaction type name in the user's session language via
USERENV('LANG').
The second UNION ALL branch invokes OKL_CS_LC_CONTRACT_PVT, OKL_BILLING_UTIL_PVT, and FND_GLOBAL to cover lease-contract scenarios not captured by the fixed-asset branch. These package calls broaden the view's applicability across contract subtypes.
Key Columns
Several columns are particularly relevant to users searching for billing amount data, including the alias AMOUNT_LINE_ITEMS_ORIGINAL:
- AMOUNT_LINE_ITEMS_ORIGINAL — mapped from
DTLS.LINE_AMOUNT, representing the original line-level amount for the billing transaction. - AMOUNT_LINE_ITEMS_REMAINING — the unconsumed portion of the line amount.
- TRANSACTION_AMOUNT — aliased from
DTLS.AMOUNT_ORIGINAL, the original transaction amount. - AMOUNT_APPLIED and AMOUNT_REMAINING — applied and open balances.
- TAX_ORIGINAL and TAX_REMAINING — tax components of the transaction.
- AMOUNT_CREDITED and AMOUNT_ADJUSTED — credit and adjustment amounts.
- INVOICE_NUMBER, INVOICE_DATE, DUE_DATE, CURRENCY_CODE, ASSET_NUMBER, CONTRACT_NUMBER, and TRANSACTION_TYPE — descriptive context columns.
Common Use Cases and Queries
Typical uses include reconciling lease billing lines to AR invoices, reporting original versus remaining amounts by asset or contract, and feeding downstream analytics. A representative query targeting the searched column is:
SELECT contract_number,
invoice_number,
transaction_type,
amount_line_items_original,
amount_line_items_remaining,
currency_code
FROM apps.okl_cs_billingtrx_uv
WHERE contract_number = :p_contract_number
ORDER BY invoice_date;
To aggregate original line amounts per asset:
SELECT asset_number,
SUM(amount_line_items_original) AS total_original
FROM apps.okl_cs_billingtrx_uv
GROUP BY asset_number;
Because the view relies on USERENV('LANG') and session context through FND_GLOBAL, results should be retrieved within a properly initialized EBS session (for example, through a concurrent program or OA Framework page) to ensure accurate transaction type names and organization context.
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.2.2
-
View: OKL_BILLING_TRX_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_BILLING_TRX_ALL_UV ,
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.1.1
-
View: OKL_CS_BILLINGTRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_CS_BILLINGTRX_UV ,
-
View: OKL_BILLING_TRX_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID, product: OKL - Lease and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_BILLING_TRX_ALL_UV ,
-
View: OKL_CS_BILLINGTRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID, product: OKL - Lease and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_CS_BILLINGTRX_UV ,
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.1.1
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.2.2
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_CS_BILLINGTRX_UV1, status:VALID,
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_CS_BILLINGTRX_UV1, status:VALID,
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID,
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.1.1
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID,
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID,
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.2.2
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID,
-
PACKAGE BODY: APPS.AR_OBALREV_PKG
12.1.1
-
PACKAGE BODY: APPS.AR_OBALREV_PKG
12.2.2
-
APPS.AR_OBALREV_PKG dependencies on FND_MESSAGE
12.2.2
-
APPS.AR_OBALREV_PKG dependencies on FND_MESSAGE
12.1.1
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,