Search Results defaulted_flag
Overview
OKE_DTS_SEARCH_LOV_V is a VALID database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the OKE – Project Contracts product family. It functions as a denormalized search and list-of-values (LOV) source for deliverable, task, and shipment scheduling data maintained by the Oracle Contract Deliverables (DTS) subsystem. Rather than exposing a single base table, the view consolidates deliverable rows from OKE_K_DELIVERABLES_VL with descriptive attributes drawn from contracts, projects, tasks, items, organizations, and lookup definitions, so that forms, concurrent programs, and integrations can query a single flattened result set.
The name and column layout indicate that this view backs search windows and value-selection lists in the Project Contracts and related shipping/deliverable flows. Fields such as SHIPPABLE_FLAG, BILLABLE_FLAG, DEPENDENCY_FLAG, and READY_TO_PROCURE are presented directly from the deliverable record, enabling the calling UI to filter candidate rows without joining back to the base tables. Because the view is a stored definition rather than a materialized object, it always reflects current transactional data.
Underlying Base Objects
The documented definition references the following objects, all resolved through the APPS schema:
- OKE_K_DELIVERABLES_VL (view, aliased OKEDTS) — the driving object supplying deliverable identifiers, flags, dates, quantities, pricing, and shipping attributes.
- OKC_K_LINES_B (synonym) — aliased OKELIN, supplying the contract line number via K_LINE_ID.
- OKE_SYSTEM_ITEMS_V (view) — aliased OKEITM, supplying the inventory item name via ITEM_ID.
- PO_LOOKUP_CODES (view) — aliased POTYPE, supplying the displayed destination-type value.
- PA_ORGANIZATIONS_EXPEND_V (view) — aliased PAXORG, supplying the expenditure organization name.
- PA_PROJECTS_ALL (synonym) — aliased PAXPRJ, supplying PROJECT_NUMBER via PROJECT_ID.
- PA_TASKS (synonym) — aliased PAXTSK, supplying TASK_NUMBER via TASK_ID.
- FND_GLOBAL, HR_GENERAL, HR_SECURITY, MO_GLOBAL (packages) — supporting security and multi-org context resolution.
The view therefore joins contractual deliverable data to project, task, item, and organization reference data, which is why it appears as a reporting-friendly surface over the transactional DTS tables.
Key Columns
- DELIVERABLE_ID / DELIVERABLE_NUM / K_HEADER_ID / K_LINE_ID — primary identifiers linking the row to the contract, header, and line.
- DEPENDENCY_FLAG — indicates whether the deliverable is dependent on another deliverable or event, a key filter in scheduling searches.
- SHIPPABLE_FLAG, BILLABLE_FLAG, DROP_SHIPPED_FLAG, SUBCONTRACTED_FLAG, INSPECTION_REQ_FLAG, CFE_REQ_FLAG — status and eligibility indicators returned to the LOV.
- READY_TO_BILL, READY_TO_PROCURE, COMPLETED_FLAG, DEFAULTED_FLAG, IN_PROCESS_FLAG — workflow/process state columns.
- PROJECT_ID / PROJECT_NUMBER, TASK_ID / TASK_NUMBER, EXPENDITURE_ORGANIZATION_ID / EXPENDITURE_ORG, ITEM_ID / ITEM — resolved descriptive references.
- DESTINATION_TYPE_CODE / DESTINATION_TYPE — the destination type code plus its decoded lookup meaning.
- QUANTITY, UNIT_PRICE, UOM_CODE, CURRENCY_CODE, WEIGHT, VOLUME — commercial and physical metrics.
- DELIVERY_DATE, START_DATE, END_DATE, NEED_BY_DATE, PROMISED_SHIPMENT_DATE, EXPECTED_SHIPMENT_DATE — scheduling dates.
Common Use Cases and Queries
The view is typically queried from forms and reports that require a user-selectable list of deliverables for a project or contract. A representative query filters on dependency and readiness flags:
- SELECT deliverable_num, project_number, task_number, dependency_flag, ready_to_bill FROM oke_dts_search_lov_v WHERE project_id = :p_project_id AND dependency_flag = 'Y';
- SELECT deliverable_id, data_item_name, delivery_date FROM oke_dts_search_lov_v WHERE k_header_id = :p_header_id ORDER BY deliverable_num;
Because the view restricts rows through its join conditions, consumers should supply contract or project predicates to keep result sets selective. It is not intended for high-volume batch extraction; for such workloads, joining the base objects directly is preferable.
-
View: OKE_DTS_SEARCH_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_DTS_SEARCH_LOV_V, object_name:OKE_DTS_SEARCH_LOV_V, status:VALID, product: OKE - Project Contracts , implementation_dba_data: APPS.OKE_DTS_SEARCH_LOV_V ,
-
View: OKE_DTS_SEARCH_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_DTS_SEARCH_LOV_V, object_name:OKE_DTS_SEARCH_LOV_V, status:VALID, product: OKE - Project Contracts , implementation_dba_data: APPS.OKE_DTS_SEARCH_LOV_V ,
-
View: OKE_K_DELIVERABLES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_DELIVERABLES_VL, object_name:OKE_K_DELIVERABLES_VL, status:VALID, product: OKE - Project Contracts , description: Contract deliverable infomation view , implementation_dba_data: APPS.OKE_K_DELIVERABLES_VL ,
-
View: OKE_K_DELIVERABLES_VLH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_DELIVERABLES_VLH, object_name:OKE_K_DELIVERABLES_VLH, status:VALID, product: OKE - Project Contracts , description: Contract deliverable infomation history view , implementation_dba_data: APPS.OKE_K_DELIVERABLES_VLH ,
-
View: OKE_K_DELIVERABLES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_DELIVERABLES_VL, object_name:OKE_K_DELIVERABLES_VL, status:VALID, product: OKE - Project Contracts , description: Contract deliverable infomation view , implementation_dba_data: APPS.OKE_K_DELIVERABLES_VL ,
-
View: OKE_K_DELIVERABLES_VLH
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_DELIVERABLES_VLH, object_name:OKE_K_DELIVERABLES_VLH, status:VALID, product: OKE - Project Contracts , description: Contract deliverable infomation history view , implementation_dba_data: APPS.OKE_K_DELIVERABLES_VLH ,