I_SecurityClassPayInPriceRate
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)
| Source | Alias | Join Type |
|---|---|---|
| I_StkSubscrpnRghtInvmtCertCndn | StkSubscrpnRghtInvmtCertCndn | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_SecurityClass | _SecurityClass | $projection.SecurityClass = _SecurityClass.SecurityClass |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA