I_PublicSectorMessageType

DDL: I_PUBLICSECTORMESSAGETYPE SQL: IPUBSECMSGTYPE Type: view BASIC

Public Sector Message Type

I_PublicSectorMessageType is a Basic CDS View that provides data about "Public Sector Message Type" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValue) and exposes 2 fields with key field SystemMessageType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValue I_DomainFixedValue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PublicSectorMessageTypeText _Text $projection.SystemMessageType = _Text.SystemMessageType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPUBSECMSGTYPE view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey SystemMessageType view
EndUserText.label Public Sector Message Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SystemMessageType
_Text _Text
@AbapCatalog.sqlViewName: 'IPUBSECMSGTYPE'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.representativeKey: 'SystemMessageType'
@EndUserText.label: 'Public Sector Message Type'

define view I_PublicSectorMessageType
  as select from I_DomainFixedValue

  association [0..*] to I_PublicSectorMessageTypeText as _Text on $projection.SystemMessageType = _Text.SystemMessageType
{
      @ObjectModel.text.association: '_Text'
  key cast(substring(DomainValue, 1, 1) as ps_system_msg_type preserving type) as SystemMessageType,
      _Text
}
where
  SAPDataDictionaryDomain = 'MSGTYP_PS';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUE"
],
"ASSOCIATED":
[
"I_PUBLICSECTORMESSAGETYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/