I_FixedPeggingText

DDL: I_FIXEDPEGGINGTEXT SQL: IFIXEDPEGGINGTXT Type: view BASIC

Fixed Pegging text view

I_FixedPeggingText is a Basic CDS View that provides data about "Fixed Pegging text view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields FixedPegging, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIXEDPEGGINGTXT 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 FixedPegging view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Fixed Pegging text view view
Search.searchable true view

Fields (3)

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

//  key cast(cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as /sapapo/dm_fixpeg_prod_setting) as FixedPegging,

  key cast( cast( domvalue_l as abap.char( 1 ) ) as /sapapo/dm_fixpeg_prod_setting) as FixedPegging,
      @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 FixedPeggingDesc

      cast ( ddtext as val_text preserving type  )                                                   as FixedPeggingDesc
}
where
   domname = '/SAPAPO/DM_FIXPEG_PROD_SETTING'