I_SecurityClassPayInPriceRate

DDL: I_SECURITYCLASSPAYINPRICERATE Type: view_entity BASIC Package: FTR_SECURITIES_CORE

Security Class Pay In Price Rate

I_SecurityClassPayInPriceRate is a Basic CDS View that provides data about "Security Class Pay In Price Rate" in SAP S/4HANA. It reads from 1 data source (I_StkSubscrpnRghtInvmtCertCndn) and exposes 7 fields with key fields SecurityClass, StockPartlyPaytEffctvFromDate. It has 1 association to related views. Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
I_StkSubscrpnRghtInvmtCertCndn StkSubscrpnRghtInvmtCertCndn from

Associations (1)

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

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Security Class Pay In Price Rate 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 (7)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass I_StkSubscrpnRghtInvmtCertCndn SecurityClass
KEY StockPartlyPaytEffctvFromDate I_StkSubscrpnRghtInvmtCertCndn StockPartlyPaytEffctvFromDate
StockPartlyPayInRateInPercent I_StkSubscrpnRghtInvmtCertCndn StockPartlyPayInRateInPercent
StockPartlyPaymentAmount I_StkSubscrpnRghtInvmtCertCndn StockPartlyPaymentAmount
StockPartlyPaymentDate I_StkSubscrpnRghtInvmtCertCndn StockPartlyPaymentDate
IssueCurrency I_StkSubscrpnRghtInvmtCertCndn IssueCurrency
_SecurityClass _SecurityClass
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Security Class Pay In Price Rate'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #M,
  dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_SecurityClassPayInPriceRate
  as select from I_StkSubscrpnRghtInvmtCertCndn as StkSubscrpnRghtInvmtCertCndn

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

{
  key StkSubscrpnRghtInvmtCertCndn.SecurityClass,
  key StkSubscrpnRghtInvmtCertCndn.StockPartlyPaytEffctvFromDate,
      StkSubscrpnRghtInvmtCertCndn.StockPartlyPayInRateInPercent,
      @Semantics.amount.currencyCode: 'IssueCurrency'
      StkSubscrpnRghtInvmtCertCndn.StockPartlyPaymentAmount,
      StkSubscrpnRghtInvmtCertCndn.StockPartlyPaymentDate,
      StkSubscrpnRghtInvmtCertCndn.IssueCurrency,

      _SecurityClass
}
where
  ( StkSubscrpnRghtInvmtCertCndn.FinancialInstrProductCategory = '010'
    or StkSubscrpnRghtInvmtCertCndn.FinancialInstrProductCategory = '160' )
  and StkSubscrpnRghtInvmtCertCndn.StockPartlyPaytEffctvFromDate is not initial