I_SecurityPriceTypeText

DDL: I_SECURITYPRICETYPETEXT SQL: ISECPRITT Type: view BASIC Package: FTR_MDM_CORE

Market Data Security Price Type - Text

I_SecurityPriceTypeText is a Basic CDS View that provides data about "Market Data Security Price Type - Text" in SAP S/4HANA. It reads from 1 data source (tw56t) and exposes 5 fields with key fields PriceQuotationType, Language. It has 2 associations to related views. Part of development package FTR_MDM_CORE.

Data Sources (1)

SourceAliasJoin Type
tw56t tw56t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_SecurityPriceType _PriceQuotationType $projection.PriceQuotationType = _PriceQuotationType.PriceQuotationType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISECPRITT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PriceQuotationType view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Market Data Security Price Type - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PriceQuotationType
KEY Language tw56t spras
PriceQuotationTypeName tw56t xkurzbez
_PriceQuotationType _PriceQuotationType
_Language _Language
@AbapCatalog.sqlViewName: 'ISECPRITT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@ObjectModel.representativeKey: 'PriceQuotationType'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.compiler.compareFilter:true 
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Market Data Security Price Type - Text'
define view I_SecurityPriceTypeText   
   as select from tw56t
   association [0..1] to I_Language as _Language  on $projection.Language = _Language.Language
   association [1..1] to I_SecurityPriceType as _PriceQuotationType
        on $projection.PriceQuotationType = _PriceQuotationType.PriceQuotationType
{
   key cast ( tw56t.skursart as tba_pricetype) as PriceQuotationType,
   @Semantics.language: true
   key tw56t.spras as Language, //text views shall always be language dependent

   @Semantics.text: true
   tw56t.xkurzbez as PriceQuotationTypeName,
   _PriceQuotationType,
   _Language

}