I_SecurityClassExchange
Security Class Exchange
I_SecurityClassExchange is a Basic CDS View that provides data about "Security Class Exchange" in SAP S/4HANA. It reads from 1 data source (vwpbono) and exposes 9 fields with key fields SecurityClass, SecurityExchange. It has 1 association to related views. Part of development package FTR_SECURITIES_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vwpbono | Exchange | 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 Exchange | 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 (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SecurityClass | vwpbono | ranl | |
| KEY | SecurityExchange | vwpbono | rhandpl | |
| ScrtyClExchangePriceCurrency | vwpbono | waers | ||
| ScrtyClExchangePriceIsFlat | ||||
| ScrtyClExchangeIsHomeExchange | ||||
| SecurityClassListingType | vwpbono | sboen | ||
| ScrtyClExchPriceDeviationInPct | ||||
| ScrtyClExchPriceDeviationValue | ||||
| _SecurityClass | _SecurityClass |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Security Class Exchange'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_SecurityClassExchange
as select from vwpbono as Exchange
association [1..1] to I_SecurityClass as _SecurityClass on $projection.SecurityClass = _SecurityClass.SecurityClass
{
key Exchange.ranl as SecurityClass,
key Exchange.rhandpl as SecurityExchange,
Exchange.waers as ScrtyClExchangePriceCurrency,
@Semantics.booleanIndicator
cast( Exchange.flat as ftr_sc_exchange_price_flat_ind preserving type ) as ScrtyClExchangePriceIsFlat,
@Semantics.booleanIndicator
cast( Exchange.heiboe as ftr_sc_home_exchange_ind preserving type ) as ScrtyClExchangeIsHomeExchange,
Exchange.sboen as SecurityClassListingType,
cast( Exchange.pkuab as ftr_sc_exchange_price_dvtn_pct preserving type ) as ScrtyClExchPriceDeviationInPct,
// @Semantics.amount.currencyCode: 'ScrtyClExchangePriceCurrency'
cast( Exchange.bkuab as ftr_sc_exchange_price preserving type ) as ScrtyClExchPriceDeviationValue,
_SecurityClass
}
where
Exchange.rantyp = '2'
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