Search Results okl_late_policies_all_b
Overview
The OKL_LATE_POLICIES_ALL_B table is a core data object within the Oracle E-Business Suite (EBS) Leasing and Finance Management (OKL) module. 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 enables the systematic enforcement of financial penalties for delinquent payments, a critical function for revenue assurance and contract management. Its role is integral to the automated dunning and collections processes within the application, ensuring that late fee calculations are consistent, configurable, and auditable across all business units.
Key Information Stored
The table's structure is designed to capture the essential parameters of a late charge policy. While the full column list is not detailed in the provided metadata, the documented primary and foreign keys reveal its foundational elements. The primary key column, ID, uniquely identifies each policy record. A critical foreign key, IDX_ID, links the policy to a specific index record in the OKL_INDICES table. This relationship is fundamental, as it typically allows the late charge calculation to be based on a published rate or index (e.g., a prime rate). Other columns in the table would logically store attributes such as the policy name, effective dates, calculation method (flat fee, percentage, tiered), grace periods, minimum and maximum charge amounts, and the organizational context (via a ORG_ID column implied by the "_ALL_" suffix in the table name, which supports multi-org architecture).
Common Use Cases and Queries
This table is central to operational and analytical activities. A common use case is the batch process that identifies overdue contract lines and applies the configured late policy to generate charge lines. For reporting and administration, users often query this table to audit active policies or analyze late fee revenue. Sample SQL patterns include joining to contract headers to list applicable policies or validating index linkages.
- Retrieving all active late policies for a business unit:
SELECT * FROM OKL_LATE_POLICIES_ALL_B WHERE ORG_ID = :org_id AND SYSDATE BETWEEN START_DATE AND NVL(END_DATE, SYSDATE); - Finding the index details for a specific policy:
SELECT lp.*, idx.NAME FROM OKL_LATE_POLICIES_ALL_B lp JOIN OKL_INDICES idx ON lp.IDX_ID = idx.ID WHERE lp.ID = :policy_id;
Related Objects
The table maintains defined relationships with other key EBS objects, primarily through foreign key constraints. As per the provided metadata, the table has one documented foreign key relationship where it references another table.
- OKL_INDICES: This is the primary related table. The
IDX_IDcolumn inOKL_LATE_POLICIES_ALL_Breferences theOKL_INDICEStable. This join allows a late policy to utilize a financial index (like an interest rate) as a basis for calculating variable late charges.
In a typical implementation, OKL_LATE_POLICIES_ALL_B would also be referenced by contract or stream definition tables to assign a late policy, and by transactional tables that store the calculated late charge lines, though these specific relationships are not detailed in the excerpt provided.
-
Table: OKL_LATE_POLICIES_ALL_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_LATE_POLICIES_ALL_B, object_name:OKL_LATE_POLICIES_ALL_B, status:VALID, product: OKL - Lease and Finance Management , description: Policy for charging on overdue receivables , implementation_dba_data: OKL.OKL_LATE_POLICIES_ALL_B ,
-
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 ,