I_BillingPriceSourceText

DDL: I_BILLINGPRICESOURCETEXT SQL: IBILLGPRICESRCET Type: view BASIC Package: VKON

Billing Price Source - Text

I_BillingPriceSourceText is a Basic CDS View that provides data about "Billing Price Source - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, BillingPriceSource. It has 2 associations to related views. Part of development package VKON.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BillingPriceSource _BillingPriceSource $projection.BillingPriceSource = _BillingPriceSource.BillingPriceSource
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IBILLGPRICESRCET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
EndUserText.label Billing Price Source - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.representativeKey BillingPriceSource view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY BillingPriceSource
BillingPriceSourceName
_BillingPriceSource _BillingPriceSource
_Language _Language
@AbapCatalog.sqlViewName: 'IBILLGPRICESRCET'
@AbapCatalog.preserveKey:true 
@AbapCatalog.compiler.compareFilter:true
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #META
@EndUserText.label: 'Billing Price Source - Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.representativeKey: 'BillingPriceSource'
@Metadata.ignorePropagatedAnnotations:true 
define view I_BillingPriceSourceText
  as select from dd07t
  association [0..1] to I_BillingPriceSource as _BillingPriceSource on $projection.BillingPriceSource = _BillingPriceSource.BillingPriceSource
  association [0..1] to I_Language           as _Language           on $projection.Language = _Language.Language
{
      @Semantics.language:true
  key cast( ddlanguage as spras )                       as Language,
      @ObjectModel.foreignKey.association: '_BillingPriceSource'
  key cast ( substring( domvalue_l, 1, 1 ) as prsqu1 )  as BillingPriceSource,
      @Semantics.text:true
      cast ( ddtext as price_element_price_srce_descr ) as BillingPriceSourceName,
      _BillingPriceSource,
      _Language
}
where
      domname  = 'PRSQU'
  and as4local = 'A'