Search Results oke_k_headers_v
Overview
OKE_K_HEADERS_V is a PL/SQL view owned by the APPS schema in Oracle E-Business Suite, classified under the OKE – Project Contracts product family. It presents consolidated contract header information, combining columns drawn from the core contract header table, its translation table, and the Project Contracts extension table. The view is reported as VALID in both EBS 12.1.1 and 12.2.2, and its definition is consistent across those releases.
The view functions as a reporting and integration surface for contract header data. Because it flattens the multilingual header record, the descriptive attribute table, and the OKE-specific extension columns into a single row per contract, it allows reporting tools, concurrent programs, custom forms, and external interfaces to retrieve contract metadata without joining the underlying base tables explicitly. The presence of ROWID and OBJECT_VERSION_NUMBER in the SELECT list also makes the view usable in contexts where row identity and optimistic locking semantics are required.
Underlying Base Objects
The ETRM metadata documents four referenced base objects, all exposed to the view through APPS synonyms:
- OKC_K_HEADERS_ALL_B – the base contract header table, supplying operational contract attributes such as CONTRACT_NUMBER, dates, status codes, currency, and template indicators.
- OKC_K_HEADERS_TL – the translation table, supplying language-dependent descriptive fields such as COGNOMEN, SHORT_DESCRIPTION, DESCRIPTION, and COMMENTS.
- OKE_K_HEADERS – the Project Contracts extension table, supplying OKE-specific attributes including Prime K numbers, award and authorization dates, compliance flags, and financial control fields.
- PA_TASKS – referenced in the documented dependency list, consistent with the OKE product's integration with Oracle Projects structures.
The view text confirms aliases CH for the header table, CHT for the translation table, and EH for the extension attribute table. Columns such as K_HEADER_ID, K_TYPE_CODE, and PRODUCT_LINE_CODE originate from the extension, while core identifiers and status fields originate from the base header, and descriptive text originates from the translation table.
Key Columns
- K_HEADER_ID – the internal contract header identifier, the primary join key across OKE and OKC tables.
- CONTRACT_NUMBER, CONTRACT_NUMBER_MODIFIER, K_NUMBER_DISP – the user-facing contract number, its modifier, and the display form of the K number.
- CHR_TYPE, K_TYPE_CODE, PRODUCT_LINE_CODE, PRIORITY_CODE – classification attributes describing the contract or agreement type.
- START_DATE, END_DATE, AWARD_DATE, AUTHORIZE_DATE, DATE_SIGN_BY_CUSTOMER, DATE_SIGN_BY_CONTRACTOR – key lifecycle dates.
- STS_CODE, BOOKED_FLAG, OPEN_FLAG, CLASSIFIED_FLAG, TEMPLATE_YN – status and state indicators.
- ESTIMATED_AMOUNT, NTE_AMOUNT, LINE_VALUE_TOTAL, UNDEF_LINE_VALUE_TOTAL, CURRENCY_CODE – monetary and funding attributes.
- COGNOMEN, SHORT_DESCRIPTION, DESCRIPTION, COMMENTS – language-dependent descriptive text from the translation table.
- AUTHORING_ORG_ID, OWNING_ORGANIZATION_ID, PROJECT_ID – organizational and project context.
- ROWID, OBJECT_VERSION_NUMBER – row identity and concurrency control.
Common Use Cases and Queries
Typical uses include contract header reports, data extraction for interfaces, and validation queries during implementation. The view is convenient where a single-row, denormalized representation of the contract header is required.
Listing active, booked contracts for an operating unit:
- SELECT K_HEADER_ID, CONTRACT_NUMBER, COGNOMEN, START_DATE, END_DATE, ESTIMATED_AMOUNT FROM APPS.OKE_K_HEADERS_V WHERE BUY_OR_SELL = 'S' AND BOOKED_FLAG = 'Y' AND STS_CODE = 'ACTIVE';
Retrieving a specific contract by number:
- SELECT K_HEADER_ID, CONTRACT_NUMBER, K_TYPE_CODE, CURRENCY_CODE, SIGN_DATE, AUTHORIZE_DATE FROM APPS.OKE_K_HEADERS_V WHERE CONTRACT_NUMBER = :contract_number;
Joining to project structures for task-level reporting:
- SELECT h.CONTRACT_NUMBER, h.PROJECT_ID, t.TASK_NUMBER FROM APPS.OKE_K_HEADERS_V h, APPS.PA_TASKS t WHERE h.PROJECT_ID = t.PROJECT_ID;
Because the view is defined over base tables with no documented aggregation or DISTINCT, its performance characteristics follow those of the underlying header, translation, and extension tables; queries should filter on indexed columns such as K_HEADER_ID or CONTRACT_NUMBER.
-
View: OKE_K_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_V, object_name:OKE_K_HEADERS_V, status:VALID, product: OKE - Project Contracts , description: Contract header information view , implementation_dba_data: APPS.OKE_K_HEADERS_V ,
-
View: OKE_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_V, object_name:OKE_K_HEADERS_V, status:VALID, product: OKE - Project Contracts , description: Contract header information view , implementation_dba_data: APPS.OKE_K_HEADERS_V ,
-
VIEW: APPS.OKE_ORG_REL_ENTITIES_V
12.1.1
-
VIEW: APPS.OKE_ORG_REL_ENTITIES_V
12.2.2
-
VIEW: APPS.OKE_K_HEADERS_LOV_V
12.1.1
-
VIEW: APPS.OKE_K_HEADERS_LOV_V
12.2.2
-
VIEW: APPS.OKE_K_RELATED_ENTITIES_V
12.1.1
-
VIEW: APPS.OKE_K_RELATED_ENTITIES_V
12.2.2
-
VIEW: APPS.OKE_DTS_SUBCONTRACTS_V
12.2.2
-
VIEW: APPS.OKE_DTS_SUBCONTRACTS_V
12.1.1
-
View: OKE_ORG_REL_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_ORG_REL_ENTITIES_V, object_name:OKE_ORG_REL_ENTITIES_V, status:VALID, product: OKE - Project Contracts , description: Related Documents View for Contract Organizer , implementation_dba_data: APPS.OKE_ORG_REL_ENTITIES_V ,
-
View: OKE_ORG_REL_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_ORG_REL_ENTITIES_V, object_name:OKE_ORG_REL_ENTITIES_V, status:VALID, product: OKE - Project Contracts , description: Related Documents View for Contract Organizer , implementation_dba_data: APPS.OKE_ORG_REL_ENTITIES_V ,
-
APPS.OKE_DELIVERABLE_BILLING_WF SQL Statements
12.1.1
-
APPS.OKE_PRINT_CONTRACT_WF SQL Statements
12.2.2
-
APPS.OKE_PRINT_CONTRACT_WF SQL Statements
12.1.1
-
View: OKE_K_HEADERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_LOV_V, object_name:OKE_K_HEADERS_LOV_V, status:VALID, product: OKE - Project Contracts , implementation_dba_data: APPS.OKE_K_HEADERS_LOV_V ,
-
APPS.OKE_DELIVERABLE_BILLING_WF SQL Statements
12.2.2
-
View: OKE_K_HEADERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_LOV_V, object_name:OKE_K_HEADERS_LOV_V, status:VALID, product: OKE - Project Contracts , implementation_dba_data: APPS.OKE_K_HEADERS_LOV_V ,
-
View: OKE_K_RELATED_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_RELATED_ENTITIES_V, object_name:OKE_K_RELATED_ENTITIES_V, status:VALID, product: OKE - Project Contracts , description: Related Entity View , implementation_dba_data: APPS.OKE_K_RELATED_ENTITIES_V ,
-
View: OKE_K_RELATED_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_RELATED_ENTITIES_V, object_name:OKE_K_RELATED_ENTITIES_V, status:VALID, product: OKE - Project Contracts , description: Related Entity View , implementation_dba_data: APPS.OKE_K_RELATED_ENTITIES_V ,
-
PACKAGE BODY: APPS.OKE_CHG_REQ_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_CHG_REQ_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PJM_INQUIRY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PJM_INQUIRY, status:VALID,
-
PACKAGE BODY: APPS.OKE_CHG_REQ_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_CHG_REQ_UTILS, status:VALID,
-
PACKAGE BODY: APPS.PJM_INQUIRY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PJM_INQUIRY, status:VALID,
-
View: OKE_DTS_SUBCONTRACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_DTS_SUBCONTRACTS_V, object_name:OKE_DTS_SUBCONTRACTS_V, status:VALID, product: OKE - Project Contracts , description: View for subcontract data related to contract deliverables , implementation_dba_data: APPS.OKE_DTS_SUBCONTRACTS_V ,
-
View: OKE_DTS_SUBCONTRACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_DTS_SUBCONTRACTS_V, object_name:OKE_DTS_SUBCONTRACTS_V, status:VALID, product: OKE - Project Contracts , description: View for subcontract data related to contract deliverables , implementation_dba_data: APPS.OKE_DTS_SUBCONTRACTS_V ,
-
PACKAGE BODY: APPS.OKE_PRINT_CONTRACT_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_PRINT_CONTRACT_WF, status:VALID,
-
PACKAGE BODY: APPS.OKE_DELIVERABLE_BILLING_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_DELIVERABLE_BILLING_WF, status:VALID,
-
PACKAGE BODY: APPS.OKE_PRINT_FORM_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_PRINT_FORM_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKE_PRINT_CONTRACT_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_PRINT_CONTRACT_WF, status:VALID,
-
PACKAGE BODY: APPS.OKE_PRINT_FORM_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_PRINT_FORM_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKE_DELIVERABLE_BILLING_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_DELIVERABLE_BILLING_WF, status:VALID,
-
PACKAGE BODY: APPS.OKE_ALLOCATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_ALLOCATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKE_DTS_WORKFLOW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_DTS_WORKFLOW, status:VALID,
-
PACKAGE BODY: APPS.OKE_VERSION_COMPARISON_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_VERSION_COMPARISON_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKE_DTS_WORKFLOW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_DTS_WORKFLOW, status:VALID,
-
PACKAGE BODY: APPS.OKE_VERSION_COMPARISON_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_VERSION_COMPARISON_PKG, status:VALID,
-
PACKAGE BODY: APPS.OKE_ALLOCATION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_ALLOCATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKE_FORM_DD250
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_FORM_DD250, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.OKE_K_APPROVAL_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_K_APPROVAL_WF, status:VALID,
-
PACKAGE BODY: APPS.OKE_K_APPROVAL_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_K_APPROVAL_WF, status:VALID,
-
PACKAGE BODY: APPS.OKE_FORM_DD250
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_FORM_DD250, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_LOV_V, object_name:OKE_K_HEADERS_LOV_V, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_LOV_V, object_name:OKE_K_HEADERS_LOV_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.OKE_K_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKE_K_HEADERS, status:VALID,
-
PACKAGE BODY: APPS.OKE_DTS_INTEGRATION_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_DTS_INTEGRATION_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1