C_Expirationdatetexttemp

DDL: C_EXPIRATIONDATETEXTTEMP SQL: CEXPDATETEXT Type: view CONSUMPTION

Expiration date text

C_Expirationdatetexttemp is a Consumption CDS View that provides data about "Expiration date text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ExpirationDate, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CEXPDATETEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProdExprtnDateCodeText view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey ExpirationDate view
EndUserText.label Expiration date text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
domname
KEY ExpirationDate
KEY Language
Name
DomainText ddtext
@AbapCatalog.sqlViewName: 'CEXPDATETEXT'
@ObjectModel.dataCategory: #TEXT
//@Analytics: { datacategory: #TEXT }

@VDM:{
  viewType: #CONSUMPTION,
  lifecycle: {
    status: #DEPRECATED,
    successor: 'I_ProdExprtnDateCodeText'
  }
}
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'ExpirationDate'
@EndUserText.label: 'Expiration date text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
define view C_Expirationdatetexttemp
  as select from dd07t
{
       --key dd07t.domname,

  key  cast( domvalue_l as expirationdate)              as ExpirationDate,
       @Semantics.language:true
  key  cast( ddlanguage as spras preserving type  )     as Language,
       @Semantics.text: true
       cast ( ddtext as val_text_desc preserving type ) as Name,
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.7
       @Search.ranking: #HIGH
       @Consumption.hidden: true
       ddtext                                           as DomainText
}
where
      domname  = 'SLED_BBD'
  and as4local = 'A'
  and as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/