Search Results function_validate_rsts_meaning
Overview
OKL_INSTANCE_CHECKLIST_DTL_UV is an APPS-owned database view within the Oracle Lease and Finance Management (OKL) product family. It presents funding checklist instance details — the individual checklist line items attached to a lease or funding transaction, together with their validation outcomes and descriptive lookups. The "UV" suffix follows the Oracle E-Business Suite convention for a user-facing validation view, indicating that the object is intended for direct query by forms, concurrent programs, and reporting tools rather than being a private implementation detail.
The view's principal role is to translate the raw code values stored on checklist detail records into human-readable meanings. It resolves TODO_ITEM_CODE, mandatory and completion flags, validation statuses, and checklist types against FND_LOOKUPS, so that downstream consumers receive fully decoded rows without needing to join lookups themselves. The object is classified as VALID and is present in both Oracle EBS 12.1.1 and 12.2.2, making it a stable reference point across release upgrades.
Underlying Base Objects
The view is defined over the following documented base objects:
- OKL_CHECKLIST_DETAILS (synonym) — the driving table, aliased CLD. It supplies the checklist line identity, checklist header reference, TODO item code, flags, validation results and messages, descriptive flexfield attributes, and the standard WHO columns. It is the table that actually stores the checklist instance data against a funding transaction.
- FND_LOOKUPS (view) — joined six times under the aliases FLK, FLK2, FLK3, FLK4, FLK6 and FLK7 to decode lookup codes from the OKL_TODO_ITEMS, OKL_YES_NO and related lookup types into meanings and descriptions.
- OKL_DATA_SRC_FNCTNS_B (synonym) — aliased FUN, providing the function name and source for the validation function referenced on the detail row.
- FND_GLOBAL (package) — the standard EBS context package underlying org and user security behavior in OKL views.
All base tables are referenced through APPS synonyms, so querying the view requires no fully qualified schema prefix. Outer joins are implemented with NVL defaults rather than explicit (+) syntax for the flag columns, so a missing flag is presented as 'N' and a missing validation result as 'UNDETERMINED'.
Key Columns
- ID, OBJECT_VERSION_NUMBER, CKL_ID — primary key of the checklist detail row, its OVN for optimistic locking, and the parent checklist identifier.
- TODO_ITEM_CODE / TODO_ITEM_MEANING / DESCRIPTION — the code and decoded meaning of the checklist item.
- MANDATORY_FLAG — NVL-normalized to 'N'; decoded in MANDATORY_FLAG_MEANING from the OKL_YES_NO lookup type.
- USER_COMPLETE_FLAG — whether the user has marked the item complete; also decoded from OKL_YES_NO.
- FUNCTION_VALIDATE_RSTS / FUNCTION_VALIDATE_MSG — outcome and message of the validation function, defaulted to 'UNDETERMINED'.
- CHECKIST_RESULTS — a DECODE that returns the completion meaning when no function is attached, otherwise the validation result meaning.
- FUNCTION_ID / FUNCTION_NAME / FUNCTION_SOURCE — the validation function applied to the item.
- INST_CHECKLIST_TYPE / INST_CHECKLIST_TYPE_MEANING — the checklist type and its decoded meaning.
- ATTRIBUTE1–ATTRIBUTE15, ATTRIBUTE_CATEGORY — descriptive flexfield context and segments.
- ORG_ID, REQUEST_ID, PROGRAM_ID — multi-org and concurrent program audit context.
Common Use Cases and Queries
The view is typically queried to report funding checklist status per transaction, to identify incomplete mandatory items before funding release, and to inspect validation failures. A representative query follows:
SELECT ckl_id, todo_item_meaning, mandatory_flag_meaning, user_complete_flag_meaning, function_validate_rsts, function_validate_msg FROM okl_instance_checklist_dtl_uv WHERE ckl_id = :p_ckl_id ORDER BY id;SELECT ckl_id, COUNT(*) FROM okl_instance_checklist_dtl_uv WHERE mandatory_flag = 'Y' AND user_complete_flag = 'N' GROUP BY ckl_id;SELECT todo_item_meaning, function_validate_rsts, function_validate_msg FROM okl_instance_checklist_dtl_uv WHERE function_validate_rsts = 'FAILED';
Because the user searched for okl_yes_no, it is worth noting that this lookup type underpins the MANDATORY_FLAG and USER_COMPLETE_FLAG decodes; the FK numbers FLK2 and FLK3 reference OKL_YES_NO, while FLK6 provides the completion meaning used inside CHECKIST_RESULTS. Integrations that extract checklist data should filter on ORG_ID and use OBJECT_VERSION_NUMBER when writing back.
-
View: OKL_INSTANCE_CHECKLIST_DTL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INSTANCE_CHECKLIST_DTL_UV, object_name:OKL_INSTANCE_CHECKLIST_DTL_UV, status:VALID, product: OKL - Lease and Finance Management , description: Funding Checklist Instance Details , implementation_dba_data: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV ,
-
View: OKL_CHECKLIST_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLIST_DETAILS_UV, object_name:OKL_CHECKLIST_DETAILS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interfacer view for funding checklist details page , implementation_dba_data: APPS.OKL_CHECKLIST_DETAILS_UV ,
-
View: OKL_INSTANCE_CHECKLIST_DTL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INSTANCE_CHECKLIST_DTL_UV, object_name:OKL_INSTANCE_CHECKLIST_DTL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Funding Checklist Instance Details , implementation_dba_data: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV ,
-
View: OKL_CHECKLIST_DETAILS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLIST_DETAILS_UV, object_name:OKL_CHECKLIST_DETAILS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interfacer view for funding checklist details page , implementation_dba_data: APPS.OKL_CHECKLIST_DETAILS_UV ,
-
VIEW: APPS.OKL_CHECKLIST_DETAILS_UV
12.2.2
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.1.1
-
VIEW: APPS.OKL_CHECKLIST_DETAILS_UV
12.1.1
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.2.2
-
VIEW: APPS.OKL_CHECKLIST_DETAILS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLIST_DETAILS_UV, object_name:OKL_CHECKLIST_DETAILS_UV, status:VALID,
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INSTANCE_CHECKLIST_DTL_UV, object_name:OKL_INSTANCE_CHECKLIST_DTL_UV, status:VALID,
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INSTANCE_CHECKLIST_DTL_UV, object_name:OKL_INSTANCE_CHECKLIST_DTL_UV, status:VALID,
-
VIEW: APPS.OKL_CHECKLIST_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLIST_DETAILS_UV, object_name:OKL_CHECKLIST_DETAILS_UV, status:VALID,
-
APPS.OKL_KBK_APPROVALS_WF SQL Statements
12.1.1
-
APPS.OKL_KBK_APPROVALS_WF SQL Statements
12.2.2
-
APPS.OKL_KBK_APPROVALS_WF dependencies on OKL_INSTANCE_CHECKLIST_DTL_UV
12.2.2
-
APPS.OKL_KBK_APPROVALS_WF dependencies on OKL_INSTANCE_CHECKLIST_DTL_UV
12.1.1
-
PACKAGE BODY: APPS.OKL_KBK_APPROVALS_WF
12.2.2
-
PACKAGE BODY: APPS.OKL_KBK_APPROVALS_WF
12.1.1
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,