Search Results okl_k_party_roles
Overview
The OKL_K_PARTY_ROLES table is a core data object within the Oracle E-Business Suite (EBS) Leasing and Finance Management (OKL) module. It functions as the primary repository for storing and managing the roles of all parties associated with a lease contract. This table is integral to the contract party relationship model, enabling the system to track and define the responsibilities and functions of various entities—such as lessees, lessors, guarantors, and brokers—for each lease agreement. Its existence ensures that all contractual obligations and relationships are formally recorded and can be referenced throughout the lease lifecycle for processing, reporting, and compliance.
Key Information Stored
The table's structure is centered on linking a party to a specific contract role. While the provided metadata specifies the primary key column, the logical data model indicates it stores critical relationship information. The central column is the ID, which serves as the unique primary key for each party-role assignment record. This ID is a foreign key to the foundational contract party roles table in the Oracle Contracts Core module. Although specific column names are not listed in the excerpt, typical data stored includes identifiers for the lease contract header (KHR_ID), the party (CLE_ID), and the specific role code (RLE_CODE) that defines the party's function. Additional columns would manage audit information and object version numbers.
Common Use Cases and Queries
This table is essential for any process requiring a list of parties involved in a lease. Common use cases include generating lessee statements, identifying guarantors for credit checks, determining billing contacts, and producing contractual reports for audit purposes. A fundamental query pattern involves joining this table to the contract headers and party master tables to retrieve a comprehensive role-based contact list for a specific lease.
- Sample Query: Retrieving all parties and their roles for a specific contract:
SELECT kpr.khr_id, kpr.rle_code, j.party_name FROM okl_k_party_roles kpr, okc_k_party_roles_b okc, jtf_rs_resource_extns_vl j WHERE kpr.id = okc.id AND okc.cle_id = j.resource_id AND kpr.khr_id = :p_contract_id; - Reporting: It is central to reports such as "Lease Party Summary" or "Guarantor Exposure Report," where data is aggregated by role type across multiple contracts.
Related Objects
The OKL_K_PARTY_ROLES table has a direct and critical dependency on the Oracle Contracts Core schema, reflecting the layered architecture of Oracle EBS where leasing functionality is built upon a shared contracts foundation.
- OKC_K_PARTY_ROLES_B: This is the primary related object. The ID column in OKL_K_PARTY_ROLES is a foreign key that references the ID column in OKC_K_PARTY_ROLES_B. This relationship means that every party-role record in the leasing module is an extension of a base contract party role record, inheriting its core attributes.
- This table is also a likely parent to other leasing-specific tables that require detailed party-role information, though these are not specified in the provided metadata. It would be joined to the main lease header table (OKL_K_HEADERS) via the KHR_ID column and to party master tables via the CLE_ID from the referenced OKC table.
-
Table: OKL_K_PARTY_ROLES
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_PARTY_ROLES, object_name:OKL_K_PARTY_ROLES, status:VALID, product: OKL - Leasing and Finance Management , description: Lease Contract Party Roles , implementation_dba_data: OKL.OKL_K_PARTY_ROLES ,
-
Table: OKL_K_PARTY_ROLES_H
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_PARTY_ROLES_H, object_name:OKL_K_PARTY_ROLES_H, status:VALID, product: OKL - Leasing and Finance Management , description: History table for OKL_K_PARTY_ROLES , implementation_dba_data: OKL.OKL_K_PARTY_ROLES_H ,
-
View: OKL_K_PARTY_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_PARTY_ROLES_V, object_name:OKL_K_PARTY_ROLES_V, status:VALID, product: OKL - Leasing and Finance Management , description: Contract Party Roles , implementation_dba_data: APPS.OKL_K_PARTY_ROLES_V ,
-
View: OKL_LA_K_PARTY_ROLES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_K_PARTY_ROLES_UV, object_name:OKL_LA_K_PARTY_ROLES_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for party role pages , implementation_dba_data: APPS.OKL_LA_K_PARTY_ROLES_UV ,