Search Results sav_sae_id
Overview
APPS.OKC_K_ATE_V is a reporting and integration view within the Oracle E-Business Suite Contracts (OKC) module, part of the ETRM (Enterprise Contracts) schema family. It consolidates contract header information with the standard articles (clauses, terms, and structured text) attached to those contracts, exposing a flattened and de-normalized result set suitable for direct querying by reports, extracts, and downstream interfaces. Unlike the base transactional tables, which store contract headers, article instances, and article versions in separate structures with surrogate keys, OKC_K_ATE_V joins these structures and presents human-readable identifiers, contract numbers, descriptions, and article identifiers together.
The view is defined with a DISTINCT clause, indicating that the join across headers, articles, and article versions can produce duplicate rows when multiple version records or article instances match the same contract. The DISTINCT suppresses that duplication so that consumers receive one row per contract/standard-article combination. This makes the view particularly convenient for ad-hoc operational reporting without requiring the caller to understand the OKC data model.
Underlying Base Objects
The view is documented as being defined over the following objects:
- OKC_K_HEADERS_V (VIEW) — the contract header source, aliased as A. Supplies the contract ID, contract number, contract number modifier, and short description.
- OKC_K_ARTICLES_B (SYNONYM) — the base article table, aliased as B. Supplies the SAV_SAE_ID column, which is the key linkage between a contract and its article.
- OKC_ARTICLE_VERSIONS (SYNONYM) — the article version table, aliased as VERS. Supplies the version identifier and release information.
- OKC_ARTICLES_V (VIEW) — the articles view, aliased as ART. Used to confirm the article is the standard version via STANDARD_YN.
- OKC_UTIL (PACKAGE) — referenced for supporting utility logic associated with the OKC schema.
The join logic links contract headers to articles through DNZ_CHR_ID = A.ID, then joins the article's SAV_SAE_ID to ART.ARTICLE_ID, and finally connects the article version through B.ARTICLE_VERSION_ID = VERS.ARTICLE_VERSION_ID. The predicate ART.STANDARD_YN = 'Y' restricts results to standard articles.
Key Columns
- ID — the contract header identifier (DNZ_CHR_ID), the primary linkage currency in the OKC model.
- CONTRACT_NUMBER and CONTRACT_NUMBER_MODIFIER — the user-facing contract number and its optional modifier, together forming the contract reference.
- SHORT_DESCRIPTION — a brief textual description of the contract.
- SAV_SAE_ID — the article identifier exposed from OKC_K_ARTICLES_B. This is the column the user searched for and represents the article/SAE reference attached to the contract.
- SAV_SAV_RELEASE — the release or version value, computed as NVL(VERS.SAV_RELEASE, VERS.ARTICLE_VERSION_NUMBER). This yields the SAV release when populated and falls back to the article version number otherwise.
Common Use Cases and Queries
The view is typically used to report which standard articles and article releases are attached to a given contract. Because SAV_SAE_ID is exposed directly, it is especially useful for identifying contracts associated with a specific article identifier, or for tracing the release lineage of that article across contracts.
A representative query returning all standard articles for a specific contract is:
SELECT contract_number, contract_number_modifier, short_description, sav_sae_id, sav_sav_release FROM apps.okc_k_ate_v WHERE id = :contract_id;
To locate contracts tied to a particular article identifier, the SAV_SAE_ID column can be filtered directly:
SELECT id, contract_number, sav_sae_id, sav_sav_release FROM apps.okc_k_ate_v WHERE sav_sae_id = :sav_sae_id;
For release-level analysis, the computed SAV_SAV_RELEASE column supports grouping and reporting of article releases across the contract population, for example aggregating counts of contracts per release. Because the view relies on the OKC_UTIL package and the underlying Contracts views, query performance is best when accessed with the Apps schema and appropriate Contracts responsibilities, and callers should expect the DISTINCT processing to carry a modest cost on large contract volumes.
-
VIEW: APPS.OKC_K_ATE_V
12.1.1
-
VIEW: APPS.OKC_K_ATE_V
12.2.2
-
View: OKC_K_ATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ATE_V, object_name:OKC_K_ATE_V, status:VALID, product: OKC - Contracts Core , description: View to provide the contract using the std articles , implementation_dba_data: APPS.OKC_K_ATE_V ,
-
View: OKC_K_ATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ATE_V, object_name:OKC_K_ATE_V, status:VALID, product: OKC - Contracts Core , description: View to provide the contract using the std articles , implementation_dba_data: APPS.OKC_K_ATE_V ,
-
VIEW: APPS.OKL_K_ARTICLES_UV
12.2.2
-
VIEW: APPS.OKL_K_ARTICLES_UV
12.1.1
-
View: OKL_K_ARTICLES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_ARTICLES_UV, object_name:OKL_K_ARTICLES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_K_ARTICLES_UV ,
-
VIEW: OKC.OKC_K_ARTICLES_B#
12.2.2
-
View: OKL_K_ARTICLES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_ARTICLES_UV, object_name:OKL_K_ARTICLES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_K_ARTICLES_UV ,
-
VIEW: APPS.OKL_VP_STD_ARTICLES_UV
12.1.1
-
View: OKL_VP_STD_ARTICLES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_STD_ARTICLES_UV, object_name:OKL_VP_STD_ARTICLES_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_VP_STD_ARTICLES_UV ,
-
View: OKL_VP_STD_ARTICLES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_STD_ARTICLES_UV, object_name:OKL_VP_STD_ARTICLES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_VP_STD_ARTICLES_UV ,
-
VIEW: OKC.OKC_K_ARTICLES_BH#
12.2.2
-
VIEW: APPS.OKL_VP_STD_ARTICLES_UV
12.2.2
-
VIEW: APPS.OKL_VP_STD_ARTICLES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_STD_ARTICLES_UV, object_name:OKL_VP_STD_ARTICLES_UV, status:VALID,
-
View: OKC_KOL_K_ARTICLES_V
12.2.2
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKC_KOL_K_ARTICLES_V
12.1.1
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKL_VP_STD_ARTICLES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_STD_ARTICLES_UV, object_name:OKL_VP_STD_ARTICLES_UV, status:VALID,
-
View: OKR_K_ARTICLES_V
12.2.2
product: OKR - Contracts for Rights (Obsolete) , description: View for table OKC_K_ARTICLES_B , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKE_K_ARTICLES_PRINT_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_PRINT_V, status:VALID,
-
APPS.OKC_CODE_HOOK SQL Statements
12.2.2
-
VIEW: APPS.OKE_K_ARTICLES_PRINT_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_PRINT_V, status:VALID,
-
VIEW: APPS.OKC_K_ATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ATE_V, object_name:OKC_K_ATE_V, status:VALID,
-
View: OKR_K_ARTICLES_HV
12.1.1
product: OKR - Contracts for Rights (Obsolete) , description: History view on OKR_K_ARTICLES , implementation_dba_data: Not implemented in this database ,
-
APPS.OKC_TERMS_DEVIATIONS_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKE_K_ARTICLES_PRINT_HV
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_PRINT_HV, status:VALID,
-
View: OKR_K_ARTICLES_V
12.1.1
product: OKR - Contracts for Rights (Obsolete) , description: View for table OKC_K_ARTICLES_B , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKE_K_ARTICLES_PRINT_HV
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_PRINT_HV, status:VALID,
-
View: OKC_ART_STANDARDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_ART_STANDARDS_V, object_name:OKC_ART_STANDARDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_ART_STANDARDS_V ,
-
View: OKR_K_ARTICLES_HV
12.2.2
product: OKR - Contracts for Rights (Obsolete) , description: History view on OKR_K_ARTICLES , implementation_dba_data: Not implemented in this database ,
-
View: OKC_ART_STANDARDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_ART_STANDARDS_V, object_name:OKC_ART_STANDARDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_ART_STANDARDS_V ,
-
View: OKC_K_ARTICLES_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_HV, object_name:OKC_K_ARTICLES_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_ARTICLES. , implementation_dba_data: APPS.OKC_K_ARTICLES_HV ,
-
VIEW: APPS.OKC_K_ATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ATE_V, object_name:OKC_K_ATE_V, status:VALID,
-
View: OKC_K_ARTICLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_V, object_name:OKC_K_ARTICLES_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_K_ARTICLES_V ,
-
View: OKC_K_ARTICLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_V, object_name:OKC_K_ARTICLES_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_K_ARTICLES_V ,
-
APPS.OKC_TERMS_DEVIATIONS_PVT SQL Statements
12.1.1
-
View: OKC_K_ARTICLES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_HV, object_name:OKC_K_ARTICLES_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_ARTICLES. , implementation_dba_data: APPS.OKC_K_ARTICLES_HV ,
-
VIEW: APPS.OKC_ART_STANDARDS_V
12.1.1
-
VIEW: APPS.OKC_ART_STANDARDS_V
12.2.2
-
VIEW: APPS.OKL_K_ARTICLES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_ARTICLES_UV, object_name:OKL_K_ARTICLES_UV, status:VALID,
-
VIEW: APPS.OKL_K_ARTICLES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_ARTICLES_UV, object_name:OKL_K_ARTICLES_UV, status:VALID,
-
VIEW: APPS.OKC_TERMS_LOCAL_VAR_V
12.1.1
-
VIEW: APPS.OKC_K_ARTICLES_HV
12.2.2
-
APPS.OKE_CONTRACT_PRINTING_PKG SQL Statements
12.2.2
-
APPS.OKE_CONTRACT_PRINTING_PKG SQL Statements
12.1.1
-
VIEW: APPS.OKC_K_ARTICLES_HV
12.1.1
-
VIEW: APPS.OKC_K_ARTICLES_V
12.2.2
-
VIEW: APPS.OKC_K_ARTICLES_V
12.1.1
-
VIEW: OKC.OKC_K_ARTICLES_B#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_K_ARTICLES_B#, status:VALID,
-
APPS.OKL_VP_CAT_PVT SQL Statements
12.2.2