Search Results okl_asset_cndtn_lns_b
Overview
The OKL_ASSET_CNDTN_LNS_B table is a core data object within the Oracle E-Business Suite (EBS) Leasing and Finance Management (OKL) module. It functions as the detailed line-level repository for asset condition reports. In the context of lease and asset management, a condition report is a formal assessment of an asset's state, typically performed at critical junctures such as lease commencement or termination. This table stores the granular, itemized observations and damage details that comprise a single condition report header. Its role is to provide an auditable, structured record of asset condition, which is essential for determining maintenance responsibilities, assessing wear and tear, and calculating potential damage charges or refurbishment costs.
Key Information Stored
While the provided metadata does not list specific columns, the table's structure and relationships indicate the nature of the data it holds. The primary key column, ID, uniquely identifies each condition line. The foreign key column ACD_ID links each line to its parent condition report header in the OKL_ASSET_CNDTNS table. Another foreign key, RPC_ID, establishes a relationship with the OKL_REPAIR_COSTS_B table, suggesting the line can be associated with a specific repair cost estimate or record. Based on the table's description, key stored information logically includes an item description, a detailed description of any damage or condition observed, codes or classifications for the type of damage, severity ratings, and references to photographic or documentary evidence. It serves as the transactional foundation for condition-related business processes.
Common Use Cases and Queries
The primary use case is the generation and management of detailed asset condition reports. This supports operational processes like check-in/check-out inspections for leased equipment or vehicles. A common reporting requirement would be to list all damage lines for a specific asset or lease contract at termination to compare against the initial condition report. A sample SQL query to retrieve condition lines for a specific report header would leverage the foreign key relationship:
- SELECT ln.* FROM OKL_ASSET_CNDTN_LNS_B ln, OKL_ASSET_CNDTNS hdr WHERE ln.acd_id = hdr.id AND hdr.asset_id = :p_asset_id AND hdr.report_type = 'TERMINATION';
Another critical use case involves integration with repair and maintenance workflows, where condition lines flagged for damage can initiate repair orders or cost recovery claims, utilizing the link to the OKL_REPAIR_COSTS_B table.
Related Objects
This table is centrally connected to several key objects in the OKL schema. Its primary relationship is with the parent header table, OKL_ASSET_CNDTNS, which contains the overall report metadata such as asset ID, lease ID, report date, and type. The foreign key to OKL_REPAIR_COSTS_B links condition observations to quantified repair estimates or actual cost transactions. In a typical EBS implementation, this base table (_B suffix) would have corresponding descriptive flexfield (_TL) and view (_V) objects, such as OKL_ASSET_CNDTN_LNS_TL for translatable columns and OKL_ASSET_CNDTN_LNS_V for a comprehensive reporting view. Business logic for creating and processing these lines is likely encapsulated within OKL-specific PL/SQL packages.
-
Table: OKL_ASSET_CNDTN_LNS_B
12.1.1
product: OKL - Leasing and Finance Management , description: The line of a condition report detailing the item description and damage , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_ASSET_CNDTN_LNS_TL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ASSET_CNDTN_LNS_TL, object_name:OKL_ASSET_CNDTN_LNS_TL, status:VALID, product: OKL - Leasing and Finance Management , description: Translatable columns from OKL_ASSET_CNDTN_LNS_B, per MLS standards , implementation_dba_data: OKL.OKL_ASSET_CNDTN_LNS_TL ,
-
Table: OKL_REPAIR_COSTS_B
12.1.1
product: OKL - Leasing and Finance Management , description: Setup table to store types of repair and a recommended cost applicable to asset condition repairs , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_ASSET_CNDTNS
12.1.1
product: OKL - Leasing and Finance Management , description: Details of a condition report of an asset , implementation_dba_data: Not implemented in this database ,
-
View: OKL_AM_ASSET_CNDTN_LNS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_CNDTN_LNS_UV, object_name:OKL_AM_ASSET_CNDTN_LNS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_CNDTN_LNS_UV ,
-
View: OKL_ASSET_CNDTN_LNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_CNDTN_LNS_V, object_name:OKL_ASSET_CNDTN_LNS_V, status:VALID, product: OKL - Leasing and Finance Management , description: The line of a condition report detailing the item description and damage , implementation_dba_data: APPS.OKL_ASSET_CNDTN_LNS_V ,