Search Results receive_date
Overview
OKE_CHG_REQUESTS is the primary transactional table in the Oracle E-Business Suite Project Contracts (OKE) module that stores information about contract change requests. In release 12.1.1 and 12.2.2, the table resides in the OKE schema and is classified as VALID in the ETRM repository. Each row represents a single change request raised against a contract header, capturing the request lifecycle from initiation through approval and implementation. The table is central to the contract change management workflow, tracking what changed, who requested it, when it was approved, and which contract versions were affected.
Heuristically, the mined foreign-key structure suggests a Data Vault classification of hub for this object. The presence of a single surrogate primary key (CHG_REQUEST_ID), a business-key unique constraint, and numerous downstream tables referencing it are consistent with hub-style modeling, where the change request identifier serves as the durable business key around which related satellites and links are organized.
Key Information Stored
The table contains 39 documented columns. The most significant are:
- CHG_REQUEST_ID — the surrogate primary key, defined by the unique index OKE_CHG_REQUESTS_U1 and enforced via OKE_CHG_REQUESTS_PK.
- K_HEADER_ID — foreign key to OKE_K_HEADERS, identifying the contract header against which the change request is raised.
- CHG_REQUEST_NUM — the user-visible change request number; together with K_HEADER_ID it forms the business-key candidate OKE_CHG_REQUESTS_U2 (OKE_CHG_REQUESTS_UK01).
- CHG_TYPE_CODE — the category or type of change being requested.
- CHG_STATUS_CODE — foreign key to OKE_CHG_STATUSES_B, governing the workflow state of the request.
- CHG_REASON_CODE — the business reason for the change.
- IMPACT_FUNDING_FLAG — indicates whether the change impacts contract funding.
- EFFECTIVE_DATE — the date the resulting change takes effect.
- REQUESTED_BY_PERSON_ID and REQUESTED_DATE — the requester and the date the request was submitted.
- RECEIVE_DATE, APPROVE_DATE, and IMPLEMENT_DATE — key lifecycle timestamps.
- PREV_VERSION and NEW_VERSION — the contract versions before and after the change.
- DESCRIPTION and CHG_TEXT — narrative details of the request.
- LAST_CHG_LOG_ID — foreign key to OKE_CHG_LOGS, pointing to the most recent change log entry.
The table also includes the standard WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) and the ATTRIBUTE_CATEGORY plus ATTRIBUTE1–15 descriptive flexfield columns.
Common Use Cases and Queries
Typical reporting scenarios include open change request tracking, cycle-time analysis between REQUESTED_DATE and APPROVE_DATE, and funding-impact review. A common query joins the change request to its contract header:
- List all pending change requests for a contract:
SELECT c.CHG_REQUEST_NUM, c.CHG_STATUS_CODE, c.REQUESTED_DATE FROM OKE_CHG_REQUESTS c WHERE c.K_HEADER_ID = :header_id - Resolve the current status description: join to OKE_CHG_STATUSES_B on CHG_STATUS_CODE.
- Audit trail: join to OKE_CHG_LOGS on CHG_REQUEST_ID or via LAST_CHG_LOG_ID.
- Approval history: join to OKE_APPROVAL_HISTORY on CHG_REQUEST_ID.
- Version comparison: use PREV_VERSION and NEW_VERSION in conjunction with OKE_K_VERS_NUMBERS_H (joined via CHG_REQUEST_ID).
Related Objects
- OKE_K_HEADERS — parent contract header; join on OKE_CHG_REQUESTS.K_HEADER_ID.
- OKE_CHG_STATUSES_B — status lookup; join on CHG_STATUS_CODE.
- OKE_CHG_LOGS — child change log records; join on CHG_REQUEST_ID or via LAST_CHG_LOG_ID.
- OKE_APPROVAL_HISTORY — approval audit rows; referenced by OKE_APPROVAL_HISTORY.CHG_REQUEST_ID.
- OKE_K_BILLING_EVENTS — billing events tied to the change; join on BILL_CHG_REQ_ID.
- OKE_K_COMMUNICATIONS — communications linked to the request; join on CHG_REQUEST_ID.
- OKE_K_RELATED_ENTITIES — associated related entities; join on CHG_REQUEST_ID.
- OKE_K_VERS_NUMBERS_H — contract version history referencing the change; join on CHG_REQUEST_ID.
-
Table: OKE_CHG_REQUESTS
12.1.1
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_CHG_REQUESTS, object_name:OKE_CHG_REQUESTS, status:VALID, product: OKE - Project Contracts , description: stores information about contract change requests , implementation_dba_data: OKE.OKE_CHG_REQUESTS ,
-
Table: OKE_CHG_REQUESTS
12.2.2
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_CHG_REQUESTS, object_name:OKE_CHG_REQUESTS, status:VALID, product: OKE - Project Contracts , description: stores information about contract change requests , implementation_dba_data: OKE.OKE_CHG_REQUESTS ,
-
VIEW: OKE.OKE_CHG_REQUESTS#
12.2.2
-
VIEW: OKE.OKE_CHG_REQUESTS#
12.2.2
owner:OKE, object_type:VIEW, object_name:OKE_CHG_REQUESTS#, status:VALID,
-
APPS.OKE_CHG_REQUESTS_PKG SQL Statements
12.1.1
-
APPS.OKE_CHG_REQUESTS_PKG SQL Statements
12.2.2
-
View: OKE_CHG_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_CHG_REQUESTS_V, object_name:OKE_CHG_REQUESTS_V, status:VALID, product: OKE - Project Contracts , description: View for contract change requests , implementation_dba_data: APPS.OKE_CHG_REQUESTS_V ,
-
View: OKE_CHG_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_CHG_REQUESTS_V, object_name:OKE_CHG_REQUESTS_V, status:VALID, product: OKE - Project Contracts , description: View for contract change requests , implementation_dba_data: APPS.OKE_CHG_REQUESTS_V ,
-
VIEW: APPS.OKE_CHG_REQUESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_CHG_REQUESTS_V, object_name:OKE_CHG_REQUESTS_V, status:VALID,
-
TABLE: OKE.OKE_CHG_REQUESTS
12.1.1
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_CHG_REQUESTS, object_name:OKE_CHG_REQUESTS, status:VALID,
-
VIEW: APPS.OKE_CHG_REQUESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_CHG_REQUESTS_V, object_name:OKE_CHG_REQUESTS_V, status:VALID,
-
TYPE BODY: APPS.WF_EVENT_T
12.1.1
-
TYPE BODY: APPS_NE.WF_EVENT_T
12.2.2
-
TABLE: OKE.OKE_CHG_REQUESTS
12.2.2
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_CHG_REQUESTS, object_name:OKE_CHG_REQUESTS, status:VALID,
-
TYPE: APPS_NE.WF_EVENT_T
12.2.2
owner:APPS_NE, object_type:TYPE, object_name:WF_EVENT_T, status:VALID,
-
PACKAGE BODY: APPS.OKE_CHG_REQUESTS_PKG
12.1.1
-
PACKAGE BODY: APPS.OKE_CHG_REQUESTS_PKG
12.2.2
-
PACKAGE BODY: APPS.WF_EVENT_OJMSTEXT_QH
12.2.2
-
PACKAGE BODY: APPS.WF_EVENT_OJMSTEXT_QH
12.1.1
-
TYPE: APPS.WF_EVENT_T
12.1.1
owner:APPS, object_type:TYPE, object_name:WF_EVENT_T, status:VALID,
-
PACKAGE: APPS.WF_EVENT
12.1.1
-
PACKAGE: APPS.WF_EVENT
12.2.2
-
APPS.WF_EVENT dependencies on STANDARD
12.2.2
-
APPS.WF_EVENT dependencies on STANDARD
12.1.1
-
PACKAGE BODY: APPS.WF_STANDARD
12.1.1
-
PACKAGE BODY: APPS.WF_STANDARD
12.2.2
-
APPS.WF_STANDARD dependencies on WF_ENGINE
12.1.1
-
APPS.WF_STANDARD dependencies on WF_ENGINE
12.2.2
-
eTRM - OKE Tables and Views
12.1.1
description: This table stores the version comparison results. ,
-
eTRM - OKE Tables and Views
12.2.2
description: This table stores the version comparison results. ,