P_TrsySecuritiesClRatgDfltSttg
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CalendarDate | DummyData | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
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