Search Results start_quarter
Overview
The view APPS.OKI_SALES_K_NEW_V is a reporting object within the Oracle E-Business Suite Contracts Intelligence module (product code OKI). It exposes information about new contracts — that is, contracts that are not renewals of previously existing contracts. The view sits on top of an OKI fact/staging table (identified by the KNW alias in the view text) and joins to several Oracle EBS lookup/validation tables to resolve codes into their business meanings.
Its practical role is to support sales and contract analytics: feeding Oracle Business Intelligence / Discoverer reports, dashboards, and downstream integrations that distinguish genuinely new commercial agreements from renewals. Because the underlying data is pre-aggregated with both transactional and reporting-set-of-books figures, the view is well suited for revenue trend analysis, win-rate reporting, and pipeline-versus-actual comparisons.
The search term contract_amount_renewed maps directly to this view. The view exposes NVL(KNW.CONTRACT_AMOUNT_RENEWED, 0) CONTRACT_AMOUNT_RENEWED and its SOB and base-currency counterparts, so even though the view reports "new" contracts, it still carries the renewed-amount column for completeness and reconciliation against the renewal view.
Underlying Base Objects
The ETRM metadata records no explicitly documented base objects for this view. From the embedded view text, the primary driving object is aliased KNW, an OKI contracts/sales fact table that supplies the bulk of projected columns. The remaining joins are lookup tables:
KNW— primary source supplying contract identity, amounts, currency, dates, and descriptive attributes.SCS— category lookup joined onSCS_CODE, providingCATEGORY_MEANING.STS/STE— status code lookups supplyingSTATUS_MEANINGandSTATUS_TYPE_MEANING.TRN— termination code lookup supplyingTERMINATION_MEANING.
Key Columns
CONTRACT_ID,CONTRACT_NUMBER,CONTRACT_NUMBER_MODIFIER,COMPLETE_CONTRACT_NUMBER— contract identity keys.AUTHORING_ORG_ID,ORGANIZATION_NAME— the authoring operating unit.CATEGORY_CODE/CATEGORY_MEANING,STATUS_CODE/STATUS_MEANING,STATUS_TYPE_CODE/STATUS_TYPE_MEANING— decoded classification and lifecycle status.CUSTOMER_PARTY_ID,CUSTOMER_NAME— customer identifiers.CONTRACT_AMOUNT,FORECAST_AMOUNT,CONTRACT_AMOUNT_RENEWED— transaction-currency amounts, each wrapped inNVL(...,0).SOB_CONTRACT_AMOUNT,SOB_FORECAST_AMOUNT,SOB_CONTRACT_AMOUNT_RENEWED,SOB_CURRENCY_CODE— set-of-books amounts.BASE_CONTRACT_AMOUNT,BASE_FORECAST_AMOUNT,BASE_CONTRACT_AMOUNT_RENEWED,BASE_CURRENCY_CODE— base-currency amounts.WIN_PERCENT,EXPECTED_CLOSE_DATE— sales pipeline metrics.- Date columns:
START_DATE,END_DATE,DATE_APPROVED,DATE_SIGNED,DATE_RENEWED,DATE_CANCELED,DATE_TERMINATED. - Period/quarter/year columns:
START_PERIOD_NUM,START_PERIOD_NAME,START_QUARTER,START_YEAR, and the matchingCLOSE_*set. INVENTORY_ORGANIZATION_ID,APPLICATION_ID,CREATION_DATE,LAST_UPDATE_DATE, plusATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTEn(flexfield placeholders).
Common Use Cases and Queries
Typical uses include isolating new-contract bookings by period, comparing forecast versus actual, and analysing win percentage and amount renewed.
SELECT CONTRACT_NUMBER,
CUSTOMER_NAME,
CONTRACT_AMOUNT,
CONTRACT_AMOUNT_RENEWED,
CURRENCY_CODE,
CLOSE_PERIOD_NAME,
WIN_PERCENT
FROM APPS.OKI_SALES_K_NEW_V
WHERE START_YEAR = :p_year
ORDER BY CONTRACT_AMOUNT DESC;
A second scenario reconciles renewed amounts across currencies for audit:
SELECT CONTRACT_ID,
CONTRACT_AMOUNT_RENEWED,
SOB_CONTRACT_AMOUNT_RENEWED,
BASE_CONTRACT_AMOUNT_RENEWED
FROM APPS.OKI_SALES_K_NEW_V
WHERE CONTRACT_AMOUNT_RENEWED <> 0;
Because all amount columns are NVL-guarded, aggregate queries can sum without null-handling and safely feed OKI dashboards and EBS 12.1.1 / 12.2.2 reporting layers.
-
View: OKI_SALES_K_NEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_NEW_V, object_name:OKI_SALES_K_NEW_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about new contracts, those that are not renewals of previous contracts. , implementation_dba_data: APPS.OKI_SALES_K_NEW_V ,
-
View: OKI_SALES_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_HEADERS_V, object_name:OKI_SALES_K_HEADERS_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about contracts with the sell intent. , implementation_dba_data: APPS.OKI_SALES_K_HEADERS_V ,
-
View: OKI_SALES_K_RENEW_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about renewal contracts. , implementation_dba_data: Not implemented in this database ,
-
View: OKI_SALES_K_NEW_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about new contracts, those that are not renewals of previous contracts. , implementation_dba_data: Not implemented in this database ,
-
View: OKI_SALES_K_HEADERS_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about contracts with the sell intent. , implementation_dba_data: Not implemented in this database ,
-
View: OKI_SALES_K_RENEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_RENEW_V, object_name:OKI_SALES_K_RENEW_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about renewal contracts. , implementation_dba_data: APPS.OKI_SALES_K_RENEW_V ,
-
VIEW: APPS.OKI_SALES_K_NEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_NEW_V, object_name:OKI_SALES_K_NEW_V, status:VALID,
-
VIEW: APPS.OKI_SALES_K_RENEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_RENEW_V, object_name:OKI_SALES_K_RENEW_V, status:VALID,
-
VIEW: APPS.OKI_SALES_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_HEADERS_V, object_name:OKI_SALES_K_HEADERS_V, status:VALID,
-
TABLE: OKI.OKI_SALES_K_HDRS
12.1.1
owner:OKI, object_type:TABLE, fnd_design_data:OKI.OKI_SALES_K_HDRS, object_name:OKI_SALES_K_HDRS, status:VALID,
-
APPS.OKI_REFRESH_PVT SQL Statements
12.1.1
-
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_REFRESH_PVT
12.1.1