Search Results oki_cov_prd_lines
Overview
OKI_COV_PRD_LINES is a Contracts Intelligence table in Oracle E-Business Suite that stores information about covered product lines within Contracts for Service. It belongs to the OKI product/module, which Oracle classifies as Contracts Intelligence (Obsolete). In the documented ETRM 12.1.1 physical schema, the table is owned by OKI and contains 91 columns. The metadata explicitly notes that this table is not implemented in this database — meaning references to it describe a legacy or dormant structure, and the object may not exist as a populated, supported artifact in a working 12.1.1 or 12.2.2 instance.
Functionally, a covered product line represents a serviceable item under a service contract: the product being covered, the associated contract line, pricing, quantities, installation and order details, and the sites and contacts related to billing, shipping, and installation. It therefore bridges contract header/line information with installed base and covered-product data.
The ETRM relationship data classifies this object as a standalone table via a heuristic Data Vault analysis of its foreign key structure; no parent-child FK links were mined. This should be read as a modeling suggestion only: in a Data Vault design, the table would not naturally resolve into a hub or link with confidence, and could be treated as an isolated satellite-like structure keyed on its own surrogate identifier. The documented primary key is OKI_COV_PRD_LINES_PK on CLE_ID, and a unique index OKI_COV_PRD_LINES_U1 also exists on CLE_ID.
Key Information Stored
The surrogate primary key is CLE_ID, which uniquely identifies each covered product line record. The unique index OKI_COV_PRD_LINES_U1 duplicates this on CLE_ID, indicating the table has a single-column business-key candidate rather than a composite natural key. The most significant columns include:
- Contract linkage —
CHR_ID(contract header reference),CONTRACT_NUMBER,CONTRACT_NUMBER_MODIFIER,COMPLETE_CONTRACT_NUMBER, andLINE_NUMBER. - Line hierarchy —
PARENT_CLE_IDsupports self-referencing parent/child product line structures. - Validity/status —
START_DATE,END_DATE,STS_CODE,DATE_TERMINATED,DATE_RENEWED, andIS_EXP_NOT_RENEWED_YN. - Pricing —
UNIT_PRICE,PRICE_NEGOTIATED,CURRENCY_CODE,SOB_PRICE_UNIT,BASE_PRICE_UNIT, and their renewed/base equivalents. - Covered product identity —
COVERED_PRODUCT_ID,CUSTOMER_PRODUCT_ITEM_ID,SERVICE_ITEM,SERIAL_NUMBER,SYSTEM_ID, andSYSTEM_NAME. - Coverage quantities —
COV_PROD_QUANTITY,COV_PROD_UOM,NUMBER_OF_ITEMS, andINSTALLATION_DATE. - Order details —
COV_PROD_ORDER_NUMBER,COV_PROD_ORDER_LINE,COV_PROD_ORDER_LINE_ID, andCOV_PROD_ORDER_DATE. - Sites and contacts —
COV_PROD_BILL_TO_SITE_ID,COV_PROD_SHIP_TO_SITE_ID,COV_PROD_INSTALL_SITE_ID, with matching contact columns. - Descriptive flexfields —
ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15. - Pricing flexfields —
PRICING_ATTRIBUTE1–PRICING_ATTRIBUTE10. - Period/term —
DURATION,PERIOD,END_PERIOD_NUM,END_PERIOD_NAME,END_QUARTER,END_YEAR. - Organization/security —
AUTHORING_ORG_ID,INVENTORY_ORGANIZATION_ID,SECURITY_GROUP_ID, plus audit columnsCREATION_DATEandLAST_UPDATE_DATE.
Common Use Cases and Queries
Because the table is documented as not implemented, its primary relevance is historical migration analysis, data-model archaeology, or reporting in legacy Contracts for Service environments. Typical query patterns would join covered product lines back to their contract header using CHR_ID or COMPLETE_CONTRACT_NUMBER, and resolve parent-child relationships through PARENT_CLE_ID:
- Contract coverage listing — select
CLE_ID, COMPLETE_CONTRACT_NUMBER, LINE_NUMBER, SERVICE_ITEM, COV_PROD_QUANTITY, UNIT_PRICE, CURRENCY_CODEfiltered bySTART_DATE/END_DATEto list active covered products per contract. - Renewal exposure — filter on
IS_EXP_NOT_RENEWED_YN = 'Y'andEND_DATEto identify expiring coverage that will not renew. - Self-join for line hierarchy — join
a.CLE_ID = b.PARENT_CLE_IDto reconstruct parent/child product line structures. - Pricing reconciliation — compare
UNIT_PRICEagainstPRICE_NEGOTIATED,SOB_PRICE_UNIT, andBASE_PRICE_UNITacross currencies. - Installed base reporting — aggregate by
INVENTORY_ORGANIZATION_ID,COV_PROD_INSTALL_SITE_ID, orSYSTEM_NAMEto report serviced assets.
A representative pattern: SELECT CLE_ID, COMPLETE_CONTRACT_NUMBER, SERVICE_ITEM, COV_PROD_QUANTITY FROM OKI_COV_PRD_LINES WHERE END_DATE >= SYSDATE AND NVL(IS_EXP_NOT_RENEWED_YN,'N') = 'N';
Related Objects
The mined relationship data classifies OKI_COV_PRD_LINES as standalone, with no formal foreign keys documented. Logical associations inferred from column contents include the following significant objects:
- Contract headers via
CHR_ID/COMPLETE_CONTRACT_NUMBER(OKI contract header table). - Contract lines via
LINE_NUMBERandPARENT_CLE_IDself-reference. - Covered product / customer item tables via
COVERED_PRODUCT_IDandCUSTOMER_PRODUCT_ITEM_ID. - Order management tables via
COV_PROD_ORDER_NUMBER,COV_PROD_ORDER_LINE_ID. - Site and party tables (bill-to, ship-to, install) via the
COV_PROD_*_SITE_IDcolumns. - Inventory organization via
INVENTORY_ORGANIZATION_ID. - Product agreement via
PRODUCT_AGREEMENT_ID.
Because OKI is obsolete and the object is not implemented, new development should not depend on this table; integration or reporting requirements should target currently supported Service Contracts and installed base tables instead.
-
Table: OKI_COV_PRD_LINES
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about covered product lines in Contracts for Service. , implementation_dba_data: Not implemented in this database ,
-
Table: OKI_COV_PRD_LINES
12.1.1
owner:OKI, object_type:TABLE, fnd_design_data:OKI.OKI_COV_PRD_LINES, object_name:OKI_COV_PRD_LINES, status:VALID, product: OKI - Contracts Intelligence , description: Information about covered product lines in Contracts for Service. , implementation_dba_data: OKI.OKI_COV_PRD_LINES ,
-
APPS.OKI_LOAD_RBS_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.OKI_COV_PRD_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKI_COV_PRD_LINES, status:VALID,
-
VIEW: APPS.OKI_SOLD_ITM_LINES_CPL_V
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.OKI_UTL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKI_UTL_PVT, status:VALID,
-
APPS.OKI_LOAD_ENR_PVT SQL Statements
12.1.1
-
APPS.OKI_LOAD_WBC_PVT SQL Statements
12.1.1
-
VIEW: APPS.OKI_EXPIRED_LINES_V
12.1.1
-
APPS.OKI_DISCO_UTIL_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKI_LOAD_WBC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKI_LOAD_WBC_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.OKI_REFRESH_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKI_REFRESH_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.OKI_DISCO_UTIL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKI_DISCO_UTIL_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.OKI_UTL_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.OKI_LOAD_ENR_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKI_LOAD_ENR_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKI_LOAD_RBS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKI_LOAD_RBS_PVT, status:VALID,
-
VIEW: APPS.OKI_COV_PROD_LINES_V
12.1.1
-
VIEW: APPS.OKI_SOLD_ITM_LINES_CPL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKI_SOLD_ITM_LINES_CPL_V, status:VALID,
-
View: OKI_COV_PROD_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_COV_PROD_LINES_V, object_name:OKI_COV_PROD_LINES_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about the covered product lines in service contracts. , implementation_dba_data: APPS.OKI_COV_PROD_LINES_V ,
-
View: OKI_COV_PROD_LINES_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about the covered product lines in service contracts. , implementation_dba_data: Not implemented in this database ,
-
eTRM - OKI Tables and Views
12.1.1
description: Holds information about the value of renewed contracts on a historical basis. ,
-
PACKAGE BODY: APPS.OKI_LOAD_RBS_PVT
12.1.1
-
PACKAGE BODY: APPS.OKI_DISCO_UTIL_PVT
12.1.1
-
PACKAGE BODY: APPS.OKI_LOAD_ENR_PVT
12.1.1
-
TABLE: OKI.OKI_COV_PRD_LINES
12.1.1
owner:OKI, object_type:TABLE, fnd_design_data:OKI.OKI_COV_PRD_LINES, object_name:OKI_COV_PRD_LINES, status:VALID,
-
APPS.OKI_REFRESH_PVT SQL Statements
12.1.1
-
VIEW: APPS.OKI_EXPIRED_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_EXPIRED_LINES_V, object_name:OKI_EXPIRED_LINES_V, status:VALID,
-
PACKAGE BODY: APPS.OKI_UTL_PVT
12.1.1
-
PACKAGE BODY: APPS.OKI_REFRESH_PVT
12.1.1
-
PACKAGE BODY: APPS.OKI_LOAD_WBC_PVT
12.1.1
-
VIEW: APPS.OKI_COV_PROD_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_COV_PROD_LINES_V, object_name:OKI_COV_PROD_LINES_V, status:VALID,
-
APPS.OKI_UTL_PVT dependencies on OKI_COV_PRD_LINES
12.1.1
-
APPS.OKI_LOAD_RBS_PVT dependencies on OKI_COV_PRD_LINES
12.1.1
-
APPS.OKI_DISCO_UTIL_PVT dependencies on OKI_COV_PRD_LINES
12.1.1
-
APPS.OKI_REFRESH_PVT dependencies on OKI_COV_PRD_LINES
12.1.1
-
APPS.OKI_LOAD_WBC_PVT dependencies on OKI_COV_PRD_LINES
12.1.1
-
APPS.OKI_LOAD_ENR_PVT dependencies on OKI_COV_PRD_LINES
12.1.1
-
APPS.OKI_LOAD_ENR_PVT dependencies on OKI_K_SALESREPS
12.1.1
-
APPS.OKI_LOAD_RBS_PVT dependencies on OKI_SALES_K_HDRS
12.1.1
-
APPS.OKI_LOAD_WBC_PVT dependencies on OKI_SALES_K_HDRS
12.1.1
-
APPS.OKI_LOAD_ENR_PVT dependencies on OKI_SALES_K_HDRS
12.1.1
-
APPS.OKI_UTL_PVT dependencies on OKI_SALES_K_HDRS
12.1.1
-
eTRM - OKI Tables and Views
12.1.1
description: Holds information about the value of renewed contracts on a historical basis. ,
-
APPS.OKI_REFRESH_PVT dependencies on OKI_REFRESHS
12.1.1
-
APPS.OKI_REFRESH_PVT dependencies on FND_STATS
12.1.1