Search Results line_reference
Overview
APPS.OKL_CS_SERVICE_ASSETS_UV is a multi-part UNION ALL view in Oracle E-Business Suite that consolidates service asset information from Oracle Contracts (OKC) and Oracle Lease Management (OKL) source data. The view is designed to present service line details — contract identifiers, line references, service names, item identifiers, service date ranges, and customer/address attributes — in a single flattened result set suitable for reporting, integration, and inquiry purposes within the ETRM (Enterprise Trade and Relationship Management) product family.
The "_UV" suffix indicates a user-facing view that is typically consumed by OAF-based inquiry pages, concurrent programs, and customer-facing extracts rather than by the base transaction engine. A notable characteristic of this view is that the first branch of its UNION ALL uses a literal WHERE 1!=1 predicate, meaning the first SELECT acts as a structural placeholder that defines the column shape and data types of the result set, while the second branch — populated by an inline inline-view from OKC_K_ITEMS, OKC_K_LINES_V, and OKX_SYSTEM_ITEMS_V — supplies the actual rows.
Underlying Base Objects
The view is defined over the following documented base objects:
- OKC_K_LINES_V (VIEW) — the contract line view supplying line identifiers, cognomen (line reference), line number, and start/end dates.
- OKC_K_ITEMS (SYNONYM) — the contract line item table exposing object1_id1 and object1_id2, which link a service line to its inventory item or product definition.
- OKC_LINE_STYLES_B (SYNONYM) — the line style base table; the join on
lty_code='COVER_PROD'restricts results to covered-product lines. - OKL_CS_ASSET_LINES_V (VIEW) — the service asset line view providing asset name, asset description, and line style used for the address-related columns.
- OKX_SYSTEM_ITEMS_V (VIEW) — the system item view supplying item name and description.
- OKX_CUSTOMER_ACCOUNTS_V (VIEW) — provides the customer account name.
- OKX_CUST_SITE_USES_V (VIEW) — used twice (aliased BTO and STO) to resolve bill-to and ship-to site address descriptions.
- CSI_ITEM_INSTANCES (SYNONYM) and ARP_ADDR_LABEL_PKG (PACKAGE) — supporting objects referenced in the view's metadata lineage.
Key Columns
- contract_id — the DNZ_CHR_ID from OKC_K_LINES_V, identifying the contract header.
- line_id, line_reference, service_line_number — the contract line identifier, its cognomen (the value many users search for as "line reference"), and the sequential line number.
- service_name — the description of the service from the system item view.
- object1_id1 / object1_id2 — inventory item identifiers linking the service line to the covered product; rows where object1_id2 equals '#' are excluded.
- service_start_date / service_end_date — the effective coverage period of the service line.
- customer_account_name — the name of the customer account associated with the service.
- line_bto_address / line_sto_address — bill-to and ship-to address descriptions derived respectively from the OKX_CUST_SITE_USES_V instances.
- name / lse_type — asset name and line style attributes carried from the OKL_CS_ASSET_LINES_V join.
Common Use Cases and Queries
The view is most commonly queried to retrieve service coverage lines by contract, by covered item, or by line reference. A typical filter is on the searched term, line_reference:
- Locate all service lines for a specific contract:
SELECT contract_id, line_reference, service_name, service_start_date, service_end_date FROM apps.okl_cs_service_assets_uv WHERE contract_id = :p_contract_id; - Search by line reference:
SELECT contract_id, line_id, service_name FROM apps.okl_cs_service_assets_uv WHERE line_reference = :p_line_ref; - Report active service coverage by customer:
SELECT customer_account_name, service_name, service_start_date, service_end_date FROM apps.okl_cs_service_assets_uv WHERE TRUNC(SYSDATE) BETWEEN service_start_date AND service_end_date; - Link service lines to inventory items:
SELECT line_reference, object1_id1, object1_id2, line_bto_address FROM apps.okl_cs_service_assets_uv WHERE object1_id2 <> '#';
Because the first UNION ALL branch is a no-row placeholder, all returned data originates from the OKC/OKL service line branch joined to OKX system items, customer accounts, and site uses, filtered to line styles with code COVER_PROD.
-
VIEW: APPS.OKL_CS_SERVICE_ASSETS_UV
12.2.2
-
VIEW: APPS.OKL_CS_SERVICE_ASSETS_UV
12.1.1
-
VIEW: FUN.FUN_BAL_LINES_T#
12.2.2
-
View: OKL_CS_SERVICE_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_ASSETS_UV, object_name:OKL_CS_SERVICE_ASSETS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Service contracts line details view. , implementation_dba_data: APPS.OKL_CS_SERVICE_ASSETS_UV ,
-
View: OKL_CS_SERVICE_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_ASSETS_UV, object_name:OKL_CS_SERVICE_ASSETS_UV, status:VALID, product: OKL - Lease and Finance Management , description: Service contracts line details view. , implementation_dba_data: APPS.OKL_CS_SERVICE_ASSETS_UV ,
-
VIEW: FUN.FUN_BAL_ERRORS_T#
12.2.2
-
VIEW: PSA.PSA_BC_ACCOUNTING_ERRORS#
12.2.2
-
VIEW: OKS.OKS_USAGE_COUNTERS_INTERFACE#
12.2.2
-
VIEW: OKS.OKS_INT_USAGE_COUNTER_STG_TEM#
12.2.2
-
View: OKS_BILLPRST_SRVSUBLINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SRVSUBLINE_V, object_name:OKS_BILLPRST_SRVSUBLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_SRVSUBLINE_V ,
-
VIEW: OKS.OKS_COVERED_LEVELS_INTERFACE#
12.2.2
-
VIEW: APPS.OKS_BILLPRST_SRVSUBLINE_V
12.2.2
-
VIEW: OKS.OKS_INST_COUNTER_INT_ALL#
12.2.2
-
VIEW: OKS.OKS_INT_LINE_STG_TEMP#
12.2.2
-
View: OKS_BILLPRST_SRVSUBLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SRVSUBLINE_V, object_name:OKS_BILLPRST_SRVSUBLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_SRVSUBLINE_V ,
-
VIEW: OKS.OKS_LINES_INTERFACE#
12.2.2
-
VIEW: OKS.OKS_USAGE_LINE_INT_ALL#
12.2.2
-
VIEW: APPS.OKS_BILLPRST_SRVSUBLINE_V
12.1.1
-
View: OKS_BILLPRST_USGSUBLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_USGSUBLINE_V, object_name:OKS_BILLPRST_USGSUBLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_USGSUBLINE_V ,
-
View: OKS_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_LINE_DETAILS_V, object_name:OKS_LINE_DETAILS_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_LINE_DETAILS_V ,
-
TABLE: OKS.OKS_INT_USAGE_COUNTER_STG_TEMP
12.1.1
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_INT_USAGE_COUNTER_STG_TEMP, object_name:OKS_INT_USAGE_COUNTER_STG_TEMP, status:VALID,
-
VIEW: FUN.FUN_BAL_LINES_T#
12.2.2
owner:FUN, object_type:VIEW, object_name:FUN_BAL_LINES_T#, status:VALID,
-
VIEW: FUN.FUN_BAL_ERRORS_T#
12.2.2
owner:FUN, object_type:VIEW, object_name:FUN_BAL_ERRORS_T#, status:VALID,
-
View: OKS_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_LINE_DETAILS_V, object_name:OKS_LINE_DETAILS_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_LINE_DETAILS_V ,
-
View: OKS_BILLPRST_SRVLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SRVLINE_V, object_name:OKS_BILLPRST_SRVLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_SRVLINE_V ,
-
View: OKS_BILLPRST_SRVLINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SRVLINE_V, object_name:OKS_BILLPRST_SRVLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_SRVLINE_V ,
-
View: OKS_BILLPRST_SUBSCRLINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SUBSCRLINE_V, object_name:OKS_BILLPRST_SUBSCRLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_SUBSCRLINE_V ,
-
View: OKS_BILLPRST_SUBSCRLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SUBSCRLINE_V, object_name:OKS_BILLPRST_SUBSCRLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_SUBSCRLINE_V ,
-
View: OKS_CONTRACT_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CONTRACT_DTLS_V, object_name:OKS_CONTRACT_DTLS_V, status:VALID, product: OKS - Service Contracts , description: Service contracts invoice details view. , implementation_dba_data: APPS.OKS_CONTRACT_DTLS_V ,
-
View: OKS_BILLPRST_USGSUBLINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_USGSUBLINE_V, object_name:OKS_BILLPRST_USGSUBLINE_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_BILLPRST_USGSUBLINE_V ,
-
VIEW: APPS.OKL_CS_SERVICE_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_SERVICE_ASSETS_UV, object_name:OKL_CS_SERVICE_ASSETS_UV, status:VALID,
-
TABLE: OKS.OKS_USAGE_COUNTERS_INTERFACE
12.2.2
owner:OKS, object_type:TABLE, object_name:OKS_USAGE_COUNTERS_INTERFACE, status:VALID,
-
VIEW: PSA.PSA_BC_ACCOUNTING_ERRORS#
12.2.2
owner:PSA, object_type:VIEW, object_name:PSA_BC_ACCOUNTING_ERRORS#, status:VALID,
-
VIEW: APPS.OKS_BILLPRST_SUBSCRLINE_V
12.2.2
-
VIEW: OKS.OKS_COVERED_LEVELS_INTERFACE#
12.2.2
owner:OKS, object_type:VIEW, object_name:OKS_COVERED_LEVELS_INTERFACE#, status:VALID,
-
TABLE: FUN.FUN_BAL_ERRORS_T
12.1.1
owner:FUN, object_type:TABLE, fnd_design_data:FUN.FUN_BAL_ERRORS_T, object_name:FUN_BAL_ERRORS_T, status:VALID,
-
TABLE: OKS.OKS_INT_USAGE_COUNTER_STG_TEMP
12.2.2
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_INT_USAGE_COUNTER_STG_TEMP, object_name:OKS_INT_USAGE_COUNTER_STG_TEMP, status:VALID,
-
VIEW: APPS.OKS_LINE_DETAILS_V
12.1.1
-
VIEW: APPS.OKS_LINE_DETAILS_V
12.2.2
-
VIEW: OKS.OKS_USAGE_COUNTERS_INTERFACE#
12.2.2
owner:OKS, object_type:VIEW, object_name:OKS_USAGE_COUNTERS_INTERFACE#, status:VALID,
-
VIEW: APPS.OKS_BILLPRST_SUBSCRLINE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SUBSCRLINE_V, object_name:OKS_BILLPRST_SUBSCRLINE_V, status:VALID,
-
VIEW: APPS.OKS_BILLPRST_USGSUBLINE_V
12.2.2
-
VIEW: OKS.OKS_INT_USAGE_COUNTER_STG_TEM#
12.2.2
owner:OKS, object_type:VIEW, object_name:OKS_INT_USAGE_COUNTER_STG_TEM#, status:VALID,
-
VIEW: APPS.OKS_BILLPRST_SRVSUBLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_BILLPRST_SRVSUBLINE_V, object_name:OKS_BILLPRST_SRVSUBLINE_V, status:VALID,
-
View: OKS_CONTRACT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CONTRACT_DTLS_V, object_name:OKS_CONTRACT_DTLS_V, status:VALID, product: OKS - Service Contracts , description: Service contracts invoice details view. , implementation_dba_data: APPS.OKS_CONTRACT_DTLS_V ,
-
VIEW: APPS.OKS_CONTRACT_DTLS_V
12.1.1
-
VIEW: APPS.OKS_CONTRACT_DTLS_V
12.2.2
-
VIEW: APPS.OKS_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_LINE_DETAILS_V, object_name:OKS_LINE_DETAILS_V, status:VALID,
-
VIEW: APPS.OKS_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_LINE_DETAILS_V, object_name:OKS_LINE_DETAILS_V, status:VALID,
-
VIEW: OKS.OKS_INT_LINE_STG_TEMP#
12.2.2
owner:OKS, object_type:VIEW, object_name:OKS_INT_LINE_STG_TEMP#, status:VALID,