I_SecurityClassAssetPoolRating

DDL: I_SECURITYCLASSASSETPOOLRATING Type: view_entity BASIC Package: FTR_SECURITIES_CORE

Security Class Asset Pool Rating

I_SecurityClassAssetPoolRating is a Basic CDS View that provides data about "Security Class Asset Pool Rating" in SAP S/4HANA. It reads from 1 data source (rtgt_asset_pool) and exposes 8 fields with key fields SecurityClassAssetPool, SecurityClassAstPoolRatgProced, ScrtyClAstPoolRatgValdFrmDte. Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
rtgt_asset_pool AssetPoolRating from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Security Class Asset Pool Rating 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 (8)

KeyFieldSource TableSource FieldDescription
KEY SecurityClassAssetPool rtgt_asset_pool pool_id
KEY SecurityClassAstPoolRatgProced
KEY ScrtyClAstPoolRatgValdFrmDte
SecurityClassAssetPoolRating
SecurityClassAstPoolRatgTrnd
ScrtyClAstPoolRatgValdToDte
ScrtyClAstPoolRatgEnteredOnDte
SecurityClassAstPoolRatingsTxt
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Security Class Asset Pool Rating'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #M,
  dataClass: #MASTER
}
@VDM.viewType: #BASIC

define view entity I_SecurityClassAssetPoolRating

  as select from rtgt_asset_pool as AssetPoolRating
{
  key AssetPoolRating.pool_id                                                          as SecurityClassAssetPool,
  key cast(AssetPoolRating.grade_method as ftr_sc_ap_rating_procedure preserving type) as SecurityClassAstPoolRatgProced,
  key cast(AssetPoolRating.valid_from as ftr_sc_ap_rating_valid_from preserving type)  as ScrtyClAstPoolRatgValdFrmDte,
      cast(AssetPoolRating.grade as ftr_sc_ap_rating preserving type)                  as SecurityClassAssetPoolRating,
      cast(AssetPoolRating.tendency as ftr_sc_ap_rating_trend preserving type)         as SecurityClassAstPoolRatgTrnd,
      cast(AssetPoolRating.valid_to as ftr_sc_ap_rating_valid_to preserving type)      as ScrtyClAstPoolRatgValdToDte,
      cast(AssetPoolRating.entered_on as ftr_sc_ap_rating_entered_on preserving type)  as ScrtyClAstPoolRatgEnteredOnDte,
      cast(AssetPoolRating.text as ftr_sc_ap_ratings_text preserving type)             as SecurityClassAstPoolRatingsTxt
}