I_PeggingStrategyText

DDL: I_PEGGINGSTRATEGYTEXT SQL: IPEGGINGSTRGYTXT Type: view BASIC Package: VDM_MD_PRODUCT-SCM

Pegging Strategy text view

I_PeggingStrategyText is a Basic CDS View that provides data about "Pegging Strategy text view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields PeggingStrategy, Language. Part of development package VDM_MD_PRODUCT-SCM.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPEGGINGSTRGYTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PeggingStrategy view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Pegging Strategy text view view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PeggingStrategy
KEY Language
PeggingStrategyDesc
@AbapCatalog.sqlViewName: 'IPEGGINGSTRGYTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'PeggingStrategy'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Pegging Strategy text view'
@Search.searchable: true
define view I_PeggingStrategyText
  as select from dd07t
{

      //  key cast(cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as /sapapo/peg_strategy) as PeggingStrategy,

  key cast(cast ( domvalue_l as abap.char( 2 ) ) as /sapapo/peg_strategy) as PeggingStrategy,
      @Semantics.language:true
  key cast( ddlanguage as spras )                                         as Language,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      
      //      cast ( substring ( ddtext, 1, 60 ) as val_text )                                       as PeggingStrategyDesc

      cast ( ddtext as val_text preserving type  )                                         as PeggingStrategyDesc
}
where
  domname = '/SAPAPO/PEG_STRATEGY'