Search Results checklist_purpose_meaning
Overview
OKL_CHECKLISTS_UV is an APPS-owned view in the Oracle E-Business Suite Lease and Finance Management (OKL) module. Its documented purpose is to serve as the user interface view for the credit and funding checklists page, exposing checklist header data in a form suitable for display and for downstream reporting or integration. The view is VALID in both 12.1.1 and 12.2.2. Beyond its UI role, it is a convenient denormalized source because it resolves several lookup codes to their translated meanings within the query itself, which is directly relevant to users searching on the column STATUS_CODE_MEANING.
Because it is a view rather than a table, it holds no data of its own and cannot be written to. Querying it returns the same underlying rows as OKL_CHECKLISTS, filtered and joined to lookup values and to the _ALL synonym for the checklist identifier.
Underlying Base Objects
The documented ETRM metadata lists the referenced base objects as FND_GLOBAL (package), FND_LOOKUPS (view), OKL_CHECKLISTS (synonym), and OKL_CHECKLISTS_ALL (synonym). The view text joins OKL_CHECKLISTS (alias CKL) as the primary source, OKL_CHECKLISTS_ALL (alias CKL2) on CKL.ID = CKL2.CKL_ID with an outer join, and FND_LOOKUPS three times (aliases FLK, FLK2, FLK4) to resolve descriptive meanings for the checklist type, checklist purpose, and status code respectively.
The registered columns include PARENT_CHECKLIST_ID and PARENT_CHECKLIST_NUMBER, which in the view text are sourced from CKL2.CKL_ID and CKL2.CHECKLIST_NUMBER. The join to FND_LOOKUPS is filtered to specific lookup types, and the query restricts CHECKLIST_PURPOSE_CODE to the values CHECKLIST_TEMPLATE and CHECKLIST_TEMPLATE_GROUP, so the view returns template-oriented checklist rows rather than every checklist record.
Key Columns
- ID — primary identifier of the checklist row (CKL.ID).
- CHECKLIST_NUMBER — business-facing checklist number.
- DESCRIPTION / SHORT_DESCRIPTION — descriptive text for the checklist.
- CHECKLIST_TYPE / CHECKLIST_TYPE_MEANING — type code and its lookup meaning from OKL_CHECKLIST_TYPE.
- STATUS_CODE / STATUS_CODE_MEANING — the status code and its translated meaning from the OKL_CHECKLIST_STATUS_CODE lookup. STATUS_CODE_MEANING is the resolved display value that answers the common status_code_meaning query.
- CHECKLIST_PURPOSE_CODE / CHECKLIST_PURPOSE_MEANING — purpose code and meaning from OKL_CHECKLIST_PURPOSE_CODE.
- START_DATE / END_DATE / DECISION_DATE — key lifecycle dates.
- CHECKLIST_OBJ_ID / CHECKLIST_OBJ_TYPE_CODE — the object the checklist relates to and its type.
- PARENT_CHECKLIST_ID / PARENT_CHECKLIST_NUMBER — parent linkage for grouped checklists.
- ATTRIBUTE1–15 / ATTRIBUTE_CATEGORY — descriptive flexfield columns.
- ORG_ID — operating unit context, supporting multi-org reporting.
Common Use Cases and Queries
Typical scenarios include reporting checklist statuses on the credit and funding pages, resolving lookup meanings without re-joining FND_LOOKUPS, and feeding integrations that require human-readable status values.
- To obtain status meaning alongside the code for credit and funding templates:
SELECT checklist_number,
checklist_type_meaning,
status_code,
status_code_meaning,
start_date,
end_date
FROM apps.okl_checklists_uv
WHERE checklist_purpose_code IN
('CHECKLIST_TEMPLATE','CHECKLIST_TEMPLATE_GROUP');
- To filter a specific status, query STATUS_CODE_MEANING rather than the raw code, which avoids hard-coding lookup codes. Restrict by ORG_ID for multi-org environments and join ID to operational tables when a checklist must be linked back to its source object.
-
View: OKL_CHECKLISTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLISTS_UV, object_name:OKL_CHECKLISTS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for credit and funding checcklists page , implementation_dba_data: APPS.OKL_CHECKLISTS_UV ,
-
VIEW: APPS.OKL_CHECKLISTS_UV
12.2.2
-
View: OKL_CHECKLISTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLISTS_UV, object_name:OKL_CHECKLISTS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for credit and funding checcklists page , implementation_dba_data: APPS.OKL_CHECKLISTS_UV ,
-
VIEW: APPS.OKL_CHECKLISTS_UV
12.1.1
-
VIEW: APPS.OKL_CHECKLISTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLISTS_UV, object_name:OKL_CHECKLISTS_UV, status:VALID,
-
VIEW: APPS.OKL_CHECKLISTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLISTS_UV, object_name:OKL_CHECKLISTS_UV, status:VALID,
-
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 ,