Search Results okl_yes_no
Overview
The view APPS.OKL_INSTANCE_CHECKLIST_DTL_UV is a user-facing (UV) database object in the Oracle E-Business Suite (EBS) Enterprise Contracts (OKL) module, exposed under the APPS schema. It presents detailed checklist instance data, joining the underlying checklist detail records to Oracle Application Object Library lookups to translate descriptive codes into business-readable meanings. The view is used in reporting, Forms personalization, and integration scenarios where a checklist item's status, mandatory flag, user completion flag, and validation outcome must be presented. The _UV suffix indicates that this is a view intended for direct user or application-layer consumption, rather than an internal processing artifact.
In the context of EBS 12.1.1 and 12.2.2, the view is stable; the Online Patching (ADOP) architecture in 12.2.2 requires editioning-compatible views, and this view's definition against synonymed base tables remains valid across both releases. Because it references FND_LOOKUPS, it relies on lookup values seeded under lookup types such as OKL_YES_NO.
Underlying Base Objects
The view is defined over the following documented objects:
OKL_CHECKLIST_DETAILS(synonym, aliasedCLD) — the driving table holding each checklist detail row (checklist ID, TODO item code, flags, notes, and validation results).OKL_DATA_SRC_FNCTNS_B(synonym, aliasedFUN) — the base table for data source functions, providingFUNCTION_NAMEandFUNCTION_SOURCE.FND_LOOKUPS(view, aliasedFLK,FLK2,FLK3,FLK4,FLK6,FLK7) — joined multiple times to resolve lookup codes intoMEANINGandDESCRIPTIONvalues.FND_GLOBAL(package) — referenced in the documented metadata, typically for environment context (ORG_ID, user, responsibility).
The primary joins are equality joins on lookup codes and lookup types, including OKL_TODO_ITEMS, OKL_YES_NO, and OKL_FUN_VALIDATE_RSTS. Notably, the OKL_YES_NO lookup is joined twice — once for the mandatory flag and once for the user completion flag — because both columns use the same domain.
Key Columns
ID,OBJECT_VERSION_NUMBER,CKL_ID,TODO_ITEM_CODE— identity, concurrency, parent checklist, and item code.TODO_ITEM_MEANING,DESCRIPTION— translated TODO item text fromOKL_TODO_ITEMS.EFFECTIVE_FROM/EFFECTIVE_TO— derived viaNVL(START_DATE_ACTIVE, SYSDATE)andNVL(END_DATE_ACTIVE, SYSDATE+3650), providing open-ended effective dating.MANDATORY_FLAG(defaulted to 'N' viaNVL) withMANDATORY_FLAG_MEANINGfromOKL_YES_NO.USER_COMPLETE_FLAG(defaulted to 'N') withUSER_COMPLETE_FLAG_MEANINGfromOKL_YES_NO, plusUSER_COMPLETE_FLAG_results.FUNCTION_VALIDATE_RSTS(defaulted to 'UNDETERMINED') withFUNCTION_VALIDATE_RSTS_MEANINGfromOKL_FUN_VALIDATE_RSTS, andFUNCTION_VALIDATE_MSG.FUNCTION_ID,FUNCTION_NAME,FUNCTION_SOURCE— linked data source function context.Checkist_results— computed viaDECODE(FUNCTION_ID, NULL, flk6.MEANING, flk4.MEANING).INST_CHECKLIST_TYPEwithINST_CHECKLIST_TYPE_MEANINGfromOKL_TODO_ITEMS-family lookup.ADMIN_NOTE,USER_NOTE,ORG_ID, and standard WHO audit columns.
Common Use Cases and Queries
Typical scenarios include checklist status reporting, contract authoring validation, and integration extracts that require resolved lookup meanings rather than raw codes.
- Extracting all checklist items for a given checklist with resolved meanings.
- Filtering to mandatory, incomplete items to support completion gating.
- Reporting validation results by data source function.
Sample query:
SELECT ckl_id,
todo_item_code,
TODO_ITEM_MEANING,
MANDATORY_FLAG,
MANDATORY_FLAG_MEANING,
USER_COMPLETE_FLAG,
USER_COMPLETE_FLAG_MEANING,
FUNCTION_VALIDATE_RSTS,
FUNCTION_VALIDATE_RSTS_MEANING,
Checkist_results
FROM APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
WHERE ckl_id = :p_checklist_id
ORDER BY todo_item_code;
A second example, selecting mandatory items not yet complete:
SELECT ckl_id, todo_item_code, TODO_ITEM_MEANING FROM APPS.OKL_INSTANCE_CHECKLIST_DTL_UV WHERE MANDATORY_FLAG = 'Y' AND USER_COMPLETE_FLAG = 'N' AND org_id = :p_org_id;
Because the view embeds the OKL_YES_NO and OKL_FUN_VALIDATE_RSTS lookup joins directly, no additional lookup resolution is required by consumers.
-
Lookup Type: OKL_YES_NO
12.2.2
product: OKL - Lease and Finance Management , meaning: OKL_YES_NO , description: Yes No ,
-
Lookup Type: OKL_YES_NO
12.1.1
product: OKL - Leasing and Finance Management , meaning: OKL_YES_NO , description: Yes No ,
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.2.2
-
VIEW: APPS.OKL_CHECKLIST_DETAILS_UV
12.1.1
-
VIEW: APPS.OKL_POOL_HEADER_UV
12.2.2
-
VIEW: APPS.OKL_POOL_HEADER_UV
12.1.1
-
VIEW: APPS.OKL_PROD_STRM_TYPES_UV
12.1.1
-
VIEW: APPS.OKL_CHECKLIST_DETAILS_UV
12.2.2
-
VIEW: APPS.OKL_INSTANCE_CHECKLIST_DTL_UV
12.1.1
-
VIEW: APPS.OKL_FE_CRIT_CAT_DEF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_CRIT_CAT_DEF_V, object_name:OKL_FE_CRIT_CAT_DEF_V, status:VALID,
-
VIEW: APPS.OKL_FE_CRIT_CAT_DEF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_CRIT_CAT_DEF_V, object_name:OKL_FE_CRIT_CAT_DEF_V, status:VALID,
-
TABLE: OKL.OKL_FE_CRIT_CAT_DEF_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_CRIT_CAT_DEF_B, object_name:OKL_FE_CRIT_CAT_DEF_B, status:VALID,
-
TABLE: OKL.OKL_FE_CRIT_CAT_DEF_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_CRIT_CAT_DEF_B, object_name:OKL_FE_CRIT_CAT_DEF_B, status:VALID,
-
VIEW: APPS.OKL_PROD_STRM_TYPES_UV
12.2.2
-
VIEW: APPS.OKL_AM_RESTRUCTURE_QUOTES_UV
12.2.2
-
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: APPS.OKL_LS_RT_FCTR_SETS_UV
12.2.2
-
VIEW: APPS.OKL_OR_PAYMENT_HEADER_UV
12.2.2
-
VIEW: APPS.OKL_LS_RT_FCTR_SETS_UV
12.1.1
-
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 ,
-
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 ,
-
View: OKL_POOL_HEADER_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_POOL_HEADER_UV, object_name:OKL_POOL_HEADER_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Securitization - Pool header UI view , implementation_dba_data: APPS.OKL_POOL_HEADER_UV ,
-
VIEW: APPS.OKL_AM_RESTRUCTURE_QUOTES_UV
12.1.1
-
VIEW: APPS.OKL_CS_TRX_PAYMENTS_UV
12.1.1
-
VIEW: APPS.OKL_CS_TRX_PAYMENTS_UV
12.2.2
-
VIEW: APPS.OKL_OR_PAYMENT_HEADER_UV
12.1.1
-
View: OKL_POOL_HEADER_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_POOL_HEADER_UV, object_name:OKL_POOL_HEADER_UV, status:VALID, product: OKL - Lease and Finance Management , description: Securitization - Pool header UI view , implementation_dba_data: APPS.OKL_POOL_HEADER_UV ,
-
View: OKL_CHECKLIST_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CHECKLIST_DETAILS_UV, object_name:OKL_CHECKLIST_DETAILS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interfacer view for funding checklist details page , implementation_dba_data: APPS.OKL_CHECKLIST_DETAILS_UV ,
-
View: OKL_CS_TRX_PAYMENTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_TRX_PAYMENTS_UV, object_name:OKL_CS_TRX_PAYMENTS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_TRX_PAYMENTS_UV ,
-
View: OKL_CS_TRX_PAYMENTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_TRX_PAYMENTS_UV, object_name:OKL_CS_TRX_PAYMENTS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_TRX_PAYMENTS_UV ,
-
View: OKL_PROD_STRM_TYPES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PROD_STRM_TYPES_UV, object_name:OKL_PROD_STRM_TYPES_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View on OKL_PROD_STRM_TYPES and OKL_STRM_TYPE_B,OKL_STRM_TYPE_TL , implementation_dba_data: APPS.OKL_PROD_STRM_TYPES_UV ,
-
View: OKL_PROD_STRM_TYPES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PROD_STRM_TYPES_UV, object_name:OKL_PROD_STRM_TYPES_UV, status:VALID, product: OKL - Lease and Finance Management , description: View on OKL_PROD_STRM_TYPES and OKL_STRM_TYPE_B,OKL_STRM_TYPE_TL , implementation_dba_data: APPS.OKL_PROD_STRM_TYPES_UV ,
-
TABLE: OKL.OKL_ASSETS_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ASSETS_B, object_name:OKL_ASSETS_B, status:VALID,
-
TABLE: OKL.OKL_ASSETS_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ASSETS_B, object_name:OKL_ASSETS_B, status:VALID,
-
TABLE: OKL.OKL_FEES_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FEES_B, object_name:OKL_FEES_B, status:VALID,
-
View: OKL_OR_PAYMENT_HEADER_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_PAYMENT_HEADER_UV, object_name:OKL_OR_PAYMENT_HEADER_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_OR_PAYMENT_HEADER_UV ,
-
View: OKL_AM_RESTRUCTURE_QUOTES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_RESTRUCTURE_QUOTES_UV, object_name:OKL_AM_RESTRUCTURE_QUOTES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_RESTRUCTURE_QUOTES_UV ,
-
VIEW: APPS.OKL_FEES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FEES_V, object_name:OKL_FEES_V, status:VALID,
-
View: OKL_LS_RT_FCTR_SETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LS_RT_FCTR_SETS_UV, object_name:OKL_LS_RT_FCTR_SETS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_LS_RT_FCTR_SETS_UV ,
-
VIEW: APPS.OKL_FEES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FEES_V, object_name:OKL_FEES_V, status:VALID,
-
View: OKL_LS_RT_FCTR_SETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LS_RT_FCTR_SETS_UV, object_name:OKL_LS_RT_FCTR_SETS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_LS_RT_FCTR_SETS_UV ,
-
View: OKL_AM_RESTRUCTURE_QUOTES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_RESTRUCTURE_QUOTES_UV, object_name:OKL_AM_RESTRUCTURE_QUOTES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_RESTRUCTURE_QUOTES_UV ,
-
View: OKL_OR_PAYMENT_HEADER_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_PAYMENT_HEADER_UV, object_name:OKL_OR_PAYMENT_HEADER_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_OR_PAYMENT_HEADER_UV ,
-
TABLE: OKL.OKL_FEES_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FEES_B, object_name:OKL_FEES_B, status:VALID,
-
VIEW: APPS.OKL_ASSET_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_COMPONENTS_V, object_name:OKL_ASSET_COMPONENTS_V, status:VALID,
-
VIEW: APPS.OKL_ASSET_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_COMPONENTS_V, object_name:OKL_ASSET_COMPONENTS_V, status:VALID,
-
TABLE: OKL.OKL_ASSET_COMPONENTS_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ASSET_COMPONENTS_B, object_name:OKL_ASSET_COMPONENTS_B, status:VALID,
-
TABLE: OKL.OKL_ASSET_COMPONENTS_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ASSET_COMPONENTS_B, object_name:OKL_ASSET_COMPONENTS_B, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2