R_SecuritySwapTP
Security Swap
R_SecuritySwapTP is a Transactional CDS View that provides data about "Security Swap" in SAP S/4HANA. It reads from 1 data source (I_SecuritySwap) and exposes 11 fields with key fields ScrtyClSwapOldSecurityClass, ScrtyClSwapNewSecurityClass. It has 1 association to related views. Part of development package RAP_FIN_TRM_SEC_SC.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SecuritySwap | I_SecuritySwap | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SecurityClass | _NewSecurityClass | $projection.ScrtyClSwapNewSecurityClass = _NewSecurityClass.SecurityClass |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Security Swap | 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ScrtyClSwapOldSecurityClass | ScrtyClSwapOldSecurityClass | ||
| KEY | ScrtyClSwapNewSecurityClass | ScrtyClSwapNewSecurityClass | ||
| ScrtyClSwapRatioNumerator | ScrtyClSwapRatioNumerator | |||
| ScrtyClSwapRatioDenominator | ScrtyClSwapRatioDenominator | |||
| SecurityClassSwapPayInAmount | SecurityClassSwapPayInAmount | |||
| ScrtyClSwapPayInAmountCurrency | ScrtyClSwapPayInAmountCurrency | |||
| ScrtyClSwapEffectiveFromDate | ScrtyClSwapEffectiveFromDate | |||
| ScrtyClSwapEffectiveToDate | ScrtyClSwapEffectiveToDate | |||
| SecurityClassSwapDescription | SecurityClassSwapDescription | |||
| _SecurityClass | _SecurityClass | |||
| _NewSecurityClass | _NewSecurityClass |
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Security Swap'
@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_SecuritySwapTP
as select from I_SecuritySwap
association to parent R_SecurityClassTP as _SecurityClass on $projection.ScrtyClSwapOldSecurityClass = _SecurityClass.SecurityClass
association [0..1] to I_SecurityClass as _NewSecurityClass on $projection.ScrtyClSwapNewSecurityClass = _NewSecurityClass.SecurityClass
{
key ScrtyClSwapOldSecurityClass,
key ScrtyClSwapNewSecurityClass,
ScrtyClSwapRatioNumerator,
ScrtyClSwapRatioDenominator,
@Semantics.amount.currencyCode: 'ScrtyClSwapPayInAmountCurrency'
SecurityClassSwapPayInAmount,
ScrtyClSwapPayInAmountCurrency,
ScrtyClSwapEffectiveFromDate,
ScrtyClSwapEffectiveToDate,
SecurityClassSwapDescription,
_SecurityClass,
_NewSecurityClass
}
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