Search Results okl_fun_validate_rsts




Overview

APPS.OKL_CREDIT_CHECKLISTS_UV is a user-facing (UV) view within the Oracle E-Business Suite Lease and Finance Management (OKL) module. Its purpose is to present the credit checklist configuration used by the lease credit approval workflow, resolving the underlying flexfield segments stored in OKC_RULES_B into human-readable meaning columns. Each row represents a single checklist item (todo item) associated with a credit rule group, exposing the item code, whether the item is mandatory, whether it is checked off, its validation status, and any associated function-driven validation logic.

Because credit approval decisions depend on a defined sequence of checklist items and their pass/fail outcomes, this view serves as the reporting and integration layer over that configuration. Rather than exposing raw rule information segments, it decodes them into meaningful values via FND_LOOKUPS, which makes it suitable for both internal EBS inquiry screens and external reporting extracts.

The view is particularly relevant to the lookup code okl_fun_validate_rsts: the validation status of each checklist item is derived from the OKL_FUN_VALIDATE_RSTS lookup type, and columns such as FUNCTION_VALIDATE_RSTS, FUNC_VAL_RSTS_MEANING, and CHECKIST_RESULTS are driven by this lookup.

Underlying Base Objects

The view is built from the following documented base objects:

Key Columns

Common Use Cases and Queries

A typical use case is auditing outstanding credit checklist items that remain mandatory but unchecked, or reviewing function validation results. Because the user specifically searched for okl_fun_validate_rsts, a natural query filters on the validation result meaning:

  • SELECT id, khr_id, todo_item_code, mandatory_flag_meaning, check_off_results, function_validate_rsts, func_val_rsts_meaning FROM apps.okl_credit_checklists_uv WHERE function_validate_rsts = 'UNDETERMINED';
  • SELECT khr_id, todo_item_code, status_meaning, checklist_type_meaning FROM apps.okl_credit_checklists_uv WHERE mandatory_flag = 'Y' AND check_off = 'N';
  • Querying FUNCTION_NAME and FUNCTION_SOURCE to identify which validation functions are attached to checklist items for troubleshooting credit approval failures.

The view is also useful for integration extracts that feed credit decisioning engines, since it delivers fully decoded checklist state without requiring callers to understand the OKC_RULES_B flexfield layout.