I_SubscriptionBillingCycleText

DDL: I_SUBSCRIPTIONBILLINGCYCLETEXT Type: view_entity BASIC Package: CRMS4_REPORT

Subscription Billing Cycle - Text

I_SubscriptionBillingCycleText is a Basic CDS View that provides data about "Subscription Billing Cycle - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields SubscriptionBillingCycle, Language. It has 2 associations to related views. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_SubscriptionBillingCycle _SubscriptionBillingCycle $projection.SubscriptionBillingCycle = _SubscriptionBillingCycle.SubscriptionBillingCycle
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Subscription Billing Cycle - Text view
Analytics.technicalName ISubsBillgCycTxt view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SubscriptionBillingCycle view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SubscriptionBillingCycle
KEY Language ddlanguage
SubscriptionBillingCycleText ddtext
DomainValue domvalue_l
_SubscriptionBillingCycle _SubscriptionBillingCycle
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Subscription Billing Cycle - Text'
@Analytics.technicalName:'ISubsBillgCycTxt'
@VDM.viewType: #BASIC

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SubscriptionBillingCycle'
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY ]
@Metadata.ignorePropagatedAnnotations: true

@Search.searchable: true
@Consumption.ranked: true

define view entity I_SubscriptionBillingCycleText
  as select from dd07t
  association [1..1] to I_SubscriptionBillingCycle as _SubscriptionBillingCycle on $projection.SubscriptionBillingCycle = _SubscriptionBillingCycle.SubscriptionBillingCycle
  association [1..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_SubscriptionBillingCycle'
  key cast(domvalue_l as crms4_subscrpn_billg_cycle) as SubscriptionBillingCycle,

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

      @Semantics.text: true
      ddtext                                         as SubscriptionBillingCycleText,

//      @Analytics.hidden: true

      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      domvalue_l                                  as DomainValue,
      
      _SubscriptionBillingCycle,
      _Language
}
where
      domname  = 'CRMS4_SUBSCRPN_BILLG_CYCLE'
  and as4local = 'A';