Search Results object1_id2
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: 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: OKS.OKS_K_ORDER_CONTACTS#
12.2.2
-
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: OKC.OKC_K_ITEMS#
12.2.2
-
VIEW: OKL.OKL_SGN_TRANSLATIONS#
12.2.2
-
VIEW: OKC.OKC_K_REL_OBJS#
12.2.2
-
VIEW: OKC.OKC_K_ITEMS_H#
12.2.2
-
VIEW: IEX.IEX_EXCLUSION_HIST_B#
12.2.2
-
VIEW: OKC.OKC_OPERATION_INSTANCES#
12.2.2
-
VIEW: OKC.OKC_CONTACTS#
12.2.2
-
VIEW: OKS.OKS_BILLRATE_SCHEDULES#
12.2.2
-
VIEW: IEX.IEX_OPEN_INT_HST#
12.2.2
-
VIEW: OKC.OKC_K_PARTY_ROLES_B#
12.2.2
-
VIEW: OKS.OKS_SERV_AVAILS#
12.2.2
-
VIEW: OKC.OKC_CONTACTS_H#
12.2.2
-
VIEW: OKS.OKS_BILLRATE_SCHEDULES_H#
12.2.2
-
VIEW: OKS.OKS_SERV_AVAIL_EXCEPTS#
12.2.2
-
VIEW: OKC.OKC_K_PARTY_ROLES_BH#
12.2.2
-
VIEW: OKL.OKL_STREAM_INTERFACES#
12.2.2
-
VIEW: OKC.OKC_RULES_BH#
12.2.2
-
VIEW: APPS.OKL_K_VENDORS_UV
12.1.1
-
View: OKL_CONTRACT_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CONTRACT_VENDORS_UV, object_name:OKL_CONTRACT_VENDORS_UV, status:VALID, product: OKL - Lease and Finance Management , description: Contract Lease vendors UI view , implementation_dba_data: APPS.OKL_CONTRACT_VENDORS_UV ,
-
View: OKL_FUND_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FUND_VENDORS_UV, object_name:OKL_FUND_VENDORS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for vendors lov on funding page , implementation_dba_data: APPS.OKL_FUND_VENDORS_UV ,
-
VIEW: APPS.OKS_K_ORDER_CONTACTS_V
12.2.2
-
View: OKL_K_VENDORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_VENDORS_UV, object_name:OKL_K_VENDORS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for passthrough vendors list of value , implementation_dba_data: APPS.OKL_K_VENDORS_UV ,
-
VIEW: APPS.OKL_K_VENDORS_UV
12.2.2
-
View: OKL_K_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_VENDORS_UV, object_name:OKL_K_VENDORS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for passthrough vendors list of value , implementation_dba_data: APPS.OKL_K_VENDORS_UV ,
-
VIEW: OKL.OKL_RULES_DFF#
12.2.2
-
VIEW: OKS.OKS_RULES_DFF#
12.2.2
-
View: OKL_FUND_VENDORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FUND_VENDORS_UV, object_name:OKL_FUND_VENDORS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for vendors lov on funding page , implementation_dba_data: APPS.OKL_FUND_VENDORS_UV ,
-
View: OKS_K_ORDER_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_K_ORDER_CONTACTS_V, object_name:OKS_K_ORDER_CONTACTS_V, status:VALID, product: OKS - Service Contracts , description: view for Order contacts , implementation_dba_data: APPS.OKS_K_ORDER_CONTACTS_V ,
-
View: OKS_K_ORDER_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_K_ORDER_CONTACTS_V, object_name:OKS_K_ORDER_CONTACTS_V, status:VALID, product: OKS - Service Contracts , description: view for Order contacts , implementation_dba_data: APPS.OKS_K_ORDER_CONTACTS_V ,
-
View: OKC_OPERATION_INSTANCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_OPERATION_INSTANCES_V, object_name:OKC_OPERATION_INSTANCES_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_OPERATION_INSTANCES_V ,
-
VIEW: APPS.OKL_LA_VENDORS_UV
12.1.1
-
View: OKL_K_LINE_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINE_VENDORS_UV, object_name:OKL_K_LINE_VENDORS_UV, status:VALID, product: OKL - Lease and Finance Management , description: Lease Contract line vendor summary view , implementation_dba_data: APPS.OKL_K_LINE_VENDORS_UV ,
-
VIEW: APPS.OKL_CONTRACT_VENDORS_UV
12.2.2
-
VIEW: APPS.OKS_K_ORDER_CONTACTS_V
12.1.1
-
View: OKL_LA_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_VENDORS_UV, object_name:OKL_LA_VENDORS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset vendors lists of values page , implementation_dba_data: APPS.OKL_LA_VENDORS_UV ,
-
VIEW: OKC.OKC_RULES_B#
12.2.2
-
VIEW: APPS.OKL_LA_ASSET_PARTIES_UV
12.2.2
-
View: OKL_LA_ASSET_PARTIES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASSET_PARTIES_UV, object_name:OKL_LA_ASSET_PARTIES_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset vendor list of values page - funding , implementation_dba_data: APPS.OKL_LA_ASSET_PARTIES_UV ,
-
View: OKL_LA_VENDORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_VENDORS_UV, object_name:OKL_LA_VENDORS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset vendors lists of values page , implementation_dba_data: APPS.OKL_LA_VENDORS_UV ,
-
View: OKR_IP_ACCESSES_V
12.1.1
product: OKR - Contracts for Rights (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: OKR_IP_ACCESSES_V
12.2.2
product: OKR - Contracts for Rights (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: OKC_REL_OBJ_PO_REQ_HEADERS_V
12.2.2
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKL_CONTRACT_VENDORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CONTRACT_VENDORS_UV, object_name:OKL_CONTRACT_VENDORS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Contract Lease vendors UI view , implementation_dba_data: APPS.OKL_CONTRACT_VENDORS_UV ,
-
View: OKL_AM_K_PARTY_ROLES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_K_PARTY_ROLES_UV, object_name:OKL_AM_K_PARTY_ROLES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_K_PARTY_ROLES_UV ,
-
VIEW: APPS.OKL_FUND_VENDORS_UV
12.2.2