I_TimeStreamText

DDL: I_TIMESTREAMTEXT SQL: ITIMESTREAMTXT Type: view BASIC Package: VDM_MD_PRODUCT-SCM

Time Stream text view

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ITIMESTREAMTXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey CalendarTimeFrame view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Time Stream text view view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CalendarTimeFrame domvalue_l
KEY Language
CalendarTimeFrameDesc
@AbapCatalog.sqlViewName: 'ITIMESTREAMTXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'CalendarTimeFrame'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Time Stream text view'
define view I_TimeStreamText
  as select from dd07t
{

  key domvalue_l                  as CalendarTimeFrame,
      @Semantics.language:true
  key cast( ddlanguage as spras ) as Language,
      @Semantics.text: true
//      cast ( substring ( ddtext, 1, 60 ) as val_text ) as CalendarTimeFrameDesc

      cast( ddtext as val_text )  as CalendarTimeFrameDesc
}
where
  domname = 'TSTRTYPE'