Search Results okl_checklist_details
Overview
The OKL_CHECKLIST_DETAILS table is a component of the Oracle Leasing and Finance Management (OKL) module, which is part of the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 release family. This table stores the detail-level checklist item templates used in Credit Line and Funding Request processing. Checklist templates provide a structured, reusable mechanism that leasing organizations employ to enforce consistent due diligence, documentation collection, and approval gating across credit facilities and funding transactions. Each row in OKL_CHECKLIST_DETAILS represents a single checklist item belonging to a checklist template, capturing the individual line-level definition — such as required documentation, verification steps, or completion tasks — that must be satisfied before a credit line or funding request can progress.
The ETRM metadata does not record any implementation in the reference database, which indicates that OKL_CHECKLIST_DETAILS is a repository metadata definition rather than an actively populated table in the source system from which this documentation was mined. The primary key is OKL_CHECKLIST_DETAILS_PK, defined on the ID column. From a Data Vault modeling perspective, the metadata classifies this object as standalone, meaning the foreign-key mining heuristic identified no inbound or outbound FK dependencies. Under that classification, OKL_CHECKLIST_DETAILS would be best modeled as a hub or a standalone satellite, with the ID column serving as the hash or surrogate key candidate. This is a modeling suggestion only; the physical EBS schema may express relationships through nondocumented or non-enforced referential integrity.
Key Information Stored
The ETRM metadata is deliberately minimal, so only the columns confirmed in the documentation can be cited with certainty:
- ID — the surrogate primary key column, constrained by OKL_CHECKLIST_DETAILS_PK. This is the only column explicitly documented. In EBS practice, the ID is typically generated from a database sequence and serves as the internal unique identifier for the checklist detail row.
Because the metadata does not enumerate business columns, no business-key unique index (beyond the primary key) can be asserted from the reference. In a functioning OKL implementation, related columns would ordinarily include a checklist header/template foreign key reference, a sequence number establishing item order, a description of the checklist item, a required-completion or mandatory flag, a status or active flag, and the standard EBS audit columns (creation date, creation user, last update date, last update user, last update login). The surrogate key is the ID column; the business identity of a checklist item is logically the combination of its parent checklist template and its sequence/order number, which would typically be captured by a unique index in the deployed schema. Analysts should validate actual column presence against the deployed OKL schema, since the ETRM excerpt omits them.
Common Use Cases and Queries
The primary use cases for OKL_CHECKLIST_DETAILS are checklist template maintenance, credit-line approval automation, and funding request workflow gating.
- Template definition review — listing all detail items for a given checklist template, ordered by sequence, to audit the required steps in a credit line or funding process.
- Completion tracking — joining the template details to the transactional checklist instance tables to determine which required items remain outstanding before approval.
- Integration and setup migration — extracting template definitions for cloning across environments or business units.
A representative query pattern, limited to documented columns, is:
SELECT d.id FROM okl_checklist_details d;— retrieves the surrogate keys of checklist detail rows.- With a deployed schema, the pattern would extend to
SELECT d.id, d.checklist_id, d.sequence_number, d.description, d.mandatory_flag FROM okl_checklist_details d WHERE d.checklist_id = :template_id ORDER BY d.sequence_number;— the canonical template-detail listing.
Reporting use cases include setup documentation, migration validation, and audit evidence showing that credit approvals were gated by the defined checklist items.
Related Objects
The metadata records OKL_CHECKLIST_DETAILS as a standalone object with no mined FK relationships, so related objects below are inferred from the OKL domain rather than from enforced constraints. They should be verified against the deployed schema.
- OKL_CHECKLIST_HEADERS (or the corresponding checklist/template header table) — the parent template; join on the header ID to the detail table's checklist reference column.
- OKL_CREDIT_LINES and associated credit-line entity tables — consumers of credit-line checklist templates.
- OKL_FUNDING_REQUESTS — consumers of funding-request checklist templates.
- OKL_CHECKLIST_RESULTS (or the transactional instance table) — records per-transaction completion of each detail item; joined via the checklist detail ID.
- OKL_CHECKLIST_DETAILS_PK — the primary key constraint on ID, relevant when tuning index usage.
No API or view names are documented in the ETRM excerpt; integration developers should confirm the current OKL public APIs for checklist creation and maintenance against the 12.1.1/12.2.2 technical reference before designing interfaces.
-
Table: OKL_CHECKLIST_DETAILS
12.1.1
product: OKL - Leasing and Finance Management , description: Detail checklist item templates for Credit line and Funding request , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_CHECKLIST_DETAILS
12.2.2
product: OKL - Lease and Finance Management , description: Detail checklist item templates for Credit line and Funding request , implementation_dba_data: Not implemented in this database ,
-
APPS.OKL_CHECKLIST_PVT SQL Statements
12.1.1
-
APPS.OKL_CHECKLIST_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.OKL_CHECKLIST_DETAILS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CHECKLIST_DETAILS, status:VALID,
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.1.1
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CHECKLIST_PVT, status:VALID,
-
APPS.OKL_CLD_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.OKL_CLD_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_CLD_PVT, status:VALID,
-
PACKAGE: APPS.OKL_CLD_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_CLD_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CLD_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CLD_PVT, status:VALID,
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.2.2
-
SYNONYM: APPS.OKL_CHECKLIST_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CHECKLIST_DETAILS, status:VALID,
-
APPS.OKL_CLD_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_CLD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CLD_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CHECKLIST_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CREDIT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CREDIT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_FUNDING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_FUNDING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LEASE_APP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LEASE_APP_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LEASE_APP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LEASE_APP_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CREDIT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CREDIT_PUB, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.OKL_FUNDING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_FUNDING_PVT, status:VALID,
-
VIEW: OKL.OKL_CHECKLIST_DTLS_ALL#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_CHECKLIST_DTLS_ALL#, status:VALID,
-
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 ,
-
TABLE: OKL.OKL_CHECKLIST_DTLS_ALL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CHECKLIST_DTLS_ALL, object_name:OKL_CHECKLIST_DTLS_ALL, 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_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,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.OKL_CHECKLIST_PVT dependencies on OKL_CHECKLIST_DETAILS
12.2.2
-
PACKAGE BODY: APPS.OKL_CLD_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_CLD_PVT
12.1.1
-
APPS.OKL_CREDIT_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_CHECKLIST_PVT
12.1.1
-
APPS.OKL_CREDIT_PUB SQL Statements
12.1.1
-
APPS.OKL_LEASE_APP_PVT dependencies on OKL_CHECKLIST_DETAILS
12.1.1
-
APPS.OKL_CLD_PVT dependencies on OKL_CHECKLIST_DETAILS
12.2.2
-
APPS.OKL_CLD_PVT dependencies on OKL_CHECKLIST_DETAILS
12.1.1
-
APPS.OKL_LEASE_APP_PVT dependencies on OKL_CHECKLIST_DETAILS
12.2.2
-
APPS.OKL_FUNDING_PVT dependencies on OKL_CHECKLIST_DETAILS
12.2.2
-
APPS.OKL_CHECKLIST_PVT dependencies on OKL_CHECKLIST_DETAILS
12.1.1
-
APPS.OKL_CLD_PVT dependencies on OKL_CHECKLIST_DETAILS
12.1.1
-
APPS.OKL_FUNDING_PVT dependencies on OKL_CHECKLIST_DETAILS
12.1.1
-
APPS.OKL_CREDIT_PUB dependencies on OKL_CHECKLIST_DETAILS
12.1.1
-
APPS.OKL_CREDIT_PUB dependencies on OKL_CHECKLIST_DETAILS
12.2.2
-
APPS.OKL_CLD_PVT dependencies on OKL_CHECKLIST_DETAILS
12.2.2