Search Results okl_late_policies_b
Overview
The table OKL_LATE_POLICIES_B is a core data object within the Oracle E-Business Suite (EBS) module OKL (Leasing and Finance Management). It serves as the primary repository for defining and storing policies that govern the calculation and application of late charges on overdue receivables. In the context of lease and finance contracts, this table is critical for automating the enforcement of financial penalties, ensuring consistent application of terms, and supporting revenue assurance. Its role is integral to the receivables management lifecycle, interfacing with contract and billing engines to apply defined penalty structures when payment obligations are not met.
Key Information Stored
While the full column list is not provided in the metadata, the documented foreign key relationships and primary key indicate the essential data elements. The primary key column, ID, uniquely identifies each late charge policy record. The table stores configuration details that link a late charge policy to specific financial and definitional components. Crucially, it holds foreign key references to an index (via IDX_ID) and a time unit of measure definition (via TDF_ID). The index link (to OKL_INDICES) is typically used to define the interest rate or basis for calculating the late charge amount. The link to OKL_TUOM_DFNTNS_B (Time Unit of Measure Definitions) defines the periodicity (e.g., daily, monthly) for charge assessment. Other likely columns include policy name, description, effective dates, calculation methods (flat fee, percentage), grace periods, and charge caps.
Common Use Cases and Queries
The primary use case is the automated generation of late charges during the billing or dunning process for delinquent lease contracts. A batch process would query active policies and apply them to overdue invoice lines based on contract terms. Common reporting needs include auditing all configured late policies or analyzing applied charges. A sample SQL pattern to list active policies with their associated index and time unit would be:
- SELECT lp.name, lp.id, i.index_name, tdf.meaning time_unit
- FROM okl_late_policies_b lp,
- okl_indices i,
- okl_tuom_dfntns_b tdf
- WHERE lp.idx_id = i.id
- AND lp.tdf_id = tdf.id
- AND SYSDATE BETWEEN lp.start_date AND NVL(lp.end_date, SYSDATE);
Technical consultants may query this table to debug charge calculation issues or to validate setup during implementations.
Related Objects
OKL_LATE_POLICIES_B is centrally connected to other key setup and transactional tables in OKL through documented foreign key relationships. The table references two critical setup entities:
- OKL_INDICES: Joined via the column
OKL_LATE_POLICIES_B.IDX_ID. This relationship ties the late charge policy to a specific financial index (e.g., a prime rate) used in variable charge calculations. - OKL_TUOM_DFNTNS_B: Joined via the column
OKL_LATE_POLICIES_B.TDF_ID. This links the policy to a defined time unit, establishing the frequency (e.g., per day, per month) for charge accrual.
While not listed in the provided metadata, this table is likely referenced by transactional tables that store contract terms (e.g., OKL_K_HEADERS_B) or applied charge lines (e.g., OKL_CHRG_LNS_B), forming the backbone of the late fee assessment engine.
-
Table: OKL_LATE_POLICIES_B
12.2.2
product: OKL - Lease and Finance Management , description: Policy for charging on overdue receivables , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_TUOM_DFNTNS_B
12.2.2
product: OKL - Lease and Finance Management , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_LATE_POLICIES_TL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_LATE_POLICIES_TL, object_name:OKL_LATE_POLICIES_TL, status:VALID, product: OKL - Lease and Finance Management , description: Translatable columns from OKL_LATE_POLICIES_B, per MLS standards , implementation_dba_data: OKL.OKL_LATE_POLICIES_TL ,
-
Table: OKL_INDICES
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_INDICES, object_name:OKL_INDICES, status:VALID, product: OKL - Lease and Finance Management , description: Interest rate header , implementation_dba_data: OKL.OKL_INDICES ,
-
View: OKL_BPD_LATE_POLICIES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_LATE_POLICIES_UV, object_name:OKL_BPD_LATE_POLICIES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_BPD_LATE_POLICIES_UV ,
-
View: OKL_LATE_POLICIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LATE_POLICIES_V, object_name:OKL_LATE_POLICIES_V, status:VALID, product: OKL - Lease and Finance Management , description: Policy for charging on overdue receivables , implementation_dba_data: APPS.OKL_LATE_POLICIES_V ,