Search Results okl_cs_service_lines_uv
Overview
The APPS.OKL_CS_SERVICE_LINES_UV view is a reporting and integration object within the Oracle E-Business Suite (EBS) Leasing and Finance Management module (OKL). It exposes service line details associated with lease and finance contracts, presenting a flattened, denormalized projection of contract service information that spans the Oracle Contracts (OKC) and Leasing (OKL) schemas. The view is particularly relevant in releases 12.1.1 and 12.2.2, where it remains VALID and is used to surface "sold service" style lines—those contract lines whose line style code resolves to SOLD_SERVICE—for downstream reporting, integration, and analytics.
Because it consolidates contract header attributes, line items, leasing line amounts, service item definitions, and translated status meanings into a single result set, the view reduces the need for complex multi-table joins in custom reports and interfaces. It is a user-facing (UV) view, indicating it is intended for consumption by application logic, forms, and external integrations rather than for direct transactional DML.
Underlying Base Objects
The view is defined over eight documented base objects, all referenced through APPS synonyms except one view:
- OKC_K_LINES_B — the base contract line table; supplies CLE_ID, START_DATE, END_DATE, STS_CODE, LSE_ID, and DNZ_CHR_ID.
- OKC_LINE_STYLES_B — drives the line style restriction; only lines where LTY_CODE = 'SOLD_SERVICE' qualify.
- OKL_K_LINES — the leasing extension of contract lines; contributes the monetary AMOUNT.
- OKC_K_ITEMS — links the line to a service item via JTOT_OBJECT1_CODE = 'OKX_SERVICE' and OBJECT1 identifiers.
- OKX_SYSTEM_ITEMS_V — the service/inventory item view; filters VENDOR_WARRANTY_FLAG = 'N' and SERVICE_ITEM_FLAG = 'Y', and provides SERVICE (item) NAME.
- OKC_K_HEADERS_B — the contract header; supplies CONTRACT_NUMBER, DNZ_CHR_ID, and CURRENCY_CODE.
- OKC_STATUSES_B and OKC_STATUSES_TL — provide the translated status MEANING, joined by code and USERENV('LANG').
Joins are enforced on line ID, contract ID (DNZ_CHR_ID), status code, and item identifiers, ensuring that only lines tied to valid, non-abandoned service contracts are returned (STS_CODE NOT IN 'ABANDONED').
Key Columns
- CLE_ID — the contract line identifier, primary correlation key to OKC_K_LINES_B.
- SERVICE_NAME — the name of the sold service item from OKX_SYSTEM_ITEMS_V.
- AMOUNT — the monetary value of the service line from OKL_K_LINES.
- START_DATE / END_DATE — the effective service period of the line.
- STATUS — the translated status meaning (e.g., Active) derived from OKC_STATUSES_TL.
- CONTRACT_NUMBER — the human-readable contract number from OKC_K_HEADERS_B.
- CONTRACT_ID — the internal contract (DNZ_CHR_ID) identifier.
- CURRENCY_CODE — the contract currency, enabling multi-currency reporting.
Common Use Cases and Queries
Typical scenarios include reporting active sold-service revenue by contract, reconciling service line amounts, and populating integration staging tables. A representative query:
- SELECT CONTRACT_NUMBER, SERVICE_NAME, AMOUNT, START_DATE, END_DATE, STATUS, CURRENCY_CODE FROM APPS.OKL_CS_SERVICE_LINES_UV WHERE STATUS = 'Active' ORDER BY CONTRACT_NUMBER;
The view should be treated as read-only. Because it embeds USERENV('LANG') and OKX_SYSTEM_ITEMS_V, performance depends on proper indexing of OKC_K_LINES_B and OKC_K_ITEMS; querying by CONTRACT_NUMBER or CONTRACT_ID is generally most efficient.
-
View: OKL_CS_SERVICE_LINES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_LINES_UV, object_name:OKL_CS_SERVICE_LINES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_SERVICE_LINES_UV ,
-
View: OKL_CS_SERVICE_LINES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_LINES_UV, object_name:OKL_CS_SERVICE_LINES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_SERVICE_LINES_UV ,
-
SYNONYM: APPS.OKC_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.OKC_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_STATUSES_TL, status:VALID,
-
VIEW: APPS.OKL_CS_SERVICE_LINES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_LINES_UV, object_name:OKL_CS_SERVICE_LINES_UV, status:VALID,
-
VIEW: APPS.OKL_CS_SERVICE_LINES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_LINES_UV, object_name:OKL_CS_SERVICE_LINES_UV, status:VALID,
-
SYNONYM: APPS.OKL_K_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_K_LINES, status:VALID,
-
SYNONYM: APPS.OKL_K_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_K_LINES, status:VALID,
-
SYNONYM: APPS.OKC_STATUSES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_STATUSES_B, status:VALID,
-
SYNONYM: APPS.OKC_STATUSES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_STATUSES_B, status:VALID,
-
SYNONYM: APPS.OKC_LINE_STYLES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_LINE_STYLES_B, status:VALID,
-
VIEW: APPS.OKX_SYSTEM_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_SYSTEM_ITEMS_V, object_name:OKX_SYSTEM_ITEMS_V, status:VALID,
-
SYNONYM: APPS.OKC_K_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_K_ITEMS, status:VALID,
-
SYNONYM: APPS.OKC_LINE_STYLES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_LINE_STYLES_B, status:VALID,
-
VIEW: APPS.OKX_SYSTEM_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_SYSTEM_ITEMS_V, object_name:OKX_SYSTEM_ITEMS_V, status:VALID,
-
SYNONYM: APPS.OKC_K_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_K_ITEMS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.OKC_K_LINES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_K_LINES_B, status:VALID,
-
SYNONYM: APPS.OKC_K_LINES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_K_LINES_B, status:VALID,
-
SYNONYM: APPS.OKC_K_HEADERS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_K_HEADERS_B, status:VALID,
-
SYNONYM: APPS.OKC_K_HEADERS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_K_HEADERS_B, status:VALID,
-
eTRM - OKX Tables and Views
12.2.2
-
eTRM - OKX Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - OKX Tables and Views
12.2.2
-
eTRM - OKX Tables and Views
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 ,
-
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 ,