Search Results func_val_rsts_meaning
Overview
The OKL_FUNDING_CHECKLISTS_UV view is a user interface (UI) view in the Oracle E-Business Suite OKL – Lease and Finance Management module. It belongs to the APPS schema and holds a status of VALID in both Oracle EBS 12.1.1 and 12.2.2. The view presents the lease funding checklist — the set of to-do items, validation rules, and administrative notes that must be addressed before a lease funding request can be approved and disbursed. Because it is a "UV" (User View) object, it is designed specifically as a presentation-layer query rather than as a normalized data store; the OA Framework or Forms-based UI layers query it directly to render the funding checklist pages for the lease funding request workflow.
The view does not store data itself. Instead, it denormalizes funding-checklist rule rows held in OKC_RULES_B and enriches them with human-readable lookup meanings, status descriptions, profile-option values, and registered data-source function metadata. This design means a single query returns everything needed to render a checklist row: the to-do item code and its meaning, whether the item is mandatory, whether it has been checked off, the validation result and message, the owning function, and the checklist type.
Underlying Base Objects
The view is defined over the following documented base objects:
- OKC_RULES_B (synonym) — the primary driver table. Checklist rows are stored here under the rule information category
LAFCLD, which identifies Lease and Finance checklist data. Positional columnsRULE_INFORMATION1throughRULE_INFORMATION10carry the checklist attributes. - FND_LOOKUPS (view) — joined six times (aliases LK1–LK6) to translate coded values into display meanings for to-do items, yes/no flags, validation results, checklist types, and check-off results.
- OKC_STATUSES_V (view) — supplies the status code description joined on the rule's status value (defaulting to
NEW). - OKL_DATA_SRC_FNCTNS_B (synonym) — provides the registered data-source function
NAMEandSOURCEfor the function that validates the checklist item. - FND_PROFILE (package) — used via
FND_PROFILE.VALUE('OKL_FUNDING_REQUEST_APPROVER')to expose theAPPROVERYNcolumn. - FND_GLOBAL (package) — referenced for session/user context (e.g.,
USER_ID,RESP_ID), though not shown explicitly in the excerpt.
Key Columns
- ID / RGP_ID / KHR_ID / FUND_REQ_ID — identifiers linking the checklist row to the rule, rule group, contract header, and funding request.
- TODO_ITEM_CODE / TODO_ITEM_MEANING — the checklist task identifier and its lookup meaning.
- MANDATORY_FLAG / MANDATORY_FLAG_MEANING — whether the item must be completed (Y/N).
- CHECK_OFF / CHECK_OFF_MEANING / CHECK_OFF_RESULTS — completion indicator and its result description.
- STATUS / STATUS_MEANING — workflow status of the checklist item.
- FUNCTION_VALIDATE_RSTS / FUNC_VAL_RSTS_MEANING — validation outcome (defaulting to
UNDETERMINED). - FUNCTION_VALIDATE_MSG — the message returned by the validating function. This is the column most relevant to users searching for function_validate_msg.
- FUNCTION_ID / FUNCTION_NAME / FUNCTION_SOURCE — the data-source function registered to validate the item.
- CHECKLIST_TYPE / CHECKLIST_TYPE_MEANING — defaults to
FUNDING. - NOTE / ADMIN_NOTE — free-text annotations.
Common Use Cases and Queries
The view is queried when displaying or diagnosing funding checklist behavior for a specific funding request, and when investigating validation messages produced by checklist functions.
SELECT fund_req_id, todo_item_code, todo_item_meaning,
mandatory_flag_meaning, status_meaning,
function_name, function_validate_rsts, function_validate_msg
FROM apps.okl_funding_checklists_uv
WHERE fund_req_id = :p_fund_req_id
AND check_off = 'N'
ORDER BY mandatory_flag DESC, todo_item_code;
To isolate rows whose validating function returned a message (the typical goal when searching for function_validate_msg):
SELECT fund_req_id, todo_item_code, function_name,
function_validate_rsts, function_validate_msg
FROM apps.okl_funding_checklists_uv
WHERE function_validate_msg IS NOT NULL;
Because the view joins lookup values and profile options, it is also useful for reporting on completed vs. outstanding checklist items per funding request, or for auditing which data-source function governs each to-do item.
-
View: OKL_FUNDING_CHECKLISTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FUNDING_CHECKLISTS_UV, object_name:OKL_FUNDING_CHECKLISTS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User Interface view for lease funding checklist , implementation_dba_data: APPS.OKL_FUNDING_CHECKLISTS_UV ,
-
View: OKL_CREDIT_CHECKLISTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_CHECKLISTS_UV, object_name:OKL_CREDIT_CHECKLISTS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User inteface view for lease creditline checklist , implementation_dba_data: APPS.OKL_CREDIT_CHECKLISTS_UV ,
-
View: OKL_FUNDING_CHECKLISTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FUNDING_CHECKLISTS_UV, object_name:OKL_FUNDING_CHECKLISTS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User Interface view for lease funding checklist , implementation_dba_data: APPS.OKL_FUNDING_CHECKLISTS_UV ,
-
VIEW: APPS.OKL_FUNDING_CHECKLISTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FUNDING_CHECKLISTS_UV, object_name:OKL_FUNDING_CHECKLISTS_UV, status:VALID,
-
View: OKL_CREDIT_CHECKLISTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_CHECKLISTS_UV, object_name:OKL_CREDIT_CHECKLISTS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User inteface view for lease creditline checklist , implementation_dba_data: APPS.OKL_CREDIT_CHECKLISTS_UV ,
-
VIEW: APPS.OKL_FUNDING_CHECKLISTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FUNDING_CHECKLISTS_UV, object_name:OKL_FUNDING_CHECKLISTS_UV, status:VALID,
-
VIEW: APPS.OKL_CREDIT_CHECKLISTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_CHECKLISTS_UV, object_name:OKL_CREDIT_CHECKLISTS_UV, status:VALID,
-
VIEW: APPS.OKL_CREDIT_CHECKLISTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CREDIT_CHECKLISTS_UV, object_name:OKL_CREDIT_CHECKLISTS_UV, status:VALID,
-
VIEW: APPS.OKL_FUNDING_CHECKLISTS_UV
12.1.1
-
VIEW: APPS.OKL_CREDIT_CHECKLISTS_UV
12.1.1
-
VIEW: APPS.OKL_CREDIT_CHECKLISTS_UV
12.2.2
-
VIEW: APPS.OKL_FUNDING_CHECKLISTS_UV
12.2.2
-
APPS.OKL_CREDIT_LINE_WF SQL Statements
12.1.1
-
APPS.OKL_CREDIT_LINE_WF SQL Statements
12.2.2
-
APPS.OKL_FUNDING_WF SQL Statements
12.1.1
-
APPS.OKL_FUNDING_WF SQL Statements
12.2.2
-
APPS.OKL_FUNDING_WF dependencies on OKL_FUNDING_CHECKLISTS_UV
12.1.1
-
APPS.OKL_CREDIT_LINE_WF dependencies on OKL_CREDIT_CHECKLISTS_UV
12.1.1
-
APPS.OKL_CREDIT_LINE_WF dependencies on OKL_CREDIT_CHECKLISTS_UV
12.2.2
-
APPS.OKL_FUNDING_WF dependencies on OKL_FUNDING_CHECKLISTS_UV
12.2.2
-
PACKAGE BODY: APPS.OKL_CREDIT_LINE_WF
12.1.1
-
PACKAGE BODY: APPS.OKL_CREDIT_LINE_WF
12.2.2
-
PACKAGE BODY: APPS.OKL_FUNDING_WF
12.1.1
-
PACKAGE BODY: APPS.OKL_FUNDING_WF
12.2.2
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,