Search Results function_validate_msg
Overview
OKL_CREDIT_CHECKLISTS_UV is an APPS-owned database view in the Oracle E-Business Suite Lease and Finance Management (OKL) module. It serves as the user-interface view for the lease credit line checklist, presenting configuration rows stored generically in the OKC rules engine in a fully decoded, presentation-ready format. The view filters the underlying rules table to rows whose RULE_INFORMATION_CATEGORY equals 'LACCLD', decodes each of the ten RULE_INFORMATION attributes through FND_LOOKUPS, and enriches them with function and status information. Because of this layered decoding, it is the standard source for both OA Framework UI pages and custom reporting or integration queries that need to display checklist items, their mandatory flags, results, and associated validation functions in human-readable form.
Underlying Base Objects
The view is defined over a join of several documented base objects:
- OKC_RULES_B (referenced via synonym RULT) — the rules engine table holding the raw checklist definition rows in category 'LACCLD'. Each RULE_INFORMATIONn column stores a coded value.
- FND_LOOKUPS (referenced six times as LK1 through LK6) — supplies the meaning text for each coded attribute, using lookup types OKL_TODO_ITEMS, YES_NO, OKL_FUN_VALIDATE_RSTS, OKL_CHECKLIST_TYPE, and OKL_VALIDATE_RESULTS.
- OKC_STATUSES_V (STATUS) — resolves the checklist status code into its meaning.
- OKL_DATA_SRC_FNCTNS_B (FUN) — provides the function name and source for the client-side validation function referenced by the checklist item.
- FND_PROFILE (package) — retrieves the OKL_CREDIT_LINE_APPROVER profile option to produce the APPROVERYN column.
- FND_GLOBAL (package) — included among documented dependencies to supply runtime context (user, responsibility, application) during view access.
The view therefore does not store data; it is a pure projection and decoding layer over rules-engine metadata.
Key Columns
- ID, RGP_ID — primary key of the checklist row and the parent rule group identifier.
- TODO_ITEM_CODE / TODO_ITEM_MEANING — the checklist action item code (RULE_INFORMATION1) and its decoded meaning.
- MANDATORY_FLAG / MANDATORY_FLAG_MEANING — whether the item must be completed (RULE_INFORMATION2, defaulted to 'N').
- CHECK_OFF / CHECK_OFF_MEANING / CHECK_OFF_RESULTS — the check-off indicator (RULE_INFORMATION3) and its derived result, decoded through OKL_VALIDATE_RESULTS as PASSED, FAILED, or UNDETERMINED.
- NOTE, ADMIN_NOTE — free-text notes from RULE_INFORMATION4 and RULE_INFORMATION6.
- STATUS / STATUS_MEANING — the checklist status code (RULE_INFORMATION5, defaulted to 'NEW') resolved against OKC_STATUSES_V.
- APPROVERYN — resolved from the OKL_CREDIT_LINE_APPROVER profile option.
- FUNCTION_VALIDATE_RSTS / FUNC_VAL_RSTS_MEANING — the validation result code stored in RULE_INFORMATION7 (default 'UNDETERMINED'), decoded via the OKL_FUN_VALIDATE_RSTS lookup. This is the column most directly associated with the search term "function_validate_rsts."
- FUNCTION_VALIDATE_MSG, FUNCTION_ID, FUNCTION_NAME, FUNCTION_SOURCE — client-side validation function details drawn from RULE_INFORMATION8 and RULE_INFORMATION9 joined to OKL_DATA_SRC_FNCTNS_B.
- CHECKLIST_TYPE / CHECKLIST_TYPE_MEANING — the checklist category (RULE_INFORMATION10, default 'ACTIVATION') decoded through OKL_CHECKLIST_TYPE.
- CHECKIST_RESULTS — a DECODE that returns the function validation meaning when a function is present, otherwise the check-off result meaning.
Common Use Cases and Queries
The view supports reporting on checklist configuration and completion, troubleshooting validation outcomes, and integration with external approval systems.
- List all checklist items for a contract:
SELECT todo_item_code, todo_item_meaning, mandatory_flag_meaning, status_meaning FROM okl_credit_checklists_uv WHERE rgp_id = :p_rgp_id; - Identify mandatory items not yet checked off:
SELECT id, todo_item_code FROM okl_credit_checklists_uv WHERE mandatory_flag = 'Y' AND check_off = 'N'; - Inspect validation function outcomes:
SELECT todo_item_code, function_validate_rsts, func_val_rsts_meaning, function_name FROM okl_credit_checklists_uv WHERE function_validate_rsts = 'FAILED'; - Report by checklist type:
SELECT checklist_type_meaning, COUNT(*) FROM okl_credit_checklists_uv GROUP BY checklist_type_meaning;
Because the view performs the lookup joins and DECODE logic, custom reports should query it directly rather than re-deriving meanings from OKC_RULES_B, ensuring consistency with the standard lease credit line UI pages.
-
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: 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: 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 ,