Search Results interim_rpt_req_yn
Overview
The OKE_K_HEADERS_FWDN_V view is a reporting and integration object within the Oracle E-Business Suite OKE – Project Contracts module. As its name and description indicate ("Contract header view for flowdown"), it exposes contract header information in a flattened, denormalized form suitable for flowdown processing, reporting, and external consumption. The view is owned by the APPS schema and is documented as VALID in both ETRM 12.1.1 and 12.2.2.
The view consolidates a broad set of contract attributes—identification, versioning, status, classification, financial terms, and project associations—into a single queryable structure. It incorporates display-ready formatting, notably currency values converted through FND_CURRENCY_CACHE.GET_FORMAT_MASK, and provides paired flag columns (a code and a display value) such as BOOKED_FLAG/BOOKED_YN. Because it sits on top of the secured contract header view, it respects Oracle's contract security model while offering a convenient projection for downstream use cases such as project contract flowdown to sub-contracts, interfaces, and ad hoc reporting.
Underlying Base Objects
The documented base objects referenced by this view are:
- OKE_K_HEADERS_SECURE_V (VIEW) – the primary source supplying the contract header rows, filtered by the contract security model.
- OKE_K_SECURITY_PKG (PACKAGE) – the security package governing access to contract records.
- OKE_UTILS (PACKAGE) – utility functions used in column derivation (for example, converting flag codes into Y/N display values).
- FND_CURRENCY_CACHE (PACKAGE) – supplies the currency format mask applied to monetary columns such as
K_VALUEandNTE_AMOUNT.
This layered architecture means the view does not query base tables directly; instead it inherits row-level security, versioning logic, and lookup translation from the underlying secured view and packages, ensuring consistent behavior with other Project Contracts components.
Key Columns
- Identification:
ROW_ID,K_HEADER_ID,K_NUMBER,K_ALIAS,CONTRACT_NUMBER_MODIFIER. - Versioning:
MAJOR_VERSION,MINOR_VERSION,VERSION_DISP,OBJECT_VERSION_NUMBER. - Type & status:
CHR_TYPE,K_TYPE_CODE,K_TYPE,STATUS_CODE,STATUS. - Booking:
BOOKED_FLAGandBOOKED_YN— the internal flag code and its Y/N display counterpart, indicating whether the contract header has been booked. - Other flags:
OPEN_FLAG/OPEN_YN,EXPORT_FLAG/EXPORT_YN,CLASSIFIED_FLAG/CLASSIFIED_YN. - Organization & party:
AUTHORING_ORG_ID,AUTHORING_ORG,BUY_OR_SELL,CUSTOMER_PO_NUMBER. - Financial:
K_VALUEandNTE_AMOUNT(both formatted via the currency mask),CURRENCY_CODE,COST_OF_MONEY. - Dates:
START_DATE,END_DATE,AWARD_DATE,AUTHORIZE_DATE,DATE_ISSUED,DATE_SIGN_BY_CUSTOMER,DATE_SIGN_BY_CONTRACTOR,DATE_APPROVED. - Project context:
PROJECT_ID,PROJECT_NUMBER,PROJECT_NAME.
Common Use Cases and Queries
A frequent requirement is to retrieve booked contract headers for flowdown or downstream contracts:
SELECT K_NUMBER, K_ALIAS, STATUS, BOOKED_YN,
AUTHORING_ORG, K_VALUE, START_DATE, END_DATE
FROM APPS.OKE_K_HEADERS_FWDN_V
WHERE BOOKED_FLAG = 'Y'
AND STATUS_CODE = 'APPROVED';
Because the view applies contract security, results are automatically limited to records the querying user is authorized to see, making it safe for shared reporting and integration layers. It is also useful for project-level rollups:
- Listing all booked contracts associated with a given
PROJECT_IDorPROJECT_NUMBER. - Feeding flowdown interfaces that copy header attributes to sub-contracts.
- Building currency-consistent financial extracts using the pre-formatted
K_VALUEandNTE_AMOUNTcolumns. - Tracking award and approval milestones via
AWARD_DATE,DATE_APPROVED, andAUTHORIZE_DATE.
In each case, filtering on BOOKED_FLAG (with BOOKED_YN for display) provides the simplest way to isolate active, booked contracts from draft or unbooked headers.
-
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_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 ,
-
VIEW: APPS.OKE_K_HEADERS_FWDN_V
12.1.1
-
VIEW: APPS.OKE_K_HEADERS_FWDN_V
12.2.2
-
View: OKE_K_LINES_FWDN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FWDN_V, object_name:OKE_K_LINES_FWDN_V, status:VALID, product: OKE - Project Contracts , description: Contract line view for flowdown , implementation_dba_data: APPS.OKE_K_LINES_FWDN_V ,
-
View: OKE_K_LINES_FWDN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FWDN_V, object_name:OKE_K_LINES_FWDN_V, status:VALID, product: OKE - Project Contracts , description: Contract line view for flowdown , implementation_dba_data: APPS.OKE_K_LINES_FWDN_V ,
-
VIEW: APPS.OKE_K_LINES_FWDN_V
12.1.1
-
VIEW: APPS.OKE_K_LINES_FWDN_V
12.2.2
-
View: OKE_K_HEADERS_SECURE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_V, object_name:OKE_K_HEADERS_SECURE_V, status:VALID, product: OKE - Project Contracts , description: Secured contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_SECURE_V ,
-
View: OKE_K_LINES_SECURE_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_HV, object_name:OKE_K_LINES_SECURE_HV, status:VALID, product: OKE - Project Contracts , description: Secured contract historical line extended information view , implementation_dba_data: APPS.OKE_K_LINES_SECURE_HV ,
-
View: OKE_K_HEADERS_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_V, object_name:OKE_K_HEADERS_SECURE_V, status:VALID, product: OKE - Project Contracts , description: Secured contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_SECURE_V ,
-
View: OKE_K_HEADERS_SECURE_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_HV, object_name:OKE_K_HEADERS_SECURE_HV, status:VALID, product: OKE - Project Contracts , description: Secured historical contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_SECURE_HV ,
-
View: OKE_K_HEADERS_SECURE_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_HV, object_name:OKE_K_HEADERS_SECURE_HV, status:VALID, product: OKE - Project Contracts , description: Secured historical contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_SECURE_HV ,
-
View: OKE_K_LINES_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_V, object_name:OKE_K_LINES_SECURE_V, status:VALID, product: OKE - Project Contracts , description: Secured contract line extended information view , implementation_dba_data: APPS.OKE_K_LINES_SECURE_V ,
-
View: OKE_K_LINES_SECURE_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_HV, object_name:OKE_K_LINES_SECURE_HV, status:VALID, product: OKE - Project Contracts , description: Secured contract historical line extended information view , implementation_dba_data: APPS.OKE_K_LINES_SECURE_HV ,
-
View: OKE_K_LINES_SECURE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_V, object_name:OKE_K_LINES_SECURE_V, status:VALID, product: OKE - Project Contracts , description: Secured contract line extended information view , implementation_dba_data: APPS.OKE_K_LINES_SECURE_V ,
-
View: OKE_K_HEADERS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_V, object_name:OKE_K_HEADERS_FULL_V, status:VALID, product: OKE - Project Contracts , description: Contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_FULL_V ,
-
VIEW: APPS.OKE_K_HEADERS_FULL_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_HV, object_name:OKE_K_HEADERS_FULL_HV, status:VALID,
-
VIEW: APPS.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,
-
View: OKE_K_LINES_FULL_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_HV, object_name:OKE_K_LINES_FULL_HV, status:VALID, product: OKE - Project Contracts , description: Historical contract line extended information view , implementation_dba_data: APPS.OKE_K_LINES_FULL_HV ,
-
View: OKE_K_HEADERS_FULL_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_HV, object_name:OKE_K_HEADERS_FULL_HV, status:VALID, product: OKE - Project Contracts , description: Historical contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_FULL_HV ,
-
VIEW: APPS.OKE_K_HEADERS_SECURE_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_HV, object_name:OKE_K_HEADERS_SECURE_HV, status:VALID,
-
View: OKE_K_HEADERS_FULL_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_HV, object_name:OKE_K_HEADERS_FULL_HV, status:VALID, product: OKE - Project Contracts , description: Historical contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_FULL_HV ,
-
View: OKE_K_HEADERS_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_V, object_name:OKE_K_HEADERS_FULL_V, status:VALID, product: OKE - Project Contracts , description: Contract header extended information view , implementation_dba_data: APPS.OKE_K_HEADERS_FULL_V ,
-
VIEW: APPS.OKE_K_LINES_FULL_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_HV, object_name:OKE_K_LINES_FULL_HV, status:VALID,
-
View: OKE_K_LINES_FULL_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_HV, object_name:OKE_K_LINES_FULL_HV, status:VALID, product: OKE - Project Contracts , description: Historical contract line extended information view , implementation_dba_data: APPS.OKE_K_LINES_FULL_HV ,
-
View: OKE_K_LINES_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_V, object_name:OKE_K_LINES_FULL_V, status:VALID, product: OKE - Project Contracts , description: Contract line extended information view , implementation_dba_data: APPS.OKE_K_LINES_FULL_V ,
-
VIEW: APPS.OKE_K_HEADERS_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_V, object_name:OKE_K_HEADERS_FULL_V, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_FULL_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_HV, object_name:OKE_K_HEADERS_FULL_HV, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_V, object_name:OKE_K_HEADERS_SECURE_V, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_SECURE_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_HV, object_name:OKE_K_HEADERS_SECURE_HV, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_FULL_V, object_name:OKE_K_HEADERS_FULL_V, status:VALID,
-
VIEW: APPS.OKE_K_HEADERS_SECURE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_HEADERS_SECURE_V, object_name:OKE_K_HEADERS_SECURE_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.OKE_K_LINES_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_V, object_name:OKE_K_LINES_FULL_V, status:VALID,
-
VIEW: APPS.OKE_K_LINES_FULL_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_HV, object_name:OKE_K_LINES_FULL_HV, status:VALID,
-
VIEW: APPS.OKE_K_LINES_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_V, object_name:OKE_K_LINES_FULL_V, status:VALID,
-
View: OKE_K_LINES_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FULL_V, object_name:OKE_K_LINES_FULL_V, status:VALID, product: OKE - Project Contracts , description: Contract line extended information view , implementation_dba_data: APPS.OKE_K_LINES_FULL_V ,
-
VIEW: APPS.OKE_K_LINES_SECURE_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_HV, object_name:OKE_K_LINES_SECURE_HV, status:VALID,
-
VIEW: APPS.OKE_K_LINES_FWDN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FWDN_V, object_name:OKE_K_LINES_FWDN_V, status:VALID,
-
VIEW: APPS.OKE_K_LINES_SECURE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_V, object_name:OKE_K_LINES_SECURE_V, status:VALID,
-
VIEW: APPS.OKE_K_LINES_FWDN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_FWDN_V, object_name:OKE_K_LINES_FWDN_V, status:VALID,
-
VIEW: APPS.OKE_K_LINES_SECURE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_V, object_name:OKE_K_LINES_SECURE_V, status:VALID,
-
VIEW: APPS.OKE_K_LINES_SECURE_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_SECURE_HV, object_name:OKE_K_LINES_SECURE_HV, status:VALID,
-
eTRM - OKE Tables and Views
12.2.2
description: This table stores the version comparison results. ,
-
eTRM - OKE Tables and Views
12.1.1
description: This table stores the version comparison results. ,
-
PACKAGE BODY: APPS.OKE_VERSION_COMPARISON_PKG
12.2.2
-
PACKAGE BODY: APPS.OKE_VERSION_COMPARISON_PKG
12.1.1