Search Results implement_date




Overview

OKE_CHG_REQUESTS_V is an APPS-owned reporting view within the OKE – Project Contracts module of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. It exposes the contract change request entity together with its descriptive and lookup-derived attributes, providing a denormalized, human-readable projection of change request header data for reporting, inquiry, and integration purposes. Because change request records reference several coded values — change type, change status, and change reason — the view resolves these codes into translatable names and meanings, sparing downstream consumers from performing multiple joins against lookup and translation tables. The view is defined as VALID in the data dictionary and is intended for read-only consumption by reports, concurrent programs, and external interfaces. Among its exposed columns, RECEIVE_DATE is particularly relevant to users tracking the lifecycle of a change request, as it records the date the request was received into the approval workflow, distinct from the requested and approved dates.

Underlying Base Objects

The view is defined over the following documented base objects:

The joins are inner joins keyed on person, status, language, and lookup codes. Consequently, a change request whose requested person version, status, type, or reason does not resolve to a matching row will not appear in query results.

Key Columns

Common Use Cases and Queries

Typical uses include open change request registers, cycle-time reporting from RECEIVE_DATE to APPROVE_DATE and IMPLEMENT_DATE, status aging, and version-history extracts.

  • Open requests received in a period:
    SELECT chg_request_num, full_name, receive_date, chg_status_name
    FROM   oke_chg_requests_v
    WHERE  chg_status_name <> 'Implemented'
    AND    receive_date BETWEEN :p_from AND :p_to;
  • Cycle-time analysis:
    SELECT chg_request_num, receive_date, approve_date, implement_date,
           TRUNC(implement_date - receive_date) days_to_implement
    FROM   oke_chg_requests_v
    WHERE  implement_date IS NOT NULL;
  • Requests by type and reason:
    SELECT chg_type_name, chg_reason_code, COUNT(*)
    FROM   oke_chg_requests_v
    GROUP  BY chg_type_name, chg_reason_code;

Queries should filter on indexed base columns where possible, as the view performs multiple joins, and should account for the language restriction on status translations.