Search Results okl_checklists_uv
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.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: 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 ,
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CHECKLIST_PVT, status:VALID,
-
SYNONYM: APPS.OKL_CHECKLISTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CHECKLISTS_ALL, status:VALID,
-
SYNONYM: APPS.OKL_CHECKLISTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CHECKLISTS_ALL, status:VALID,
-
SYNONYM: APPS.OKL_CHECKLISTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CHECKLISTS, status:VALID,
-
SYNONYM: APPS.OKL_CHECKLISTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CHECKLISTS, status:VALID,
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CHECKLIST_PVT, status:VALID,
-
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,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.OKL_CHECKLIST_PVT SQL Statements
12.1.1
-
APPS.OKL_CHECKLIST_PVT SQL Statements
12.2.2
-
APPS.OKL_CHECKLIST_PVT dependencies on OKL_CHECKLISTS_UV
12.2.2
-
APPS.OKL_CHECKLIST_PVT dependencies on OKL_CHECKLISTS_UV
12.1.1
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
APPS.OKL_CHECKLIST_PVT dependencies on OKL_CHECKLISTS
12.1.1
-
APPS.OKL_CHECKLIST_PVT dependencies on OKL_CHECKLISTS
12.2.2
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
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 ,