Search Results okc_k_headers_v
Overview
OKC_K_HEADERS_V is an Oracle E-Business Suite view owned by the APPS schema within the OKC – Contracts Core product. It exposes contract header information by joining the base contract header entity table with its translation table, presenting a denormalized, reporting-friendly projection of the core contract header data. In Oracle EBS 12.1.1 and 12.2.2, the view carries a VALID status and is a documented, supported object for querying contracts core header details without the need to manually join the underlying _B and _TL tables or apply translation-language filtering logic. Its primary role is to support reporting, integration extracts, and lightweight programmatic access to contract header attributes, including contract number, status, dates, parties-related identifiers, and descriptive text.
Underlying Base Objects
According to the ETRM metadata, OKC_K_HEADERS_V is defined over the following documented objects:
- OKC_K_HEADERS_B (SYNONYM) – the base (non-translated) contract header table, holding the operational and transactional columns such as ID, DOCUMENT_ID, STS_CODE, CONTRACT_NUMBER, CURRENCY_CODE, and the various date columns.
- OKC_K_HEADERS_TL (SYNONYM) – the translation table holding language-dependent descriptive columns such as SHORT_DESCRIPTION, DESCRIPTION, COMMENTS, COGNOMEN, NON_RESPONSE_REASON, and SET_ASIDE_REASON.
- OKC_UTIL (PACKAGE) – referenced by the view definition, typically used for utility functions applied during translation or language resolution.
The view text confirms this structure: every column is prefixed either CHRB (aliased to OKC_K_HEADERS_B) or CHRT (aliased to OKC_K_HEADERS_TL), demonstrating a direct B-to-TL join keyed on the contract header ID. These synonyms resolve to the actual OKC tables in the APPS schema.
Key Columns
The view exposes identity, status, classification, and descriptive attributes. Notable columns include:
- ROW_ID / ID / DOCUMENT_ID / OBJECT_VERSION_NUMBER – technical identifiers and optimistic locking version, used for direct row targeting and integration.
- CONTRACT_NUMBER / CONTRACT_NUMBER_MODIFIER – the user-facing contract reference.
- STS_CODE / SCS_CODE / QCL_ID – contract status, status code, and quality/classification references.
- CURRENCY_CODE / BUY_OR_SELL / ISSUE_OR_RECEIVE – commercial orientation of the contract.
- AUTHORING_ORG_ID / INV_ORGANIZATION_ID – operating unit/organization ownership.
- START_DATE / END_DATE / DATE_SIGNED / DATE_APPROVED / DATE_TERMINATED / DATE_RENEWED – lifecycle dates.
- CHR_TYPE / RFP_TYPE / TEMPLATE_YN / GOVERNING_CONTRACT_YN – classification and behavior flags.
- SHORT_DESCRIPTION / DESCRIPTION / COMMENTS / COGNOMEN – translation-sourced descriptive text.
- ARCHIVED_YN / DELETED_YN – record state flags.
- ESTIMATED_AMOUNT – estimated contract value (column list continues beyond the documented excerpt).
Common Use Cases and Queries
Typical scenarios include contract register reporting, integration extracts into downstream systems, and data validation queries. A representative query retrieving active contract headers for a given operating unit:
- SELECT contract_number, contract_number_modifier, sts_code, currency_code, start_date, end_date, short_description FROM okc_k_headers_v WHERE authoring_org_id = :p_org_id AND deleted_yn = 'N' AND archived_yn = 'N';
- SELECT contract_number, buy_or_sell, estimated_amount, date_signed FROM okc_k_headers_v WHERE chr_type = :p_type AND date_signed BETWEEN :p_from AND :p_to;
- SELECT id, document_id, template_yn, governing_contract_yn, scs_code FROM okc_k_headers_v WHERE template_yn = 'Y';
Because the view supplies translation text and the base attributes in a single projection, it is well suited for reporting layers and interfaces that must avoid duplicated B/TL join logic. Queries should always constrain by organization or status to limit cost, and consumers should treat ID and DOCUMENT_ID as the reliable keys for joins to contract lines and related entities.
-
View: OKC_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_V, object_name:OKC_K_HEADERS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HEADERS_V ,
-
View: OKC_K_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_V, object_name:OKC_K_HEADERS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HEADERS_V ,
-
VIEW: APPS.OKL_K_VENDOR_PROGRAMS_UV
12.1.1
-
VIEW: APPS.OKL_K_VENDOR_PROGRAMS_UV
12.2.2
-
VIEW: APPS.OKL_C_V_RULES_UV
12.1.1
-
VIEW: APPS.OKL_RECONCILE_DISPLAY_UV
12.1.1
-
VIEW: APPS.OKL_C_V_RULES_UV
12.2.2
-
VIEW: APPS.OKL_REFUND_UV
12.2.2
-
VIEW: APPS.OKL_RECONCILE_DISPLAY_UV
12.2.2
-
VIEW: APPS.OKL_REFUND_UV
12.1.1
-
APPS.OKC_RENEWAL_OUTCOME_PUB SQL Statements
12.1.1
-
APPS.OKC_RENEWAL_OUTCOME_PUB SQL Statements
12.2.2
-
VIEW: APPS.OKS_K_DETAIL_V
12.2.2
-
VIEW: APPS.OKS_K_DETAIL_V
12.1.1
-
VIEW: APPS.OKS_CONT_HEADERS_V
12.1.1
-
VIEW: APPS.OKS_CONT_HEADERS_V
12.2.2
-
VIEW: APPS.OKS_PRODUCTS_V
12.2.2
-
VIEW: APPS.OKL_CS_CONT_ASSETS_UV
12.2.2
-
VIEW: APPS.OKL_CS_CONT_ASSETS_UV
12.1.1
-
VIEW: APPS.OKL_STRMS_STD_HDR_UV
12.1.1
-
VIEW: APPS.OKS_NOTE_SOURCES_V
12.1.1
-
VIEW: APPS.OKS_NOTE_SOURCES_V
12.2.2
-
View: OKL_K_VENDOR_PROGRAMS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_VENDOR_PROGRAMS_UV, object_name:OKL_K_VENDOR_PROGRAMS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_K_VENDOR_PROGRAMS_UV ,
-
View: OKL_K_VENDOR_PROGRAMS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_VENDOR_PROGRAMS_UV, object_name:OKL_K_VENDOR_PROGRAMS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_K_VENDOR_PROGRAMS_UV ,
-
VIEW: APPS.OKS_PRODUCTS_V
12.1.1
-
VIEW: APPS.OKC_K_ATE_V
12.1.1
-
VIEW: APPS.OKC_K_ATE_V
12.2.2
-
VIEW: APPS.OKL_STRMS_STD_HDR_UV
12.2.2
-
VIEW: APPS.OKL_CURE_VENDOR_PROGRAM_UV
12.1.1
-
VIEW: APPS.OKL_CURE_VENDOR_PROGRAM_UV
12.2.2
-
VIEW: APPS.OKS_LINES_V
12.1.1
-
VIEW: APPS.IEX_EXCLUSION_ELIGIBLE_UV
12.2.2
-
VIEW: APPS.IEX_EXCLUSION_ELIGIBLE_UV
12.1.1
-
VIEW: APPS.OKS_LINES_V
12.2.2
-
View: OKL_REFUND_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_REFUND_UV, object_name:OKL_REFUND_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_REFUND_UV ,
-
View: OKL_REFUND_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_REFUND_UV, object_name:OKL_REFUND_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_REFUND_UV ,
-
VIEW: APPS.OKL_CURE_VENDOR_SUMRY_UV
12.2.2
-
View: OKL_RECONCILE_DISPLAY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RECONCILE_DISPLAY_UV, object_name:OKL_RECONCILE_DISPLAY_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_RECONCILE_DISPLAY_UV ,
-
VIEW: APPS.OKL_CURE_VENDOR_SUMRY_UV
12.1.1
-
View: OKL_RECONCILE_DISPLAY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RECONCILE_DISPLAY_UV, object_name:OKL_RECONCILE_DISPLAY_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_RECONCILE_DISPLAY_UV ,
-
View: OKL_C_V_RULES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_C_V_RULES_UV, object_name:OKL_C_V_RULES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_C_V_RULES_UV ,
-
VIEW: APPS.OKL_CS_CUST_INS_POLICY_UV
12.2.2
-
VIEW: APPS.OKS_HEADER_DETAILS_V
12.1.1
-
VIEW: APPS.OKS_HEADER_DETAILS_V
12.2.2
-
VIEW: APPS.OKC_SALES_TEMPLATES_V
12.2.2
-
View: OKL_C_V_RULES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_C_V_RULES_UV, object_name:OKL_C_V_RULES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_C_V_RULES_UV ,
-
VIEW: APPS.OKL_CURE_CONTRACT_UV
12.1.1
-
VIEW: APPS.OKL_CS_OKS_CONTRACTS_UV
12.2.2
-
VIEW: APPS.OKL_CURE_CONTRACT_UV
12.2.2
-
VIEW: APPS.OKL_CS_AMORT_SCHEDULES_UV
12.2.2