I_ScrtyClAssetPoolComment

DDL: I_SCRTYCLASSETPOOLCOMMENT Type: view_entity BASIC Package: FTR_SECURITIES_CORE

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)

SourceAliasJoin Type
vwppoolremark AssetPoolComment from

Annotations (7)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}