Search Results rul_labacc_bank_name
Overview
The OKL_OR_ASSET_BILLING_SETUP_UV view is a user-facing (UV) database object in the APPS schema belonging to the OKL – Lease and Finance Management product family. In ETRM 12.1.1 and 12.2.2 it is primarily consumed as a data source for Oracle Reports and Oracle Bills of Material (BOM) report layouts. The view exposes billing setup information associated with lease contract lines — the contract line description, the leased asset description, the bill-to site and customer account site, and a set of placeholder columns reserved for Originations (OR) billing-related flexfields and identifiers.
The view is a read-only construct: it contains no DML logic and no procedural code. Its columns are either sourced directly from the underlying OKC and HZ objects, or are literal TO_CHAR(NULL) placeholders, indicating that the columns are defined in the report/layout metadata so that a reporting template can bind to them even when no underlying value exists. This is a common ETRM reporting pattern used to stabilise column lists for Oracle Reports (RDF) or XML Publisher output.
Underlying Base Objects
The documented base objects referenced by the view are:
- OKC_K_LINES_B (SYNONYM) – the base (B) table holding contract line identifiers. In the view it is aliased as
CLEB_FIN. - OKC_K_LINES_TL (SYNONYM) – the translated (TL) table holding contract line name and description. In the view it is aliased as
CLET. - HZ_CUST_SITE_USES_ALL (SYNONYM) – the customer site-uses table from the Trading Community Architecture (TCA) model. In the view it is aliased as
CSU.
The join structure is straightforward. OKC_K_LINES_B.ID is equated to OKC_K_LINES_TL.ID, giving the descriptive text of each contract line. The TCA customer site is outer-joined (CSU.SITE_USE_ID(+) = CLEB_FIN.BILL_TO_SITE_USE_ID) so that contract lines without an associated bill-to site still return a row.
Key Columns
- NAME and ITEM_DESCRIPTION – the contract line name and description from OKC_K_LINES_TL.
- ID – the contract line identifier (from OKC_K_LINES_B).
- DNZ_CHR_ID – the owning contract/header identifier.
- BILL_TO_SITE_USE_ID – the TCA site-use identifier for the bill-to site.
- BILL_TO_SITE_NAME – the location name of the bill-to site (
CSU.LOCATION). - CUST_ACCT_SITE_ID – the customer account site identifier.
- RGP_LABILL_* columns – a set of placeholders
(RGP_LABILL_LAPMTH_ID, RGP_LABILL_LABACC_ID, RGP_LABILL_LAINVD_ID, RGP_LABILL_LAINPR_ID)all defined asTO_CHAR(NULL). - RUL_LAPMTH_ID, RUL_LABACC_ID, RUL_LAINVD_ID, RUL_LAINPR_ID – the "rule" counterparts of the above, also exposed as
TO_CHAR(NULL). The user search termrul_lapmth_idmaps directly to this column, which is a placeholder for the lease-accounting payment-method identifier associated with the billing rule. - RUL_LAPMTH_OBJECT1_ID1 / _ID2, RUL_LAPMTH_NAME – flexible placeholder columns for the payment-method descriptive flexfield segments.
- RUL_LABACC_OBJECT1_ID1 / _ID2, RUL_LABACC_NAME, RUL_LABACC_BANK_NAME – placeholder columns for the lease bank-account flexfield and its bank name.
- RGP_ID – a final placeholder column, also
TO_CHAR(NULL).
Because the RGP_*, RUL_* and RGP_ID columns resolve to NULL in the view definition, any query that filters on them will return the full rowset regardless of the filter value. Their purpose is structural — they exist so that report templates referencing <RUL_LAPMTH_ID> or similar tokens compile and run without modification.
Common Use Cases and Queries
The view is most commonly queried when diagnosing why an asset-billing report displays blank payment-method, bank-account or invoice-detail fields, and when tracing the contract line that drives a billing setup row.
Typical simple query:
SELECT id, name, item_description, bill_to_site_name, rul_lapmth_id FROM apps.okl_or_asset_billing_setup_uv;– to enumerate all contract lines and their bill-to sites.SELECT id, rul_lapmth_id, rul_labacc_name FROM apps.okl_or_asset_billing_setup_uv WHERE id = :line_id;– to inspect the placeholder columns for a specific contract line.SELECT name, dnz_chr_id, cust_acct_site_id FROM apps.okl_or_asset_billing_setup_uv WHERE dnz_chr_id = :contract_id;– to list all lines belonging to one contract.
Because the join to HZ_CUST_SITE_USES_ALL is an outer join, rows with no bill-to site return NULL for BILL_TO_SITE_NAME, BILL_TO_SITE_USE_ID and CUST_ACCT_SITE_ID. Support engineers should be aware that NULLs returned from the RUL_* columns are by design in the base view and cannot be used to determine whether a billing rule was actually configured; the underlying OKL rule tables must be queried for that purpose.
-
View: OKL_OR_ASSET_BILLING_SETUP_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_BILLING_SETUP_UV, object_name:OKL_OR_ASSET_BILLING_SETUP_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_OR_ASSET_BILLING_SETUP_UV ,
-
VIEW: APPS.OKL_OR_ASSET_BILLING_SETUP_UV
12.2.2
-
VIEW: APPS.OKL_OR_ASSET_BILLING_SETUP_UV
12.1.1
-
View: OKL_OR_ASSET_BILLING_SETUP_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_BILLING_SETUP_UV, object_name:OKL_OR_ASSET_BILLING_SETUP_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_OR_ASSET_BILLING_SETUP_UV ,
-
View: OKL_KHR_TNC_BILL_SETUP_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KHR_TNC_BILL_SETUP_UV, object_name:OKL_KHR_TNC_BILL_SETUP_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_KHR_TNC_BILL_SETUP_UV ,
-
View: OKL_KHR_TNC_BILL_SETUP_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KHR_TNC_BILL_SETUP_UV, object_name:OKL_KHR_TNC_BILL_SETUP_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_KHR_TNC_BILL_SETUP_UV ,
-
VIEW: APPS.OKL_KHR_TNC_BILL_SETUP_UV
12.1.1
-
VIEW: APPS.OKL_KHR_TNC_BILL_SETUP_UV
12.2.2
-
VIEW: APPS.OKL_OR_ASSET_BILLING_SETUP_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_BILLING_SETUP_UV, object_name:OKL_OR_ASSET_BILLING_SETUP_UV, status:VALID,
-
VIEW: APPS.OKL_OR_ASSET_BILLING_SETUP_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_BILLING_SETUP_UV, object_name:OKL_OR_ASSET_BILLING_SETUP_UV, status:VALID,
-
VIEW: APPS.OKL_KHR_TNC_BILL_SETUP_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KHR_TNC_BILL_SETUP_UV, object_name:OKL_KHR_TNC_BILL_SETUP_UV, status:VALID,
-
VIEW: APPS.OKL_KHR_TNC_BILL_SETUP_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KHR_TNC_BILL_SETUP_UV, object_name:OKL_KHR_TNC_BILL_SETUP_UV, status:VALID,
-
PACKAGE: APPS.OKL_DEAL_TERMS_PVT
12.2.2
-
PACKAGE: APPS.OKL_DEAL_TERMS_PVT
12.1.1
-
APPS.OKL_DEAL_TERMS_PVT dependencies on AP_BANK_BRANCHES
12.2.2
-
APPS.OKL_DEAL_TERMS_PVT dependencies on AP_BANK_BRANCHES
12.1.1
-
APPS.OKL_DEAL_TERMS_PVT dependencies on AR_RECEIPT_METHODS
12.2.2
-
APPS.OKL_DEAL_TERMS_PVT dependencies on AR_RECEIPT_METHODS
12.1.1
-
APPS.OKL_DEAL_TERMS_PVT dependencies on OKX_RCPT_METHOD_ACCOUNTS_V
12.1.1
-
APPS.OKL_DEAL_TERMS_PVT dependencies on OKX_RCPT_METHOD_ACCOUNTS_V
12.2.2
-
APPS.OKL_DEAL_TERMS_PVT dependencies on OKC_RULES_B
12.2.2
-
APPS.OKL_DEAL_TERMS_PVT dependencies on OKC_RULES_B
12.1.1
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,