P_PaytProposalRunMessage

DDL: P_PAYTPROPOSALRUNMESSAGE SQL: PPAYTPRPSLMSG Type: view BASIC

P_PaytProposalRunMessage is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (t100) and exposes 4 fields with key fields Language, SystemMessageNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Associations (1)

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

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PPAYTPRPSLMSG view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey SystemMessageNumber view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language sprsl
KEY SystemMessageNumber msgnr
SystemMessageText text
_Language _Language
@AbapCatalog.sqlViewName: 'PPAYTPRPSLMSG'
@VDM.private: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType:  #BASIC
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'SystemMessageNumber'

define view P_PaytProposalRunMessage
  as select from t100
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key sprsl as Language,
  key msgnr as SystemMessageNumber,
      @Semantics.text: true
      text  as SystemMessageText,

      _Language
}
where
  arbgb = 'FZ'      
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"T100"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/