I_InternalOrderOverheadCodeVH
Overhead code
I_InternalOrderOverheadCodeVH is a Composite CDS View that provides data about "Overhead code" in SAP S/4HANA. It reads from 1 data source (tkzsl) and exposes 2 fields with key field OverheadCode. It has 1 association to related views. Part of development package ODATA_INTERNAL_ORDERS_V2.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tkzsl | tkzsl | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | tkzslt | _Text | tkzsl.zschl = _Text.zschl and _Text.spras = $session.system_language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Overhead code | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #COMPOSITE | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl: {
personalData.blocking: #NOT_REQUIRED,
authorizationCheck: #NOT_REQUIRED
}
@EndUserText.label: 'Overhead code'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
dataCategory: #VALUE_HELP,
semanticKey: [ 'OverheadCode' ],
usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
@VDM: {
viewType: #COMPOSITE
}
@Search.searchable: true
@Consumption.ranked: true
define view entity I_InternalOrderOverheadCodeVH
as select from tkzsl
association [0..1] to tkzslt as _Text on tkzsl.zschl = _Text.zschl
and _Text.spras = $session.system_language
{
@ObjectModel.text.element: [ 'OverheadCodeName' ]
@UI: {
textArrangement: #TEXT_LAST,
lineItem: [{ position: 1 }]
}
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key tkzsl.zschl as OverheadCode,
@UI: {
lineItem: [{ position: 5 }]
}
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
_Text.ztext as OverheadCodeName
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA