I_CpdFinancialRiskText

DDL: I_CPDFINANCIALRISKTEXT Type: view BASIC

Get CPD Financial Risk Text Name

I_CpdFinancialRiskText is a Basic CDS View that provides data about "Get CPD Financial Risk Text Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields FinancialRisk, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Cpdfinancialrisk _FinancialRisk $projection.FinancialRisk = _FinancialRisk.FinancialRisk
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICPDFINRISKTEXT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Get CPD Financial Risk Text Name view
ObjectModel.representativeKey FinancialRisk view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #NOT_ALLOWED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FinancialRisk domvalue_l
KEY Language
FinancialRiskName ddtext
_FinancialRisk _FinancialRisk
_Language _Language
@AbapCatalog: {
    sqlViewName: 'ICPDFINRISKTEXT',
    compiler.compareFilter: true
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Get CPD Financial Risk Text Name'
@ObjectModel.representativeKey: 'FinancialRisk'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE

@AbapCatalog.buffering.status: #NOT_ALLOWED

define view I_CpdFinancialRiskText
  as select from dd07t
  association [1..1] to I_Cpdfinancialrisk as _FinancialRisk on $projection.FinancialRisk = _FinancialRisk.FinancialRisk
  association [0..1] to I_Language         as _Language      on $projection.Language = _Language.Language
{
  key domvalue_l                 as FinancialRisk,
      @Semantics.language: true
  key cast( ddlanguage as spras) as Language,
      @Semantics.text: true
      ddtext                     as FinancialRiskName,
      _FinancialRisk,

      _Language
}
where
      domname    =  '/CPD/PWS_WS_FIN_RISK'
  and domvalue_l <> '' 
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CPDFINANCIALRISK",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/