RSAU_META_BUF

DDL: RSAU_META_BUF Type: view_entity

Audit Log Meta Data Buffer

RSAU_META_BUF is a CDS View that provides data about "Audit Log Meta Data Buffer" in SAP S/4HANA. It reads from 1 data source (tsl1d) and exposes 6 fields with key fields Area, Subid.

Data Sources (1)

SourceAliasJoin Type
tsl1d tsl1d from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Audit Log Meta Data Buffer view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Area area Settings Area
KEY Subid subid Topic ID
msg
Clasid clasid Class
Subclasid subclasid Subgroup
Severity severity Thresh.Val. Severity

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 RSAU_META_BUF.
-- 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.

CREATE VIEW RSAU_META_BUF AS
SELECT
  Area,
  Subid,
  concat(tsl1d.area, tsl1d.subid ) AS msg,
  Clasid,
  Subclasid,
  Severity
FROM tsl1d
;