SWEQUEUE SAP (Event Queue for Temporary Storage of Triggered Events) Table details

Dictionary Type: Table
Description: Event Queue for Temporary Storage of Triggered Events




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




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

SWEQUEUE is a standard SAP Table which is used to store Event Queue for Temporary Storage of Triggered Events data and is available within R/3 SAP systems depending on the version and release level.

The SWEQUEUE table consists of various fields, each holding specific information or linking keys about Event Queue for Temporary Storage of Triggered Events data available in SAP. These include EVT_GUID (Event GUID), EVENT_ID (ID of an event instance), TSTAMP (UTC Time Stamp in Short Form (YYYYMMDDhhmmss)), EVENT (Event).. 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: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP SWEQUEUE 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
CLIENTClient MANDTCLNT3T000MANDT
EVT_GUIDEvent GUID SWE_EGUIDCHAR32SYSUUID_C
EVENT_IDID of an event instance SWE_EVTIDNUMC20SWE_EVTID
TSTAMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS
EVENTEvent SWO_EVENTCHAR32SWC_ELEM
OBJTYPEType of Objects in Persistent Object References SIBFTYPEIDCHAR32SIBFTYPEID
OBJKEYObject key SWO_TYPEIDCHAR70SWO_TYPEID
RECTYPEName of Receiver Type SWFERECTYPCHAR32SWFERECTYP
RECIDReceiver ID SWE_RECIDCHAR90SWO_OBJID
RECFBName of Receiver Function Module SWE_RECFBCHAR30TFDIRFUNCNAME
RFCDESTName of logical RFC destination RFCDWFCHAR32Assigned to domainRFCDESTRFC
URGENCYUrgency of event SWE_URGNUMC1SWE_PRIORI
TESTINGTest event SWE_TESTCHAR1XFELD
CONT_EXISTEvent container contains individually entered elements SWE_CONTCHAR1CHAR1
DELIVEREDFlag showing whether event already delivered SWE_DELIVCHAR1XFELD
STATUSEvent Queue: Status of an Event in the Queue SWE_EVTSTAINT13SWE_EVTSTA
RETRIEDNumber of unsuccessful delivery attempts SWE_RETRYNUMC2NUMC2
CREA_DATESystem Date SYDATUMDATS8SYDATS
CREA_TIMESystem Time SYUZEITTIMS6SYTIME
CREA_STMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS
OTYPEObject Type OTYPECHAR2Assigned to domainOTYPEPOT
OBJIDAgent ID in Organizational Management ACTORIDCHAR12HROBJID_12
LANGULanguage Key SYLANGULANG1ISOLASYLANGU
COBJTYPEType of Objects in Persistent Object References SIBFTYPEIDCHAR32SIBFTYPEID
REQUESTEREvent Queue: Identification of Requester SWE_REQUESCHAR104
TCODETransaction Code SYTCODECHAR20Assigned to domainTCODE
RETRY_ERRNumber of Delivery Attempts After Temporary Errors SWE_QERRETNUMC2SWE_QERRET
OBJCATEGObject Type Category SWFECLSTYPCHAR2SWFECLSTYPSWF_CATID
SOURCE_MANDTClient ID SYMANDTCLNT3Assigned to domainMANDT
RECMODEIndicator for Event Handler SWFERECMODCHAR1SWFERECMOD
SOURCE_SYSIDName of SAP System SYSYSIDCHAR8SYCHAR08
RECCLASSClass Name of Handler SWFERECCLSCHAR30SEOCLSNAME
RETRY_ERRNumber of Delivery Attempts After Temporary Errors SWE_QERRETNUMC2SWE_QERRET
OBJCATEGObject Type Category SWFECLSTYPCHAR2SWFECLSTYPSWF_CATID
RECINTERFInterface Name of Handler SWFERECITFCHAR30SEOCLSNAME
RECMETHName of Handler Method SWFERECMETCHAR30CHAR30
RECMODEIndicator for Event Handler SWFERECMODCHAR1SWFERECMOD
RECCLASSClass Name of Handler SWFERECCLSCHAR30SEOCLSNAME
RECMETYPMethod Type SWFEMETTYPCHAR1SWFEMETTYP
RECFBTYPType of Receiver Function Module SWFERECFBTCHAR1SWFERECFBT
RECINTERFInterface Name of Handler SWFERECITFCHAR30SEOCLSNAME
DESTTYPType for Call Destination SWFEDESTYPCHAR1SWFEDESTYP
RECMETHName of Handler Method SWFERECMETCHAR30CHAR30
RECCATEGObject Category SWF_CLSTYPCHAR2SWF_CLSTYPSWF_CATID
RECMETYPMethod Type SWFEMETTYPCHAR1SWFEMETTYP
RECFBTYPType of Receiver Function Module SWFERECFBTCHAR1SWFERECFBT
RECTYPEIDType of Objects in Persistent Object References SIBFTYPEIDCHAR32SIBFTYPEID
DESTTYPType for Call Destination SWFEDESTYPCHAR1SWFEDESTYP
DELIV_STMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS
RECCATEGObject Category SWF_CLSTYPCHAR2SWF_CLSTYPSWF_CATID
LNK_OBJTYPEType of Objects in Persistent Object References SIBFTYPEIDCHAR32SIBFTYPEID
RECTYPEIDType of Objects in Persistent Object References SIBFTYPEIDCHAR32SIBFTYPEID
DELIV_STMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS
LNK_OBJTYPEType of Objects in Persistent Object References SIBFTYPEIDCHAR32SIBFTYPEID

Key field Non-key field



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

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

SELECT SINGLE *
FROM SWEQUEUE
INTO CORRESPONDING FIELDS OF WA_SWEQUEUE
WHERE...

How to access SAP table SWEQUEUE

Within an ECC or HANA version of SAP you can also view further information about SWEQUEUE 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!