Search Results okc_k_items_v
Overview
OKC_K_ITEMS_V is a reporting and integration view owned by the APPS schema within the OKC – Contracts Core product of Oracle E-Business Suite. It is documented as a view over the OKC_CONTRACT_ITEMS table, and in the ETRM 12.2.2 metadata it is defined directly over the OKC_K_ITEMS synonym. The view exposes contract line item data using the naming conventions favored by Oracle Contracts APIs, where the physical table OKC_K_ITEMS is addressed through the CIMB alias (Contract Item "MB" interface). This view presents a stable, API-aligned projection of contract item records, allowing developers and report authors to query contract items without depending on the physical table's internal naming.
The object is marked VALID, confirming the view compiles cleanly against the underlying synonym in both 12.1.1 and 12.2.2. Its placement in the Contracts Core module means it participates in the contract authoring, pricing, and fulfillment data model.
Underlying Base Objects
According to the documented view text, OKC_K_ITEMS_V is defined over a single source: OKC_K_ITEMS (referenced via the synonym). The base table named in the description is OKC_CONTRACT_ITEMS, which is the physical Contracts table that OKC_K_ITEMS exposes. The view performs a straight column projection with no joins, aggregation, or filtering — a classic compatibility view that renames or surfaces columns so they match the OKC API column conventions.
- Owner/schema: APPS
- Referenced base object: OKC_K_ITEMS (SYNONYM)
- Underlying table described: OKC_CONTRACT_ITEMS
- View type: non-join projection view, one row per contract item
Key Columns
The view exposes 25 columns mapped from the synonym. The most significant are:
- ROW_ID – the base table ROWID, used for direct row addressing.
- ID – the primary key of the contract item record.
- OBJECT_VERSION_NUMBER – optimistic locking surrogate used by the Contracts APIs to detect concurrent updates.
- CLE_ID – the contract line (header-level line) identifier to which the item belongs.
- CHR_ID – the contract header identifier, the top-level contract document.
- CLE_ID_FOR and DNZ_CHR_ID – denormalized contract/line references retained for performance and API convenience.
- OBJECT1_ID1, OBJECT1_ID2, JTOT_OBJECT1_CODE – the JTOT ("item" object type) reference, identifying the inventory item through its flexible key components and object code.
- UOM_CODE – unit of measure for the item quantity.
- EXCEPTION_YN – flag indicating an exception condition on the line item.
- NUMBER_OF_ITEMS – quantity of the item on the contract line.
- PRICED_ITEM_YN – indicates whether the item is priced.
- UPG_ORIG_SYSTEM_REF / UPG_ORIG_SYSTEM_REF_ID – references supporting upgrade/migration traceability.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – standard EBS WHO audit columns.
- PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, REQUEST_ID – standard concurrent program audit columns.
Common Use Cases and Queries
Because the view is a thin projection of the contract items table, it is typically used for read-only reporting, interface extraction, and validation routines. Common scenarios include extracting all items on a contract, checking pricing flags, and joining to contract headers and lines.
- List all items for a given contract header.
- Identify unpriced or exception items for a contract.
- Export item and UOM detail to a downstream pricing or fulfillment system.
- Reconcile item quantities against contract line expectations.
Sample query retrieving items for a specific contract header:
SELECT id, cle_id, chr_id, uom_code, number_of_items, priced_item_yn, exception_yn
FROM apps.okc_k_items_v
WHERE chr_id = :p_chr_id;
Sample query identifying priced items and their unit of measure:
SELECT k.id, k.chr_id, k.cle_id, k.uom_code, k.number_of_items
FROM apps.okc_k_items_v k
WHERE k.priced_item_yn = 'Y'
AND k.number_of_items > 0;
Sample query returning items not yet priced for review:
SELECT k.id, k.chr_id, k.object1_id1, k.jtot_object1_code
FROM apps.okc_k_items_v k
WHERE NVL(k.priced_item_yn,'N') = 'N';
Since OKC_K_ITEMS_V exposes the OBJECT_VERSION_NUMBER, it can be used safely in conjunction with the Contracts APIs, but it must not be used for direct DML; all inserts and updates should flow through the supported OKC APIs against OKC_K_ITEMS.
-
View: OKC_K_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ITEMS_V, object_name:OKC_K_ITEMS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_ITEMS , implementation_dba_data: APPS.OKC_K_ITEMS_V ,
-
View: OKC_K_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ITEMS_V, object_name:OKC_K_ITEMS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_ITEMS , implementation_dba_data: APPS.OKC_K_ITEMS_V ,
-
VIEW: APPS.OKS_PRODUCTS_V
12.2.2
-
APPS.OKL_PAYMENT_SPLIT_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKS_PRODUCTS_V
12.1.1
-
VIEW: APPS.OKL_CS_AST_ADDONS_UV
12.2.2
-
VIEW: APPS.OKL_CS_AST_ADDONS_UV
12.1.1
-
APPS.OKL_PAYMENT_SPLIT_PVT SQL Statements
12.1.1
-
VIEW: APPS.OKS_CUST_PRODUCTS_V
12.1.1
-
VIEW: APPS.OKS_CUST_PRODUCTS_V
12.2.2
-
APPS.OKC_CONTRACT_ITEM_PVT SQL Statements
12.1.1
-
APPS.OKC_CONTRACT_ITEM_PVT SQL Statements
12.2.2
-
View: OKS_COVERED_LEVEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_COVERED_LEVEL_V, object_name:OKS_COVERED_LEVEL_V, status:VALID, product: OKS - Service Contracts , description: Covered level view for Contract details form , implementation_dba_data: APPS.OKS_COVERED_LEVEL_V ,
-
View: OKS_COVERED_LEVEL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_COVERED_LEVEL_V, object_name:OKS_COVERED_LEVEL_V, status:VALID, product: OKS - Service Contracts , description: Covered level view for Contract details form , implementation_dba_data: APPS.OKS_COVERED_LEVEL_V ,
-
PACKAGE BODY: APPS.OKS_WARRDATA_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_WARRDATA_PUB, status:VALID,
-
PACKAGE: APPS.OKE_IMPORT_CONTRACT_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKE_IMPORT_CONTRACT_PUB, status:VALID,
-
View: OKS_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_PRODUCTS_V, object_name:OKS_PRODUCTS_V, status:VALID, product: OKS - Service Contracts , description: View is Used for Contracts Quote Printing , implementation_dba_data: APPS.OKS_PRODUCTS_V ,
-
PACKAGE BODY: APPS.OKC_CONTRACT_ITEM_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CONTRACT_ITEM_PVT, status:VALID,
-
View: OKL_CS_AST_ADDONS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_AST_ADDONS_UV, object_name:OKL_CS_AST_ADDONS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_AST_ADDONS_UV ,
-
View: OKS_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_PRODUCTS_V, object_name:OKS_PRODUCTS_V, status:VALID, product: OKS - Service Contracts , description: View is Used for Contracts Quote Printing , implementation_dba_data: APPS.OKS_PRODUCTS_V ,
-
PACKAGE: APPS.OKE_IMPORT_CONTRACT_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKE_IMPORT_CONTRACT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKC_CONTRACT_ITEM_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CONTRACT_ITEM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKS_WARRDATA_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_WARRDATA_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKS_AUTH_UTIL_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_AUTH_UTIL_PUB, status:VALID,
-
APPS.OKS_WARRDATA_PUB SQL Statements
12.2.2
-
APPS.OKS_WARRDATA_PUB SQL Statements
12.1.1
-
View: OKL_CS_AST_ADDONS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_AST_ADDONS_UV, object_name:OKL_CS_AST_ADDONS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_AST_ADDONS_UV ,
-
PACKAGE BODY: APPS.OKC_CIM_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CIM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_CIM_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CIM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKS_AUTH_UTIL_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_AUTH_UTIL_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_PAYMENT_SPLIT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PAYMENT_SPLIT_PVT, status:VALID,
-
PACKAGE: APPS.OKL_CONTRACT_LINE_ITEM_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_CONTRACT_LINE_ITEM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PAYMENT_SPLIT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PAYMENT_SPLIT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PAYMENT_APPLICATION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PAYMENT_APPLICATION_PVT, status:VALID,
-
VIEW: APPS.OKL_CS_AST_ADDONS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_AST_ADDONS_UV, object_name:OKL_CS_AST_ADDONS_UV, status:VALID,
-
View: OKS_CUST_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CUST_PRODUCTS_V, object_name:OKS_CUST_PRODUCTS_V, status:VALID, product: OKS - Service Contracts , description: This View is Used to Show the Product details in Service Authoring Form. (This is showed at Covered Level For Covered Product) , implementation_dba_data: APPS.OKS_CUST_PRODUCTS_V ,
-
PACKAGE: APPS.OKL_CONTRACT_LINE_ITEM_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_CONTRACT_LINE_ITEM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ACTIVATE_IB_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ACTIVATE_IB_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PAYMENT_APPLICATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PAYMENT_APPLICATION_PVT, status:VALID,
-
PACKAGE: APPS.OKL_MAINTAIN_FEE_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_MAINTAIN_FEE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ACTIVATE_IB_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ACTIVATE_IB_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CONTRACT_TOP_LINE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CONTRACT_TOP_LINE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CONTRACT_TOP_LINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CONTRACT_TOP_LINE_PVT, status:VALID,
-
View: OKS_CUST_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CUST_PRODUCTS_V, object_name:OKS_CUST_PRODUCTS_V, status:VALID, product: OKS - Service Contracts , description: This View is Used to Show the Product details in Service Authoring Form. (This is showed at Covered Level For Covered Product) , implementation_dba_data: APPS.OKS_CUST_PRODUCTS_V ,
-
PACKAGE BODY: APPS.OKC_CFG_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CFG_PUB, status:VALID,
-
PACKAGE: APPS.OKL_MAINTAIN_FEE_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_MAINTAIN_FEE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_PHI_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_PHI_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_OPI_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OPI_PVT, status:VALID,
-
VIEW: APPS.OKL_CS_AST_ADDONS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_AST_ADDONS_UV, object_name:OKL_CS_AST_ADDONS_UV, status:VALID,
-
PACKAGE BODY: APPS.OKL_LA_VALIDATION_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LA_VALIDATION_UTIL_PVT, status:VALID,