I_PriceTranslationSourceName

DDL: I_PRICETRANSLATIONSOURCENAME SQL: IPRICESOURCET Type: view BASIC

Price Translation Source Name

I_PriceTranslationSourceName is a Basic CDS View that provides data about "Price Translation Source Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PriceTranslationSource. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PriceTranslationSource _PriceTranslationSource $projection.PriceTranslationSource = _PriceTranslationSource.PriceTranslationSource
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
EndUserText.label Price Translation Source Name view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPRICESOURCET view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey PriceTranslationSource view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY PriceTranslationSource
PriceTranslationSourceName
_PriceTranslationSource _PriceTranslationSource
_Language _Language
@EndUserText.label: 'Price Translation Source Name'
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPRICESOURCET'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'PriceTranslationSource'
define view I_PriceTranslationSourceName
  as select from dd07t
  association [0..1] to I_PriceTranslationSource as _PriceTranslationSource on $projection.PriceTranslationSource = _PriceTranslationSource.PriceTranslationSource
  association [0..1] to I_Language               as _Language               on $projection.Language = _Language.Language
{
      @Semantics.language
  key cast( ddlanguage as spras )                                                                   as Language,
      @ObjectModel.foreignKey.association: '_PriceTranslationSource'
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.numc( 1 ) ) as fml_price_trans_src_name ) as PriceTranslationSource,
      @Semantics.text
      cast ( substring ( ddtext, 1, 50 ) as fml_price_trans_src_name )                              as PriceTranslationSourceName, //Cut to right length and cast to proper data element

      _PriceTranslationSource,
      _Language
}
where
      domname  = 'FML_PRICE_TRANS_SRC_NAME'
  and as4local = 'A'