I_RetroBillingUsageText

DDL: I_RETROBILLINGUSAGETEXT Type: view BASIC Package: VDM_SD_BF_GF

Retro Billing Usage Description

I_RetroBillingUsageText is a Basic CDS View that provides data about "Retro Billing Usage Description" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields RetroBillingUsage, Language. Part of development package VDM_SD_BF_GF.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RetroBillingUsage view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Retro Billing Usage Description view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDRETBLLUSAGET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RetroBillingUsage
KEY Language ddlanguage
RetroBillingUsageDesc ddtext
_RetroBillingUsage _RetroBillingUsage
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RetroBillingUsage'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Retro Billing Usage Description'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog: {
  sqlViewName: 'ISDRETBLLUSAGET',
  preserveKey: true
}
@AbapCatalog.compiler.compareFilter: true

define view I_RetroBillingUsageText 
as select from dd07t

association[0..1] to I_RetroBillingUsage as _RetroBillingUsage on $projection.RetroBillingUsage = _RetroBillingUsage.RetroBillingUsage
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_RetroBillingUsage'
    key cast(SUBSTRING(domvalue_l, 1, 1) as vauna preserving type) as RetroBillingUsage,

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

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

    _RetroBillingUsage,
    _Language
}
where (dd07t.domname = 'VAUNA') and (dd07t.as4local = 'A');