R_Sitn2LogMessage

DDL: R_SITN2LOGMESSAGE SQL: RSITN2LGMSG Type: view BASIC

Log Message Details

R_Sitn2LogMessage is a Basic CDS View that provides data about "Log Message Details" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 6 fields with key fields Language, SitnMsgClassID, SitnMsgNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t100 _t100 from

Associations (1)

CardinalityTargetAliasCondition
[1] t100t _t100t $projection.Language = _t100t.sprsl and $projection.SitnMsgClassID = _t100t.arbgb

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName RSITN2LGMSG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Log Message Details view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language t100 sprsl Language Code
KEY SitnMsgClassID t100 arbgb Message ID
KEY SitnMsgNumber t100 msgnr Message
SitnMsgText t100 text User Group
SitnMsgFilterKey
SitnMsgClassText _t100t stext Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_Sitn2LogMessage.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: RSITN2LGMSG

CREATE VIEW R_Sitn2LogMessage AS
SELECT
  _t100.sprsl AS Language,
  _t100.arbgb AS SitnMsgClassID,
  _t100.msgnr AS SitnMsgNumber,
  _t100.text AS SitnMsgText,
  cast(concat( concat( _t100.arbgb, _t100.msgnr ), ' ') as sit2_de_msg_fltr_key preserving type ) AS SitnMsgFilterKey,
  _t100t.stext AS SitnMsgClassText
FROM t100 AS _t100
LEFT OUTER JOIN t100t AS _t100t ON Language = _t100t.sprsl AND SitnMsgClassID = _t100t.arbgb  -- association [1]
;