Search Results k_number
Overview
APPS.OKE_K_HEADERS_FWDN_V is a forward-facing (FWDN) reporting view in Oracle E-Business Suite that exposes contract header information managed by Oracle Contract Management / Procurement Contracts (OKE schema). It presents a consolidated, presentation-ready projection of award and contract headers, including identifiers, versioning data, classification attributes, financial values, and workflow/status flags. The view is particularly relevant to users searching on "k_number," the human-readable contract or award number used to uniquely identify a contract header.
Because it resolves foreign key relationships into descriptive columns (organization names, product lines, priorities, project details, currency-formatted amounts), the view is commonly used as a reporting and integration source rather than as a transactional entity. It abstracts the underlying multitenant security model and joins so that downstream consumers — BI Publisher reports, interfaces, extracts, or custom OAF pages — can query contract headers without reconstructing those relationships manually.
Underlying Base Objects
The documented metadata identifies four referenced base objects:
- OKE_K_HEADERS_SECURE_V (VIEW) — the principal source, providing the security-filtered contract header rows.
- OKE_K_SECURITY_PKG (PACKAGE) — enforces contract-level access/authorization rules.
- OKE_UTILS (PACKAGE) — supplies utility functions used to derive display attributes.
- FND_CURRENCY_CACHE (PACKAGE) — provides FND_CURRENCY_CACHE.GET_FORMAT_MASK, used to format monetary columns such as K_VALUE and NTE_AMOUNT according to the currency precision defined in EBS.
The view therefore inherits the row-level security applied to contract headers via OKE_K_SECURITY_PKG, ensuring that only contracts the querying user is authorized to see are returned.
Key Columns
Columns most relevant to "k_number" and general contract reporting include:
- K_HEADER_ID — primary key of the contract header.
- K_NUMBER and CONTRACT_NUMBER_MODIFIER — the contract number; for standalone contracts the K_NUMBER is returned directly, while for BOA ("DO") type records the expression
BOA_NUMBER || '/' || K_NUMBERproduces a composite identifier. - K_ALIAS — alternate contract reference.
- MAJOR_VERSION / MINOR_VERSION / VERSION_DISP / OBJECT_VERSION_NUMBER — versioning and optimistic locking metadata.
- AUTHORING_ORG_ID / AUTHORING_ORG — the owning operating unit.
- K_TYPE_CODE / K_TYPE / TYPE_CLASS_CODE / CHR_TYPE — contract type classification.
- K_VALUE — contract value, formatted via FND_CURRENCY_CACHE.GET_FORMAT_MASK.
- CURRENCY_CODE, START_DATE, END_DATE, AWARD_DATE, STATUS_CODE/STATUS, BUY_OR_SELL, PRIME_K_ALIAS/PRIME_K_NUMBER, PROJECT_ID/PROJECT_NUMBER, and numerous _YN flag pairs (CLASSIFIED_YN, BOOKED_YN, OPEN_YN, EXPORT_YN, etc.).
Common Use Cases and Queries
Typical scenarios include contract register reports, award extracts, integration feeds into external systems, and lookups by contract number.
SELECT k_header_id,
k_number,
contract_number_modifier,
k_alias,
version_disp,
k_type,
status,
currency_code,
start_date,
end_date
FROM apps.oke_k_headers_fwdn_v
WHERE k_number LIKE :p_k_number
AND status_code = 'ACTIVE';
For BOA contracts, users often filter on the composite expression shown in the view definition (BOA_NUMBER || '/' || K_NUMBER). Because the view is security-aware, no additional WHERE clause is needed to enforce OKE contract access privileges; those are applied automatically by OKE_K_SECURITY_PKG through OKE_K_HEADERS_SECURE_V.
-
APPS.OKC_EXP_DATE_ASMBLR_PVT SQL Statements
12.1.1
-
APPS.OKC_EXP_DATE_ASMBLR_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKE_K_HEADERS_FWDN_V
12.2.2
-
VIEW: APPS.OKE_K_HEADERS_FWDN_V
12.1.1
-
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,
-
VIEW: APPS.OKE_K_ALL_ACCESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_ALL_ACCESS_V, object_name:OKE_K_ALL_ACCESS_V, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_ORGNZR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_ORGNZR_V, object_name:OKE_K_HEADERS_ORGNZR_V, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_ORGNZR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_ORGNZR_V, object_name:OKE_K_HEADERS_ORGNZR_V, status:VALID,
-
VIEW: APPS.OKE_K_ALL_ACCESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_ALL_ACCESS_V, object_name:OKE_K_ALL_ACCESS_V, status:VALID,
-
APPS.OKE_K_ORGANIZER_PKG 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: APPS.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,
-
APPS.OKE_K_ORGANIZER_PKG SQL Statements
12.1.1
-
APPS.OKC_CEVT_ASMBLR_PVT SQL Statements
12.2.2
-
VIEW: APPS.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,
-
APPS.OKE_COMM_ACT_UTILS SQL Statements
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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 ,
-
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 ,
-
View: OKE_K_HEADERS_FWDN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FWDN_V, object_name:OKE_K_HEADERS_FWDN_V, status:VALID, product: OKE - Project Contracts , description: Contract header view for flowdown , implementation_dba_data: APPS.OKE_K_HEADERS_FWDN_V ,
-
APPS.OKC_SCHR_PD_ASMBLR_PVT SQL Statements
12.1.1
-
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_HEADERS_FWDN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FWDN_V, object_name:OKE_K_HEADERS_FWDN_V, status:VALID, product: OKE - Project Contracts , description: Contract header view for flowdown , implementation_dba_data: APPS.OKE_K_HEADERS_FWDN_V ,
-
View: OKE_K_ALL_ACCESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_ALL_ACCESS_V, object_name:OKE_K_ALL_ACCESS_V, status:VALID, product: OKE - Project Contracts , description: Contract Security Assignment display view , implementation_dba_data: APPS.OKE_K_ALL_ACCESS_V ,
-
View: OKE_K_ALL_ACCESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_ALL_ACCESS_V, object_name:OKE_K_ALL_ACCESS_V, status:VALID, product: OKE - Project Contracts , description: Contract Security Assignment display view , implementation_dba_data: APPS.OKE_K_ALL_ACCESS_V ,
-
APPS.OKC_CEVT_ASMBLR_PVT SQL Statements
12.1.1
-
APPS.OKC_SCHR_AD_ASMBLR_PVT SQL Statements
12.1.1
-
APPS.OKC_SCHR_PD_ASMBLR_PVT SQL Statements
12.2.2
-
APPS.OKE_COMM_ACT_UTILS SQL Statements
12.1.1
-
APPS.OKC_SCHR_AD_ASMBLR_PVT SQL Statements
12.2.2
-
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 ,
-
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_K_HEADERS_ORGNZR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_ORGNZR_V, object_name:OKE_K_HEADERS_ORGNZR_V, status:VALID, product: OKE - Project Contracts , description: Contract listing view for Contract Organizer tree , implementation_dba_data: APPS.OKE_K_HEADERS_ORGNZR_V ,
-
View: OKE_K_HEADERS_ORGNZR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_ORGNZR_V, object_name:OKE_K_HEADERS_ORGNZR_V, status:VALID, product: OKE - Project Contracts , description: Contract listing view for Contract Organizer tree , implementation_dba_data: APPS.OKE_K_HEADERS_ORGNZR_V ,
-
APPS.OKE_HOLD_UTILS SQL Statements
12.1.1
-
APPS.OKE_HOLD_UTILS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKC_CRORDER_ASMBLR_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_CRORDER_ASMBLR_PVT
12.2.2
-
APPS.OKE_DELIVERABLE_UTILS SQL Statements
12.2.2
-
APPS.OKE_DELIVERABLE_UTILS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKC_CRQUOTE_ASMBLR_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_CEVT_ASMBLR_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_CRQUOTE_ASMBLR_PVT
12.2.2
-
PACKAGE BODY: APPS.OKC_CEVT_ASMBLR_PVT
12.2.2
-
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 ,
-
PACKAGE BODY: APPS.OKC_SCHR_AD_ASMBLR_PVT
12.2.2
-
PACKAGE BODY: APPS.OKC_K_SIGN_ASMBLR_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_EXP_DATE_ASMBLR_PVT
12.1.1