I_SecurityClassAssetPool
Security Class Asset Pool
I_SecurityClassAssetPool is a Basic CDS View that provides data about "Security Class Asset Pool" in SAP S/4HANA. It reads from 1 data source (vwppooldata) and exposes 7 fields with key field SecurityClassAssetPool. It has 2 associations to related views. Part of development package FTR_SECURITIES_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vwppooldata | AssetPool | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SecurityClassAssetPoolRating | _SecurityClassAssetPoolRating | $projection.SecurityClassAssetPool = _SecurityClassAssetPoolRating.SecurityClassAssetPool |
| [0..*] | I_ScrtyClAssetPoolComment | _ScrtyClAssetPoolComment | $projection.SecurityClassAssetPool = _ScrtyClAssetPoolComment.SecurityClassAssetPool |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Security Class Asset Pool | 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 | SecurityClassAssetPool | vwppooldata | pool_id | |
| SecurityClassAstPoolClassfctn | vwppooldata | classification | ||
| SecurityClassAstPoolNomAmt | ||||
| SecurityClassAstPoolNomAmtCrcy | ||||
| ScrtyClAstPoolRinvmtPerdDte | ||||
| _SecurityClassAssetPoolRating | _SecurityClassAssetPoolRating | |||
| _ScrtyClAssetPoolComment | _ScrtyClAssetPoolComment |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Security Class Asset Pool'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_SecurityClassAssetPool
as select from vwppooldata as AssetPool
association [0..*] to I_SecurityClassAssetPoolRating as _SecurityClassAssetPoolRating on $projection.SecurityClassAssetPool = _SecurityClassAssetPoolRating.SecurityClassAssetPool
association [0..*] to I_ScrtyClAssetPoolComment as _ScrtyClAssetPoolComment on $projection.SecurityClassAssetPool = _ScrtyClAssetPoolComment.SecurityClassAssetPool
{
key AssetPool.pool_id as SecurityClassAssetPool,
AssetPool.classification as SecurityClassAstPoolClassfctn,
@Semantics.amount.currencyCode: 'SecurityClassAstPoolNomAmtCrcy'
cast(AssetPool.total_volume as ftr_sc_ap_nominal_amount preserving type) as SecurityClassAstPoolNomAmt,
cast(AssetPool.total_volume_cur as ftr_sc_ap_nominal_amt_currency preserving type) as SecurityClassAstPoolNomAmtCrcy,
cast(AssetPool.reinv_period as ftr_sc_ap_reinvestment_period preserving type) as ScrtyClAstPoolRinvmtPerdDte,
_SecurityClassAssetPoolRating,
_ScrtyClAssetPoolComment
}
where
AssetPool.pool_id 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