SALRT SAP (Alert: Instance Table) Table details

Dictionary Type: Table
Description: Alert: Instance Table




ABAP Code to SELECT data from SALRT
Related tables to SALRT
Access table SALRT




Table field list including key, data, relationships and ABAP select examples

SALRT is a standard SAP Table which is used to store Alert: Instance Table data and is available within R/3 SAP systems depending on the version and release level.

The SALRT table consists of various fields, each holding specific information or linking keys about Alert: Instance Table data available in SAP. These include ID (Globally Unique Identifier), CATEGORY (Alert Category), CREATIME (Time Stamp for Triggering an Alert), EXPIRYTIME (Expiry Date/Time).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP SALRT table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
IDGlobally Unique Identifier OS_GUIDRAW16SYSUUID
CATEGORYAlert Category SALRTDCATCHAR30SALRTCATSALRTDCAT
CREATIMETime Stamp for Triggering an Alert SALRTDCRETDEC15TZNTSTMPS
EXPIRYTIMEExpiry Date/Time SALRTDEXPDEC15TZNTSTMPS
CNTDELVRYCounter for Number of Alert Deliveries Already Performed SALRTDCNTDINT13
CONTAINERGUID in 'CHAR' Format in Uppercase GUID_32CHAR32SYSUUID_C
STATUSStatus of an Alert SALRTDSTATCHAR1SALRTOSTAT
EXTERNALIDExternal ID for an Alert SALRTEXTIDNUMC5SALRTEXTID
APPL_GUIDGUID in 'CHAR' Format in Uppercase GUID_32CHAR32SYSUUID_C
CHNGTIMETime Stamp for Changing an Alert SALRTDCHGTDEC15TZNTSTMPS

Key field Non-key field



How do I retrieve data from SAP table SALRT using ABAP code

The following ABAP code Example will allow you to do a basic selection on SALRT to SELECT all data from the table
DATA: WA_SALRT TYPE SALRT.

SELECT SINGLE *
FROM SALRT
INTO CORRESPONDING FIELDS OF WA_SALRT
WHERE...

How to access SAP table SALRT

Within an ECC or HANA version of SAP you can also view further information about SALRT and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!