C_SLEDRundngRuleTextTemp

DDL: C_SLEDRUNDNGRULETEXTTEMP SQL: CSLEDTEXT Type: view CONSUMPTION

Rounding rule for SLED text

C_SLEDRundngRuleTextTemp is a Consumption CDS View that provides data about "Rounding rule for SLED text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ShelfLifeExprtnDateRndingRule, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CSLEDTEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ShelfLifeExprtnDteRndngRuTxt view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey ShelfLifeExprtnDateRndingRule view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Rounding rule for SLED text view

Fields (5)

KeyFieldSource TableSource FieldDescription
domname
KEY ShelfLifeExprtnDateRndingRule
KEY Language
Name
DomainText ddtext
@AbapCatalog.sqlViewName: 'CSLEDTEXT'
@ObjectModel.dataCategory: #TEXT
@VDM:{
  viewType: #CONSUMPTION,
  lifecycle: {
    status: #DEPRECATED,
    successor: 'I_ShelfLifeExprtnDteRndngRuTxt'
  }
}
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@Search.searchable: true
@ObjectModel.representativeKey: 'ShelfLifeExprtnDateRndingRule'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Rounding rule for SLED text'
define view C_SLEDRundngRuleTextTemp
  as select from dd07t
{
       --key dd07t.domname,

  key  cast( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as shelflifeexprtndaterndingrule) as ShelfLifeExprtnDateRndingRule,
       @Semantics.language:true
  key  cast( ddlanguage as spras )                                                                      as Language,
       @Semantics.text: true
       cast ( substring ( ddtext, 1, 60 ) as field_description preserving type )                        as Name,
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #HIGH
       @Consumption.hidden: true
       ddtext                                                                                           as DomainText
}
where
  domname = 'RDMHD'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/