Search Results okc_k_headers_b
Overview
The OKC_K_HEADERS_B table is the core header-level entity within the Oracle E-Business Suite Contracts Core (OKC) module for both releases 12.1.1 and 12.2.2. It serves as the master record for a contract, storing its fundamental attributes and acting as the primary grouping mechanism for all associated contract lines, terms, and conditions. Every contract created in the system is anchored by a single row in this table. Its design facilitates complex contract relationships, such as renewals and amendments, through self-referential foreign keys, making it the central point of integration for numerous other entities within the Contracts and related application suites.
Key Information Stored
The table's structure is designed to manage contract identity, classification, status, and relationships. The primary identifier is the ID column (OKC_K_HEADERS_B_PK), a unique system-generated surrogate key used for internal joins. Business-level contract identification is managed through the composite unique key CHR_CHR2_UK on CONTRACT_NUMBER and CONTRACT_NUMBER_MODIFIER. Critical foreign key columns define a contract's state and relationships: STS_CODE links to OKC_STATUSES_B for lifecycle status (e.g., Entered, Signed, Active), SCS_CODE links to OKC_SUBCLASSES_B for contract type classification, and QCL_ID links to OKC_QA_CHECK_LISTS_B for quality assurance. The self-referential columns CHR_ID_AWARD, CHR_ID_RENEWED, CHR_ID_RENEWED_TO, and CHR_ID_RESPONSE are pivotal for tracking the lineage and relationships between contract versions, amendments, and renewals.
Common Use Cases and Queries
This table is central to contract reporting, data extraction, and integration workflows. Common operational and analytical queries include retrieving a contract's header information by its business number, listing all contracts of a specific subtype or status, and tracing the amendment history of a contract. For instance, to find the current active version of a renewed contract, one would join OKC_K_HEADERS_B to itself on the CHR_ID_RENEWED_TO relationship. A typical pattern for extracting key contract header data for reporting would involve joining to the status and subclass descriptive tables:
SELECT h.contract_number, h.contract_number_modifier, s.name status, sc.name subtype FROM okc_k_headers_b h, okc_statuses_b s, okc_subclasses_b sc WHERE h.sts_code = s.code AND h.scs_code = sc.code AND h.sts_code = 'ACTIVE';
Integration points, such as feeding contract data to Order Management (OKS) or Receivables (AR), also rely on queries against this table using the ID as the key reference.
Related Objects
As the principal contract table, OKC_K_HEADERS_B has extensive relationships. Its most direct children store contract details: OKC_K_LINES_B for lines, OKC_K_PARTY_ROLES_B for parties, OKC_K_ITEMS for items, and OKC_K_ACCESSES for security. It is also referenced by process and history tables like OKC_K_PROCESSES and OKC_PRICE_ADJUSTMENTS_H. Crucially, it integrates with other EBS modules, serving as a parent table for OKS_K_ORDER_DETAILS in Service Contracts, AHL_OSP_ORDERS_B in Complex Maintenance, and AR_RAMC_AUDIT_TRAIL in Receivables. The provided metadata confirms these dependencies, highlighting its role as a shared service entity across the application.
-
Table: OKC_K_HEADERS_B
12.1.1
product: OKC - Contracts Core , description: Stores header level attributes of a Contract. It groups all the lines and terms and conditions of a contract. , implementation_dba_data: Not implemented in this database ,
-
Table: OKC_K_HEADERS_B
12.2.2
product: OKC - Contracts Core , description: Stores header level attributes of a Contract. It groups all the lines and terms and conditions of a contract. , implementation_dba_data: Not implemented in this database ,
-
Table: OKC_K_SALES_CREDITS_H
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_SALES_CREDITS_H, object_name:OKC_K_SALES_CREDITS_H, status:VALID, product: OKC - Contracts Core , description: History table for OKC_K_SALES_CREDITS , implementation_dba_data: OKC.OKC_K_SALES_CREDITS_H ,
-
Table: OKC_GOVERNANCES
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_GOVERNANCES, object_name:OKC_GOVERNANCES, status:VALID, product: OKC - Contracts Core , description: Intersection entity. , implementation_dba_data: OKC.OKC_GOVERNANCES ,
-
Table: OKC_GOVERNANCES
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_GOVERNANCES, object_name:OKC_GOVERNANCES, status:VALID, product: OKC - Contracts Core , description: Intersection entity. , implementation_dba_data: OKC.OKC_GOVERNANCES ,
-
Table: OKC_K_SALES_CREDITS_H
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_SALES_CREDITS_H, object_name:OKC_K_SALES_CREDITS_H, status:VALID, product: OKC - Contracts Core , description: This is a mirror image of base table OKC_K_SALES_CREDITS, please refer to the base table for detailed column level information , implementation_dba_data: OKC.OKC_K_SALES_CREDITS_H ,
-
Table: OKC_K_SALES_CREDITS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_SALES_CREDITS, object_name:OKC_K_SALES_CREDITS, status:VALID, product: OKC - Contracts Core , description: Records sales credits for the sale of services in a service contract. , implementation_dba_data: OKC.OKC_K_SALES_CREDITS ,
-
Table: OKC_K_SALES_CREDITS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_SALES_CREDITS, object_name:OKC_K_SALES_CREDITS, status:VALID, product: OKC - Contracts Core , description: Records sales credits for the sale of services in a service contract. , implementation_dba_data: OKC.OKC_K_SALES_CREDITS ,
-
Table: OKC_OPERATION_LINES
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_OPERATION_LINES, object_name:OKC_OPERATION_LINES, status:VALID, product: OKC - Contracts Core , description: The Operation Line provides additional information about what did happen or will happen for an Operation Instance. , implementation_dba_data: OKC.OKC_OPERATION_LINES ,
-
View: OKC_LAUNCH_HISTORY_GRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_LAUNCH_HISTORY_GRID_V, object_name:OKC_LAUNCH_HISTORY_GRID_V, status:VALID, product: OKC - Contracts Core , description: View for Launchpad History Tab , implementation_dba_data: APPS.OKC_LAUNCH_HISTORY_GRID_V ,
-
View: OKC_LAUNCH_HISTORY_GRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_LAUNCH_HISTORY_GRID_V, object_name:OKC_LAUNCH_HISTORY_GRID_V, status:VALID, product: OKC - Contracts Core , description: View for Launchpad History Tab , implementation_dba_data: APPS.OKC_LAUNCH_HISTORY_GRID_V ,
-
Table: OKC_K_HEADERS_TL
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_HEADERS_TL, object_name:OKC_K_HEADERS_TL, status:VALID, product: OKC - Contracts Core , description: Translatable columns from OKC_K_HEADERS_B, as per MLS standards. , implementation_dba_data: OKC.OKC_K_HEADERS_TL ,
-
Table: OKC_K_HEADERS_TL
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_HEADERS_TL, object_name:OKC_K_HEADERS_TL, status:VALID, product: OKC - Contracts Core , description: Translatable columns from OKC_K_HEADERS_B, as per MLS standards. , implementation_dba_data: OKC.OKC_K_HEADERS_TL ,
-
Table: OKC_K_HEADERS_BH
12.1.1
product: OKC - Contracts Core , description: History table for OKC_K_HEADERS_B. , implementation_dba_data: Not implemented in this database ,
-
Table: OKC_K_VERS_NUMBERS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_VERS_NUMBERS, object_name:OKC_K_VERS_NUMBERS, status:VALID, product: OKC - Contracts Core , description: Indicates the current version of the contract as a document. , implementation_dba_data: OKC.OKC_K_VERS_NUMBERS ,
-
Table: OKC_USER_BINS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_USER_BINS, object_name:OKC_USER_BINS, status:VALID, product: OKC - Contracts Core , description: Denormalized entity used to maintain various lists of contracts for user portals. , implementation_dba_data: OKC.OKC_USER_BINS ,
-
Table: OKC_USER_BINS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_USER_BINS, object_name:OKC_USER_BINS, status:VALID, product: OKC - Contracts Core , description: Denormalized entity used to maintain various lists of contracts for user portals. , implementation_dba_data: OKC.OKC_USER_BINS ,
-
Table: OKC_K_ACCESSES
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_ACCESSES, object_name:OKC_K_ACCESSES, status:VALID, product: OKC - Contracts Core , description: Level of access granted to a resource or resource group for a contract. , implementation_dba_data: OKC.OKC_K_ACCESSES ,
-
Table: OKC_K_VERS_NUMBERS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_VERS_NUMBERS, object_name:OKC_K_VERS_NUMBERS, status:VALID, product: OKC - Contracts Core , description: Indicates the current version of the contract as a document. , implementation_dba_data: OKC.OKC_K_VERS_NUMBERS ,
-
Table: OKC_K_HEADERS_BH
12.2.2
product: OKC - Contracts Core , description: History table for OKC_K_HEADERS_B. , implementation_dba_data: Not implemented in this database ,
-
Table: OKC_K_REL_OBJS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_REL_OBJS, object_name:OKC_K_REL_OBJS, status:VALID, product: OKC - Contracts Core , description: An intersection entity which links a contract header or line to other objects in the schema in a predefined manner. , implementation_dba_data: OKC.OKC_K_REL_OBJS ,
-
Table: OKC_STATUSES_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_STATUSES_B, object_name:OKC_STATUSES_B, status:VALID, product: OKC - Contracts Core , description: User defined values that define a contract's status. , implementation_dba_data: OKC.OKC_STATUSES_B ,
-
Table: OKC_SECTIONS_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_SECTIONS_B, object_name:OKC_SECTIONS_B, status:VALID, product: OKC - Contracts Core , description: Sections are used to format clauses of a Contract while printing , implementation_dba_data: OKC.OKC_SECTIONS_B ,
-
View: OKC_CONT_NUM_DISTINCT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_CONT_NUM_DISTINCT_V, object_name:OKC_CONT_NUM_DISTINCT_V, status:VALID, product: OKC - Contracts Core , description: This view lists unique contract numbers only. , implementation_dba_data: APPS.OKC_CONT_NUM_DISTINCT_V ,
-
Table: OKC_PRICE_ATT_VALUES
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_PRICE_ATT_VALUES, object_name:OKC_PRICE_ATT_VALUES, status:VALID, product: OKC - Contracts Core , description: Values of price attributes for an object to be used to derive the price for a contract header and contract line. , implementation_dba_data: OKC.OKC_PRICE_ATT_VALUES ,
-
Table: OKC_K_HISTORY_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_HISTORY_B, object_name:OKC_K_HISTORY_B, status:VALID, product: OKC - Contracts Core , description: Contract status change history and history for any actions during contract life cycle , implementation_dba_data: OKC.OKC_K_HISTORY_B ,
-
View: OKC_CONT_NUM_DISTINCT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_CONT_NUM_DISTINCT_V, object_name:OKC_CONT_NUM_DISTINCT_V, status:VALID, product: OKC - Contracts Core , description: This view lists unique contract numbers only. , implementation_dba_data: APPS.OKC_CONT_NUM_DISTINCT_V ,
-
Table: OKC_K_PROCESSES
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_PROCESSES, object_name:OKC_K_PROCESSES, status:VALID, product: OKC - Contracts Core , description: Defines the use of a particular process for a particular contract. , implementation_dba_data: OKC.OKC_K_PROCESSES ,
-
Table: OKC_QA_CHECK_LISTS_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_QA_CHECK_LISTS_B, object_name:OKC_QA_CHECK_LISTS_B, status:VALID, product: OKC - Contracts Core , description: Associates a list of quality assurance processes with a specific contract or contract template. , implementation_dba_data: OKC.OKC_QA_CHECK_LISTS_B ,
-
Table: OKC_STATUSES_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_STATUSES_B, object_name:OKC_STATUSES_B, status:VALID, product: OKC - Contracts Core , description: User defined values that define a contract's status. , implementation_dba_data: OKC.OKC_STATUSES_B ,
-
Table: OKC_K_PROCESSES
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_PROCESSES, object_name:OKC_K_PROCESSES, status:VALID, product: OKC - Contracts Core , description: Defines the use of a particular process for a particular contract. , implementation_dba_data: OKC.OKC_K_PROCESSES ,
-
Table: OKC_K_ITEMS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_ITEMS, object_name:OKC_K_ITEMS, status:VALID, product: OKC - Contracts Core , description: Stores item attributes for Contract Lines. , implementation_dba_data: OKC.OKC_K_ITEMS ,
-
Table: OKC_CHANGE_REQUESTS_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_CHANGE_REQUESTS_B, object_name:OKC_CHANGE_REQUESTS_B, status:VALID, product: OKC - Contracts Core , description: A request to make one or more changes to a Contract. , implementation_dba_data: OKC.OKC_CHANGE_REQUESTS_B ,
-
Table: OKC_K_ITEMS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_ITEMS, object_name:OKC_K_ITEMS, status:VALID, product: OKC - Contracts Core , description: Stores item attributes for Contract Lines. , implementation_dba_data: OKC.OKC_K_ITEMS ,
-
Table: OKC_K_GRPINGS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_GRPINGS, object_name:OKC_K_GRPINGS, status:VALID, product: OKC - Contracts Core , description: This table holds the membership of a contract group for both contracts and other contract groups. , implementation_dba_data: OKC.OKC_K_GRPINGS ,
-
Table: OKC_SECTIONS_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_SECTIONS_B, object_name:OKC_SECTIONS_B, status:VALID, product: OKC - Contracts Core , description: Sections are used to format clauses of a Contract while printing , implementation_dba_data: OKC.OKC_SECTIONS_B ,
-
Table: OKC_K_ACCESSES
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_ACCESSES, object_name:OKC_K_ACCESSES, status:VALID, product: OKC - Contracts Core , description: Level of access granted to a resource or resource group for a contract. , implementation_dba_data: OKC.OKC_K_ACCESSES ,
-
Table: OKC_PRICE_ADJUSTMENTS_H
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_PRICE_ADJUSTMENTS_H, object_name:OKC_PRICE_ADJUSTMENTS_H, status:VALID, product: OKC - Contracts Core , description: Record of actual adjustments made to price based on price attribute values. , implementation_dba_data: OKC.OKC_PRICE_ADJUSTMENTS_H ,
-
Table: OKC_PRICE_ATT_VALUES_H
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_PRICE_ATT_VALUES_H, object_name:OKC_PRICE_ATT_VALUES_H, status:VALID, product: OKC - Contracts Core , description: Values of price attributes for an object to be used to derive the price for a contract header and contract line. , implementation_dba_data: OKC.OKC_PRICE_ATT_VALUES_H ,
-
Table: OKC_PRICE_ATT_VALUES
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_PRICE_ATT_VALUES, object_name:OKC_PRICE_ATT_VALUES, status:VALID, product: OKC - Contracts Core , description: Values of price attributes for an object to be used to derive the price for a contract header and contract line , implementation_dba_data: OKC.OKC_PRICE_ATT_VALUES ,
-
Table: OKC_K_REL_OBJS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_REL_OBJS, object_name:OKC_K_REL_OBJS, status:VALID, product: OKC - Contracts Core , description: An intersection entity which links a contract header or line to other objects in the schema in a predefined manner. , implementation_dba_data: OKC.OKC_K_REL_OBJS ,
-
Table: OKC_PRICE_ATT_VALUES_H
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_PRICE_ATT_VALUES_H, object_name:OKC_PRICE_ATT_VALUES_H, status:VALID, product: OKC - Contracts Core , description: Values of price attributes for an object to be used to derive the price for a contract header and contract line. , implementation_dba_data: OKC.OKC_PRICE_ATT_VALUES_H ,
-
Table: OKC_CHANGE_REQUESTS_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_CHANGE_REQUESTS_B, object_name:OKC_CHANGE_REQUESTS_B, status:VALID, product: OKC - Contracts Core , description: A request to make one or more changes to a Contract. , implementation_dba_data: OKC.OKC_CHANGE_REQUESTS_B ,
-
Table: OKC_QA_CHECK_LISTS_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_QA_CHECK_LISTS_B, object_name:OKC_QA_CHECK_LISTS_B, status:VALID, product: OKC - Contracts Core , description: Associates a list of quality assurance processes with a specific contract or contract template. , implementation_dba_data: OKC.OKC_QA_CHECK_LISTS_B ,
-
View: OKC_SRS_REN_CONTRACT_NUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_SRS_REN_CONTRACT_NUM_V, object_name:OKC_SRS_REN_CONTRACT_NUM_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_SRS_REN_CONTRACT_NUM_V ,
-
Table: OKC_K_HISTORY_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_HISTORY_B, object_name:OKC_K_HISTORY_B, status:VALID, product: OKC - Contracts Core , description: Contract status change history and history for any actions during contract life cycle , implementation_dba_data: OKC.OKC_K_HISTORY_B ,
-
Table: OKC_PRICE_ADJUSTMENTS_H
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_PRICE_ADJUSTMENTS_H, object_name:OKC_PRICE_ADJUSTMENTS_H, status:VALID, product: OKC - Contracts Core , description: This is a mirror image of base table OKC_PRICE_ADJUSTMENTS, please refer to the base table for detailed column level information. , implementation_dba_data: OKC.OKC_PRICE_ADJUSTMENTS_H ,
-
View: OKC_SRS_REN_CONTRACT_NUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_SRS_REN_CONTRACT_NUM_V, object_name:OKC_SRS_REN_CONTRACT_NUM_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_SRS_REN_CONTRACT_NUM_V ,
-
Table: OKC_RULE_GROUPS_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_RULE_GROUPS_B, object_name:OKC_RULE_GROUPS_B, status:VALID, product: OKC - Contracts Core , description: Collection of RULES needed to inform an automated process about a business function. , implementation_dba_data: OKC.OKC_RULE_GROUPS_B ,
-
Table: OKC_RULE_GROUPS_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_RULE_GROUPS_B, object_name:OKC_RULE_GROUPS_B, status:VALID, product: OKC - Contracts Core , description: Collection of RULES needed to inform an automated process about a business function. , implementation_dba_data: OKC.OKC_RULE_GROUPS_B ,