I_InternalOrderOverheadCodeVH

DDL: I_INTERNALORDEROVERHEADCODEVH Type: view_entity COMPOSITE Package: ODATA_INTERNAL_ORDERS_V2

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)

SourceAliasJoin Type
tkzsl tkzsl from

Associations (1)

CardinalityTargetAliasCondition
[0..1] tkzslt _Text tkzsl.zschl = _Text.zschl and _Text.spras = $session.system_language

Annotations (11)

NameValueLevelField
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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OverheadCode tkzsl zschl
OverheadCodeName _Text ztext
@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

}