Search Results lcs_lcg_uk
Overview
The OKL_LTE_CHRG_SETUPS table is a core data object within the Oracle E-Business Suite (EBS) Leasing and Finance Management (OKL) module. It serves as the master repository for defining penalty charge setups, which are critical for automated delinquency management. Specifically, this table stores the configuration rules that determine when and how a penalty is assessed against a lessee or borrower for failing to pay an invoice by its due date. Its role is to provide the system with the necessary parameters to calculate late charges, ensuring consistent and rule-based enforcement of payment terms across all lease and finance contracts.
Key Information Stored
The table stores the setup parameters that link a specific penalty rule to a financial product and define its calculation logic. Based on the provided metadata, key columns include the primary identifier (ID) and the foreign key columns that establish critical relationships. The column PDT_ID links the charge setup to a specific product defined in OKL_PRODUCTS, allowing for product-specific penalty rules. The column TDF_ID links to the OKL_TUOM_DFNTNS_B table, which holds time unit of measure definitions (e.g., days, months), essential for calculating periods like grace days. The table also enforces a unique key (LCS_LCG_UK) on the combination of ISE_ID and PDT_ID, which likely ensures that a given invoice source (ISE_ID) for a product has a single active charge setup.
Common Use Cases and Queries
The primary use case is the automated generation of late charge lines during the invoice delinquency process. A batch program would query this table to find the applicable charge setup for an overdue invoice based on its product and source, then apply the defined rules to calculate the penalty amount. Common reporting and validation queries include listing all active charge setups for a product family or identifying products missing a charge setup. A sample SQL pattern to retrieve a basic setup is:
- SELECT lcs.id, lcs.pdt_id, pdt.name product_name, lcs.tdf_id FROM okl_lte_chrg_setups lcs, okl_products pdt WHERE lcs.pdt_id = pdt.id AND pdt.id = :p_product_id;
This table is also central for functional setups during implementation, where consultants define the late charge policies aligned with business and regulatory requirements.
Related Objects
The OKL_LTE_CHRG_SETUPS table has defined foreign key relationships with other master tables in the OKL schema, forming an integral part of the product and rules configuration data model.
- OKL_PRODUCTS: Joined via the PDT_ID column. This relationship ties the late charge rule to a specific leasing or financial product, ensuring charges are assessed correctly based on the contract's product type.
- OKL_TUOM_DFNTNS_B: Joined via the TDF_ID column. This relationship provides the unit of measure (e.g., "Day") for any time-based fields within the charge setup, such as a grace period before penalties are applied.
These relationships are critical for maintaining data integrity and for any joins required in operational reports or interface programs that need to display product details or time units alongside the charge setup rules.
-
Table: OKL_LTE_CHRG_SETUPS
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_LTE_CHRG_SETUPS, object_name:OKL_LTE_CHRG_SETUPS, status:VALID, product: OKL - Leasing and Finance Management , description: When a lessee/borrower does not pay an invoice prior to the due date, a penalty can be assessed , implementation_dba_data: OKL.OKL_LTE_CHRG_SETUPS ,