P_TrsySecuritiesClRatgDfltSttg

DDL: P_TRSYSECURITIESCLRATGDFLTSTTG SQL: PTRSYRTGFUNCSTTG Type: view COMPOSITE Package: FTR_SECURITIES_CORE

Default setting for Securites Class Rating Function

P_TrsySecuritiesClRatgDfltSttg is a Composite CDS View that provides data about "Default setting for Securites Class Rating Function" in SAP S/4HANA. It reads from 1 data source (I_CalendarDate) and exposes 1 field. Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
I_CalendarDate DummyData from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PTRSYRTGFUNCSTTG view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (1)

KeyFieldSource TableSource FieldDescription
CalendarDate I_CalendarDate CalendarDate
@AbapCatalog.sqlViewName: 'PTRSYRTGFUNCSTTG'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.preserveKey:true 
@VDM.viewType: #COMPOSITE
@VDM.private:true
define view P_TrsySecuritiesClRatgDfltSttg 
  as select from I_CalendarDate as DummyData 
  left outer to one join I_TreasuryRatingGeneralSetting as Setting on DummyData.CalendarDate = '20210830'
{
  DummyData.CalendarDate,
  
  case when Setting.TreasuryRatingGeneralSetting = '' or Setting.TreasuryRatingGeneralSetting is null then
    ''
  else
    Setting.TreasuryRatingGeneralSetting end as TreasuryRatingGeneralSetting
}
where
  DummyData.CalendarDate = '20210830'