R_SecurityClassExchangeTP

DDL: R_SECURITYCLASSEXCHANGETP Type: view_entity TRANSACTIONAL Package: RAP_FIN_TRM_SEC_SC

Security Class Exchange

R_SecurityClassExchangeTP is a Transactional CDS View that provides data about "Security Class Exchange" in SAP S/4HANA. It reads from 1 data source (I_SecurityClassExchange) and exposes 11 fields with key fields SecurityClass, SecurityExchange. It has 2 associations to related views. Part of development package RAP_FIN_TRM_SEC_SC.

Data Sources (1)

SourceAliasJoin Type
I_SecurityClassExchange I_SecurityClassExchange from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SecurityExchange _SecurityExchange $projection.SecurityExchange = _SecurityExchange.SecurityExchange
[0..1] I_SecurityClassListingType _SecurityClassListingType $projection.SecurityClassListingType = _SecurityClassListingType.SecurityClassListingType

Annotations (8)

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 #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass SecurityClass
KEY SecurityExchange SecurityExchange
ScrtyClExchangePriceCurrency ScrtyClExchangePriceCurrency
ScrtyClExchangePriceIsFlat ScrtyClExchangePriceIsFlat
ScrtyClExchangeIsHomeExchange ScrtyClExchangeIsHomeExchange
SecurityClassListingType SecurityClassListingType
ScrtyClExchPriceDeviationInPct ScrtyClExchPriceDeviationInPct
ScrtyClExchPriceDeviationValue ScrtyClExchPriceDeviationValue
_SecurityClass _SecurityClass
_SecurityExchange _SecurityExchange
_SecurityClassListingType _SecurityClassListingType
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Security Class Exchange'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #M,
  dataClass: #MASTER
}
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
define view entity R_SecurityClassExchangeTP
  as select from I_SecurityClassExchange
  association to parent R_SecurityClassTP as _SecurityClass on $projection.SecurityClass = _SecurityClass.SecurityClass
  association [0..1] to I_SecurityExchange as _SecurityExchange on $projection.SecurityExchange = _SecurityExchange.SecurityExchange
  association [0..1] to I_SecurityClassListingType as _SecurityClassListingType on $projection.SecurityClassListingType = _SecurityClassListingType.SecurityClassListingType
{
  key SecurityClass,
  key SecurityExchange,
      ScrtyClExchangePriceCurrency,
      @Semantics.booleanIndicator
      ScrtyClExchangePriceIsFlat,
      @Semantics.booleanIndicator
      ScrtyClExchangeIsHomeExchange,
      SecurityClassListingType,
      ScrtyClExchPriceDeviationInPct,
      ScrtyClExchPriceDeviationValue,

      _SecurityClass,
      //VH

      _SecurityExchange,
      _SecurityClassListingType
}