I_SelfBillingValueItemText

DDL: I_SELFBILLINGVALUEITEMTEXT Type: view BASIC

Self Billing Value Item Text

I_SelfBillingValueItemText is a Basic CDS View that provides data about "Self Billing Value Item Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SelfBillingValueItem, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SelfBillingValueItem view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Self Billing Value Item Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDBILLVALITEMT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SelfBillingValueItem
KEY Language ddlanguage
SelfBillingValueItemDesc ddtext
_SelfBillingValueItem _SelfBillingValueItem
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SelfBillingValueItem'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Self Billing Value Item Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog: {
  sqlViewName: 'ISDBILLVALITEMT',
  preserveKey: true
}
@AbapCatalog.compiler.compareFilter: true

define view I_SelfBillingValueItemText
 as select from dd07t

association[0..1] to I_SelfBillingValueItem as _SelfBillingValueItem on $projection.SelfBillingValueItem = _SelfBillingValueItem.SelfBillingValueItem
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_SelfBillingValueItem'
    key cast(SUBSTRING(domvalue_l, 1, 1) as vaugv preserving type) as SelfBillingValueItem,

    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language'
    key ddlanguage as Language,

    @Semantics.text: true
    ddtext as SelfBillingValueItemDesc,
    
    //Associations

    _SelfBillingValueItem,
    _Language
}
where (dd07t.domname = 'VAUGV') and (dd07t.as4local = 'A');   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SELFBILLINGVALUEITEM"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/