I_SECURITYCLASSPAYINPRICERATE
Security Class Pay In Price Rate
I_SECURITYCLASSPAYINPRICERATE is a CDS View in S/4HANA. Security Class Pay In Price Rate. It contains 1 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_MaxStkCndnEffctvFromDate | view_entity | from | COMPOSITE | Max Stock Condition Effective From Date |
| R_SecurityClPayInPriceRateTP | view_entity | from | TRANSACTIONAL | Security Class Pay-In Price Rate |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | SecurityClass | SecurityClass | 1 |
@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