Search Results cat_type
Overview
APPS.OKL_K_ARTICLES_UV is a reporting and integration view within the Oracle E-Business Suite ETRM (Enterprise Tracking and Reporting Management) module, used primarily in the context of Oracle Contracts (OKC) and lease/fulfillment management. It consolidates contract article records from the OKC_K_ARTICLES_V and OKC_STD_ARTICLES_V views, presenting a unified projection of articles associated with contracts, standard articles, and related clauses. The "UV" suffix denotes a user view, indicating it is intended for query and reporting consumption rather than direct DML maintenance.
The view plays a specific filtering role: it restricts the underlying article data to two distinct CAT_TYPE values — 'NSD' (structured/narrative standard document articles retrieved directly from OKC_K_ARTICLES_V) and 'STA' (standard articles retrieved by joining OKC_K_ARTICLES_V to OKC_STD_ARTICLES_V on SAV_SAE_ID = ID). This union-based construction is the defining characteristic of the view and explains its relevance to the search term "cat_type," since the article category type is the principal discriminator governing which source row contributes to each output row.
Underlying Base Objects
The documented base objects referenced by OKL_K_ARTICLES_UV are:
- OKC_K_ARTICLES_V (VIEW) — supplies the
'NSD'branch as a standalone selection and serves as the driving source for the'STA'branch. - OKC_STD_ARTICLES_V (VIEW) — joined in the
'STA'branch viaCAT.SAV_SAE_ID = SAE.ID, contributing theNAMEattribute from the standard article definition. - MO_GLOBAL (PACKAGE) — the Multi-Org / operating unit access control package that enforces organizational security at runtime, ensuring that only articles belonging to accessible operating units are exposed.
The relation across branches is a UNION (not UNION ALL), meaning duplicate rows across the two selections are eliminated. Both branches project an identical column list, ensuring structural consistency for downstream consumers.
Key Columns
- ID — Primary identifier of the article record.
- CHR_ID — Contract header identifier; links the article to its parent contract.
- CLE_ID — Contract line/clause element identifier.
- CAT_ID — Article identifier within the category context.
- CAT_TYPE — The category type discriminator; restricted to
'NSD'and'STA'in this view. - NAME — Article name; for
'STA'rows this is sourced from OKC_STD_ARTICLES_V. - SFWT_FLAG — Software flag indicator associated with the article.
- SAV_SAE_ID / SAV_SAV_RELEASE — Standard article version and release references.
- SBT_CODE — Sub-type or source code attribute.
- DNZ_CHR_ID — Denormalized contract header reference used for performance.
- COMMENTS, FULLTEXT_YN, VARIATION_DESCRIPTION — Descriptive and full-text attributes.
- OBJECT_VERSION_NUMBER — Optimistic locking version token.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical usage includes reporting on contract articles by category type, extracting standard article content for document generation, and reconciling clause/article structures across contracts.
- List all standard-type articles for a contract:
SELECT ID, NAME, CAT_TYPE FROM APPS.OKL_K_ARTICLES_UV WHERE CAT_TYPE = 'STA' AND CHR_ID = :contract_id;
- Count articles grouped by category type:
SELECT CAT_TYPE, COUNT(*) FROM APPS.OKL_K_ARTICLES_UV GROUP BY CAT_TYPE;
- Retrieve narrative/structured document articles:
SELECT ID, CHR_ID, NAME, VARIATION_DESCRIPTION FROM APPS.OKL_K_ARTICLES_UV WHERE CAT_TYPE = 'NSD';
Because MO_GLOBAL enforces multi-org filtering, callers should initialize the operating unit context (e.g., via MO_GLOBAL.SET_POLICY_CONTEXT) before querying, particularly in concurrent programs and reports, to ensure correct row visibility under Oracle EBS 12.1.1 and 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_BH#
12.2.2
-
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_K_ARTICLES_UV
12.2.2
-
View: OKC_KOL_K_ARTICLES_V
12.1.1
product: OKC - Contracts Core , 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,
-
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: OKC_KOL_K_ARTICLES_V
12.2.2
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
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: 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 ,
-
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 ,
-
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.OKE_K_ARTICLES_PRINT_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_PRINT_V, status:VALID,
-
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: 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: APPS.OKE_K_ARTICLES_PRINT_HV
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_PRINT_HV, 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: APPS.OKC_K_ARTICLES_HV
12.2.2
-
VIEW: APPS.OKC_K_ARTICLES_HV
12.1.1
-
VIEW: APPS.OKC_K_ARTICLES_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: OKC.OKC_K_ARTICLES_B#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_K_ARTICLES_B#, status:VALID,
-
APPS.OKE_CONTRACT_PRINTING_PKG SQL Statements
12.2.2
-
APPS.OKE_CONTRACT_PRINTING_PKG SQL Statements
12.1.1
-
APPS.OKL_VP_CAT_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKC_K_ARTICLES_V
12.1.1
-
VIEW: OKC.OKC_K_ARTICLES_BH#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_K_ARTICLES_BH#, status:VALID,
-
APPS.OKL_VP_CAT_PVT SQL Statements
12.1.1
-
View: OKC_TERMS_ARTICLES_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_TERMS_ARTICLES_HV, object_name:OKC_TERMS_ARTICLES_HV, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_TERMS_ARTICLES_HV ,
-
View: OKC_TERMS_ARTICLES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_TERMS_ARTICLES_HV, object_name:OKC_TERMS_ARTICLES_HV, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_TERMS_ARTICLES_HV ,
-
View: OKC_TERMS_ARTICLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_TERMS_ARTICLES_V, object_name:OKC_TERMS_ARTICLES_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_TERMS_ARTICLES_V ,
-
VIEW: APPS.OKE_K_ARTICLES_HV
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_HV, status:VALID,
-
VIEW: APPS.OKE_K_ARTICLES_HV
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_HV, status:VALID,
-
View: OKC_TERMS_ARTICLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_TERMS_ARTICLES_V, object_name:OKC_TERMS_ARTICLES_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_TERMS_ARTICLES_V ,
-
VIEW: APPS.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,
-
APPS.OKL_ARTICLE_PUB SQL Statements
12.1.1
-
VIEW: APPS.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,
-
APPS.OKC_CAT_PVT SQL Statements
12.1.1
-
VIEW: APPS.OKE_K_ARTICLES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_V, status:VALID,
-
APPS.OKL_ARTICLE_PUB SQL Statements
12.2.2
-
VIEW: APPS.OKE_K_ARTICLES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKE_K_ARTICLES_V, status:VALID,
-
APPS.OKC_CAT_PVT SQL Statements
12.2.2
-
View: OKR_K_ARTICLES_CV
12.1.1
product: OKR - Contracts for Rights (Obsolete) , description: View for okr_k_articles_v, okc_std_art_versions_v, okc_std_articles_v, fnd_lookups , implementation_dba_data: Not implemented in this database ,
-
View: OKR_K_ARTICLES_HCV
12.1.1
product: OKR - Contracts for Rights (Obsolete) , description: View for okr_k_articles_v, okc_std_art_versions_v, okc_std_articles_v, fnd_lookups , implementation_dba_data: Not implemented in this database ,
-
View: OKR_K_ARTICLES_HCV
12.2.2
product: OKR - Contracts for Rights (Obsolete) , description: View for okr_k_articles_v, okc_std_art_versions_v, okc_std_articles_v, fnd_lookups , implementation_dba_data: Not implemented in this database ,
-
View: OKR_K_ARTICLES_CV
12.2.2
product: OKR - Contracts for Rights (Obsolete) , description: View for okr_k_articles_v, okc_std_art_versions_v, okc_std_articles_v, fnd_lookups , implementation_dba_data: Not implemented in this database ,