I_SecurityClassExchange

DDL: I_SECURITYCLASSEXCHANGE Type: view_entity BASIC Package: FTR_SECURITIES_CORE

Security Class Exchange

I_SecurityClassExchange is a Basic CDS View that provides data about "Security Class Exchange" in SAP S/4HANA. It reads from 1 data source (vwpbono) and exposes 9 fields with key fields SecurityClass, SecurityExchange. It has 1 association to related views. Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
vwpbono Exchange from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SecurityClass _SecurityClass $projection.SecurityClass = _SecurityClass.SecurityClass

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Security Class Exchange view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass vwpbono ranl
KEY SecurityExchange vwpbono rhandpl
ScrtyClExchangePriceCurrency vwpbono waers
ScrtyClExchangePriceIsFlat
ScrtyClExchangeIsHomeExchange
SecurityClassListingType vwpbono sboen
ScrtyClExchPriceDeviationInPct
ScrtyClExchPriceDeviationValue
_SecurityClass _SecurityClass
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Security Class Exchange'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #M,
  dataClass: #MASTER
}
@VDM.viewType: #BASIC

define view entity I_SecurityClassExchange

  as select from vwpbono as Exchange

  association [1..1] to I_SecurityClass as _SecurityClass on $projection.SecurityClass = _SecurityClass.SecurityClass

{
  key Exchange.ranl                                                            as SecurityClass,
  key Exchange.rhandpl                                                         as SecurityExchange,
      Exchange.waers                                                           as ScrtyClExchangePriceCurrency,
      @Semantics.booleanIndicator
      cast( Exchange.flat as ftr_sc_exchange_price_flat_ind preserving type )  as ScrtyClExchangePriceIsFlat,
      @Semantics.booleanIndicator
      cast( Exchange.heiboe as ftr_sc_home_exchange_ind preserving type )      as ScrtyClExchangeIsHomeExchange,
      Exchange.sboen                                                           as SecurityClassListingType,
      cast( Exchange.pkuab as ftr_sc_exchange_price_dvtn_pct preserving type ) as ScrtyClExchPriceDeviationInPct,
      //      @Semantics.amount.currencyCode: 'ScrtyClExchangePriceCurrency'

      cast( Exchange.bkuab as ftr_sc_exchange_price preserving type )          as ScrtyClExchPriceDeviationValue,

      _SecurityClass
}
where
  Exchange.rantyp = '2'