Search Results oks_inst_hist_details_v
Overview
The OKS_INST_HIST_DETAILS_V view is a reporting-layer object in the Oracle E-Business Suite Service Contracts (OKS) module, owned by the APPS schema. It exposes installation history detail records maintained by Oracle's Service Contracts and Install Base integration. In EBS 12.1.1 and 12.2.2, this view presents a denormalized, read-friendly projection of the OKS_INST_HIST_DETAILS table, allowing concurrent programs, forms, and custom reports to query installation transaction history without directly accessing the base table. The view is defined as a simple column rename/selection over its single base object, so it carries no aggregation or filtering logic. Its principal value lies in tracking changes to installed instances—quantity, amount, contract, service line, subline, customer, and status—captured at each transaction event.
Underlying Base Objects
The documented view metadata for ETRM 12.2.2 identifies a single referenced base object: the OKS_INST_HIST_DETAILS table, accessed through a synonym. The view text confirms this by selecting every visible column from the alias IHD, which is the synonym for OKS_INST_HIST_DETAILS. Because the view is a straightforward projection, its row cardinality equals that of the base table, and no joins to other entities (contracts, customers, service lines) are performed inside the view. Related descriptive data—such as the new customer name referenced by the NEW_CUSTOMER column—must be resolved by joining this view to the appropriate master tables, for example HZ_CUST_ACCOUNTS or the Install Base instance tables, at query time.
Key Columns
The view carries a wide set of paired old/new columns representing before-and-after state at each transaction, plus audit and version attributes. Notable columns include:
- ID, INS_ID, SYSTEM_ID, INSTANCE_ID_NEW — identity keys tying each history detail row to its instance and originating system.
- TRANSACTION_DATE, TRANSACTION_TYPE — the effective date and category of the change (for example, transfer, quantity update, or termination).
- INSTANCE_QTY_OLD/NEW, INSTANCE_AMT_OLD/NEW — before-and-after quantities and amounts for the covered instance.
- OLD_CONTRACT_ID/NEW_CONTRACT_ID with corresponding start and end dates — contract movement history.
- OLD_SERVICE_LINE_ID/NEW_SERVICE_LINE_ID and OLD_SUBLINE_ID/NEW_SUBLINE_ID with their date ranges — service coverage changes.
- OLD_CUSTOMER/NEW_CUSTOMER — the customer identifier before and after the transaction; this is the column most relevant to searches such as "new_customer".
- OLD_K_STATUS/NEW_K_STATUS — the install base lifecycle status before and after the transaction.
- SUBLINE_DATE_TERMINATED, TRANSFER_OPTION — termination date and transfer handling indicator.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, OBJECT_VERSION_NUMBER, SECURITY_GROUP_ID — standard audit, locking, and multi-org security columns.
Common Use Cases and Queries
The view is used to audit installation history, to determine when an instance moved from one customer to another, and to reconcile service contract coverage changes. A typical query filtering on the new customer column is:
SELECT id, ins_id, transaction_date, transaction_type, old_customer, new_customer FROM oks_inst_hist_details_v WHERE new_customer = :customer_id ORDER BY transaction_date DESC;- Reports joining to HZ_CUST_ACCOUNTS on NEW_CUSTOMER to print customer names for transferred instances.
- Concurrent programs extracting quantity and amount deltas between INSTANCE_QTY_OLD/NEW and INSTANCE_AMT_OLD/NEW.
- Status-transition analysis using OLD_K_STATUS and NEW_K_STATUS together with SUBLINE_DATE_TERMINATED.
All queries should be schema-qualified as APPS and, in multi-org environments, constrained by SECURITY_GROUP_ID or the applicable MOAC policy.
-
View: OKS_INST_HIST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_INST_HIST_DETAILS_V, object_name:OKS_INST_HIST_DETAILS_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_INST_HIST_DETAILS_V ,
-
View: OKS_INST_HIST_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_INST_HIST_DETAILS_V, object_name:OKS_INST_HIST_DETAILS_V, status:VALID, product: OKS - Service Contracts , implementation_dba_data: APPS.OKS_INST_HIST_DETAILS_V ,
-
SYNONYM: APPS.OKS_INST_HIST_DETAILS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKS_INST_HIST_DETAILS, status:VALID,
-
SYNONYM: APPS.OKS_INST_HIST_DETAILS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKS_INST_HIST_DETAILS, status:VALID,
-
PACKAGE: APPS.OKS_IHD_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKS_IHD_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKS_IHD_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_IHD_PVT, status:VALID,
-
PACKAGE: APPS.OKS_IHD_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKS_IHD_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKS_IHD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKS_IHD_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.OKS_INST_HIST_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_INST_HIST_DETAILS_V, object_name:OKS_INST_HIST_DETAILS_V, status:VALID,
-
VIEW: APPS.OKS_INST_HIST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_INST_HIST_DETAILS_V, object_name:OKS_INST_HIST_DETAILS_V, status:VALID,
-
APPS.OKS_IHD_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.OKS_IHD_PVT
12.1.1
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS_V
12.2.2
-
PACKAGE: APPS.OKS_IHD_PVT
12.2.2
-
APPS.OKS_IHD_PVT SQL Statements
12.2.2
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS_V
12.1.1
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS_V
12.2.2
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS_V
12.1.1
-
PACKAGE BODY: APPS.OKS_IHD_PVT
12.1.1
-
PACKAGE BODY: APPS.OKS_IHD_PVT
12.2.2
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS
12.1.1
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS
12.2.2
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS
12.1.1
-
APPS.OKS_IHD_PVT dependencies on OKS_INST_HIST_DETAILS
12.2.2
-
eTRM - OKS Tables and Views
12.2.2
-
eTRM - OKS Tables and Views
12.1.1
description: Stores the template set information. ,
-
APPS.OKS_IHD_PVT dependencies on OKC_API
12.2.2
-
APPS.OKS_IHD_PVT dependencies on OKC_API
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - OKS Tables and Views
12.2.2
-
eTRM - OKS Tables and Views
12.1.1
description: Stores the template set information. ,