Search Results okl_cs_vendors_uv
Overview
OKL_CS_VENDORS_UV is a read-only database view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It is delivered as part of the OKL product family, Oracle Leasing and Finance Management, and resides in the ETRM (Enterprise Transaction and Relationship Management) layer that underpins contract and lease servicing. The view presents vendor parties that have been associated with an Oracle Contracts or lease contract as a party role, together with their address and contact details sourced from the Purchasing vendor master. It effectively joins the contract header to the party role assignment and then to the vendor and vendor site records, producing a denormalized, report-friendly result set.
The "_UV" suffix indicates a user-facing view intended primarily for reporting, ad hoc query, and downstream integration rather than for transactional maintenance. The view carries no update, insert, or delete semantics; consumers select from it directly. In the ETRM security model, access to the view is granted through the APPS schema and typically inherited by responsibility-level users who already have inquiry privileges on leasing contracts and vendors.
Underlying Base Objects
The view is defined over four primary base objects, with a fifth referenced for session context:
- OKC_K_HEADERS_B (synonym) — the Contracts core header table. Supplies CONTRACT_ID (ID) and CONTRACT_NUMBER, and is the anchor for the DNZ_CHR_ID / CHR_ID join condition.
- OKC_K_PARTY_ROLES_V (view) — the party role assignment view. Supplies ROLE_NAME (PR.ROLE) and the join predicates connecting a vendor to a contract via OBJECT1_ID1 = VENDOR_ID and JTOT_OBJECT1_CODE = 'OKX_VENDOR'.
- PO_VENDORS (view) — the vendor master. Supplies COMPANY (VENDOR_NAME) and CUSTOMER_NUMBER (SEGMENT1).
- PO_VENDOR_SITES_ALL (view) — vendor site and site-level address/contact data. Supplies EMAIL, PHONE, ADDRESS1–4, CITY, COUNTY, PROVINCE, STATE, POSTAL_CODE, and COUNTRY.
- FND_GLOBAL (package) — referenced in the documented metadata for session/application context resolution rather than as a joined data source.
The join chain is: PO_VENDORS.VENDOR_ID = PO_VENDOR_SITES_ALL.VENDOR_ID, and PR.OBJECT1_ID1 = PO_VENDORS.VENDOR_ID, with PR.DNZ_CHR_ID = CHR.ID and PR.CHR_ID = CHR.ID linking the party role to the contract header.
Key Columns
- CONTRACT_ID / CONTRACT_NUMBER — Identifier and human-readable number of the lease or contract header.
- ROLE_NAME — The party role the vendor plays on the contract (for example, lessor or supplier role assignment).
- AMT_GUARANTEED / PTYPE — Placeholder columns returned as empty string literals ('' and NVL('','')), reserved for residual/guarantee reporting extensions and not populated by the current definition.
- COMPANY / CUSTOMER_NUMBER — Vendor name and vendor number segment from PO_VENDORS.
- EMAIL / PHONE — Contact data from the vendor site; PHONE is concatenated as AREA_CODE || '-' || PHONE.
- ADDRESS1–4, CITY, COUNTY, PROVINCE, STATE, POSTAL_CODE, COUNTRY — Full mailing address attributes drawn from PO_VENDOR_SITES_ALL.
Common Use Cases and Queries
Typical usage includes contract party listings, vendor contact extracts for lease documentation, and integration feeds requiring vendor address data tied to specific contracts.
List all vendors on a given contract:
SELECT contract_number, role_name, company, email, phone
FROM apps.okl_cs_vendors_uv
WHERE contract_number = :contract_number;
Locate contracts associated with a vendor company:
SELECT contract_number, role_name, city, state, country
FROM apps.okl_cs_vendors_uv
WHERE company = :vendor_name;
Produce a mailing extract for contract correspondence by filtering on postal attributes and excluding blank emails. Because the view is read-only and joins several base objects, queries should be constrained by contract or vendor to avoid broad full scans across OKC_K_HEADERS_B and the vendor master.
-
View: OKL_CS_VENDORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_VENDORS_UV, object_name:OKL_CS_VENDORS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_VENDORS_UV ,
-
View: OKL_CS_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_VENDORS_UV, object_name:OKL_CS_VENDORS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_VENDORS_UV ,
-
VIEW: APPS.OKL_CS_PARTIES_TAB_UV
12.2.2
-
VIEW: APPS.OKL_CS_PARTIES_TAB_UV
12.1.1
-
VIEW: APPS.OKL_CS_ALL_PARTIES_W_AMOUNT_UV
12.2.2
-
View: OKL_CS_PARTIES_TAB_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PARTIES_TAB_UV, object_name:OKL_CS_PARTIES_TAB_UV, status:VALID, product: OKL - Lease and Finance Management , description: List of Parties , implementation_dba_data: APPS.OKL_CS_PARTIES_TAB_UV ,
-
View: OKL_CS_PARTIES_TAB_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PARTIES_TAB_UV, object_name:OKL_CS_PARTIES_TAB_UV, status:VALID, product: OKL - Leasing and Finance Management , description: List of Parties , implementation_dba_data: APPS.OKL_CS_PARTIES_TAB_UV ,
-
VIEW: APPS.OKL_CS_PARTIES_TAB_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PARTIES_TAB_UV, object_name:OKL_CS_PARTIES_TAB_UV, status:VALID,
-
VIEW: APPS.OKL_CS_ALL_PARTIES_W_AMOUNT_UV
12.1.1
-
VIEW: APPS.OKL_CS_PARTIES_TAB_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PARTIES_TAB_UV, object_name:OKL_CS_PARTIES_TAB_UV, status:VALID,
-
VIEW: APPS.OKL_CS_VENDORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_VENDORS_UV, object_name:OKL_CS_VENDORS_UV, status:VALID,
-
VIEW: APPS.OKL_CS_VENDORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_VENDORS_UV, object_name:OKL_CS_VENDORS_UV, status:VALID,
-
VIEW: APPS.OKL_CS_ALL_PARTIES_W_AMOUNT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_ALL_PARTIES_W_AMOUNT_UV, object_name:OKL_CS_ALL_PARTIES_W_AMOUNT_UV, status:VALID,
-
VIEW: APPS.OKL_CS_ALL_PARTIES_W_AMOUNT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_ALL_PARTIES_W_AMOUNT_UV, object_name:OKL_CS_ALL_PARTIES_W_AMOUNT_UV, status:VALID,
-
View: OKL_CS_ALL_PARTIES_W_AMOUNT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_ALL_PARTIES_W_AMOUNT_UV, object_name:OKL_CS_ALL_PARTIES_W_AMOUNT_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_ALL_PARTIES_W_AMOUNT_UV ,
-
View: OKL_CS_ALL_PARTIES_W_AMOUNT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_ALL_PARTIES_W_AMOUNT_UV, object_name:OKL_CS_ALL_PARTIES_W_AMOUNT_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_ALL_PARTIES_W_AMOUNT_UV ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.OKC_K_PARTY_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_PARTY_ROLES_V, object_name:OKC_K_PARTY_ROLES_V, status:VALID,
-
VIEW: APPS.OKC_K_PARTY_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_PARTY_ROLES_V, object_name:OKC_K_PARTY_ROLES_V, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
SYNONYM: APPS.OKC_K_HEADERS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_K_HEADERS_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,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - OKC Tables and Views
12.2.2
description: Intersection entity between rules and templates ,
-
eTRM - OKC Tables and Views
12.1.1
description: Intersection entity between templates and rules. ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
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 - OKC Tables and Views
12.1.1
description: Intersection entity between templates and rules. ,
-
eTRM - OKC Tables and Views
12.2.2
description: Intersection entity between rules and templates ,