RSAU_BUF_FLAG

Transparent Table Temporary Data

SAL: Processing Status for Event Log

RSAU_BUF_FLAG is an SAP database table in S/4HANA. SAL: Processing Status for Event Log. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_RSAU_BUF_VIEW view left_outer Display Audit Log Data (Classic Format)

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY area RSLGAREA Area
KEY subid RSLGSUBID Sub-name
KEY slgdattim RSLGTIME System log time stamp
KEY slgproc RSLGPID_D Process
KEY slgmand MANDT Client
KEY sid SYST_SYSID SAP System ID
KEY instance MSNAME2 AS Instance
KEY counter INT2 INT2
mfd_flag RSAU_LOEVM Deletion Flag
alert_flag RSAU_ALERT Alert ID

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- SAL: Processing Status for Event Log
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RSAU_BUF_FLAG (
    AREA,        -- Area [RSLGAREA]
    SUBID,       -- Sub-name [RSLGSUBID]
    SLGDATTIM,   -- System log time stamp [RSLGTIME]
    SLGPROC,     -- Process [RSLGPID_D]
    SLGMAND,     -- Client [MANDT]
    SID,         -- SAP System ID [SYST_SYSID]
    INSTANCE,    -- AS Instance [MSNAME2]
    COUNTER,     -- INT2 [INT2]
    MFD_FLAG,    -- Deletion Flag [RSAU_LOEVM]
    ALERT_FLAG,  -- Alert ID [RSAU_ALERT]
    PRIMARY KEY (AREA, SUBID, SLGDATTIM, SLGPROC, SLGMAND, SID, INSTANCE, COUNTER)
);