Search Results cat_cat_uk
Overview
The table OKL_CASH_ALLCTN_RLS is a core data object within the Oracle E-Business Suite (EBS) module OKL (Leasing and Finance Management). It functions as a repository for generic attributes that are applied to all mismatched receipts. In the context of lease and finance management, mismatched receipts typically refer to incoming cash payments that cannot be automatically applied to a specific contract or invoice due to discrepancies in amount, date, or other identifying information. This table is integral to the cash application and allocation processes, providing a standardized set of rules or attributes that govern how such unapplied cash is handled within the system.
Key Information Stored
Based on the provided ETRM metadata, the table's structure is defined by its primary and foreign keys. The primary identifier for a record is the ID column, as defined by the primary key constraint OKL_CASH_ALLCTN_RLS_PK. A second unique key constraint, CAT_CAT_UK, is defined on the NAME column, indicating this field stores a unique, descriptive identifier for the rule set. A critical foreign key column is CAU_ID, which links the rule to its parent header record in the OKL_CSH_ALLCTN_RL_HDR table. This relationship structures the rule definition within a broader hierarchy.
Common Use Cases and Queries
This table supports operational and reporting activities related to cash management. A common use case involves querying the active rules to understand the default treatment of unapplied cash or during the troubleshooting of cash application errors. System administrators or functional consultants may query the table to audit configuration. A typical SQL pattern would join the table to its header to get a complete view of a rule set:
- SELECT rls.id, rls.name, hdr.rule_code FROM okl_cash_allctn_rls rls, okl_csh_allctn_rl_hdr hdr WHERE rls.cau_id = hdr.id;
Another critical use case is during the cash application engine's execution, where the system references the attributes stored here to determine the subsequent action for a mismatched receipt, such as holding it for manual review or creating an on-account credit.
Related Objects
The ETRM documentation specifies clear relationships for this table. It is a child table within a hierarchy and is also referenced by another transactional table.
- Parent Table (Foreign Key Reference): The table OKL_CSH_ALLCTN_RL_HDR is referenced via the column OKL_CASH_ALLCTN_RLS.CAU_ID. This defines the header-detail relationship for cash allocation rules.
- Child Table (Referenced by Foreign Key): The table OKL_XTL_CSH_APPS_B references OKL_CASH_ALLCTN_RLS via its column OKL_XTL_CSH_APPS_B.CAT_ID. This indicates that transactional cash application records store a key pointing back to the specific rule (CAT_ID) that was applied or relevant to that transaction.
-
Table: OKL_CASH_ALLCTN_RLS
12.1.1
product: OKL - Leasing and Finance Management , description: Contains generic attributes applied to all mismatched receipts , implementation_dba_data: Not implemented in this database ,