I_ScrtyClAssetPoolComment
Security Class Asset Pool Comment
I_ScrtyClAssetPoolComment is a Basic CDS View that provides data about "Security Class Asset Pool Comment" in SAP S/4HANA. It reads from 1 data source (vwppoolremark) and exposes 5 fields with key fields SecurityClassAssetPool, ScrtyClAstPoolCmntValdFrmDte. Part of development package FTR_SECURITIES_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vwppoolremark | AssetPoolComment | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Security Class Asset Pool Comment | 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 (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SecurityClassAssetPool | vwppoolremark | pool_id | |
| KEY | ScrtyClAstPoolCmntValdFrmDte | |||
| ScrtyClAstPoolFirstComment | ||||
| ScrtyClAstPoolSecondComment | ||||
| ScrtyClAstPoolThirdComment |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Security Class Asset Pool Comment'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_ScrtyClAssetPoolComment
as select from vwppoolremark as AssetPoolComment
{
key AssetPoolComment.pool_id as SecurityClassAssetPool,
key cast(AssetPoolComment.valid_from as ftr_sc_ap_comment_valid_from preserving type) as ScrtyClAstPoolCmntValdFrmDte,
cast(AssetPoolComment.remark1 as ftr_sc_ap_comment_1 preserving type) as ScrtyClAstPoolFirstComment,
cast(AssetPoolComment.remark2 as ftr_sc_ap_comment_2 preserving type) as ScrtyClAstPoolSecondComment,
cast(AssetPoolComment.remark3 as ftr_sc_ap_comment_3 preserving type) as ScrtyClAstPoolThirdComment
}
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