TSEGE SAP (Time Segment Events) Table details

Dictionary Type: Table
Description: Time Segment Events




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




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

TSEGE is a standard SAP Table which is used to store Time Segment Events data and is available within R/3 SAP systems depending on the version and release level.

The TSEGE table consists of various fields, each holding specific information or linking keys about Time Segment Events data available in SAP. These include HEAD_HDL (Handle for time segment header), EVEN (Event type), EVEN_CNT (Transaction type counter for multiple use), EVEN_VERTY (Version type of event / 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: Can be enhanced (character-type or numeric)


SAP TSEGE 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
HEAD_HDLHandle for time segment header TSEGHDLHDRCHAR22TSEGHTSEGHANDLE
EVENEvent type TSEGEVTTYPCHAR10TTSEGEVTYEVTYATSEGEVTTYP
EVEN_CNTTransaction type counter for multiple use TSEGEVTCNTINT25INT2
EVEN_VERTYVersion type of event / time TSEGVERTYPCHAR1Assigned to domainTSEGVERTYP
EVEN_VERNUVersion number of event TSEGVERNUMINT25INT2
EVEN_SORSorting field for transaction type TSEGEVTSRTINT410INT4
EVEN_TSTFRStart time of transaction (UTC time stamp) TSEGEVTFRSDEC15TZNTSTMPS
EVEN_ZONFRStart time zone of transaction TSEGEVTFRZCHAR6TTZZTZNZONE
EVEN_TSTTOEnd time of transaction (UTC time stamp) TSEGEVTTOSDEC15TZNTSTMPS
EVEN_ZONTOEnd time zone for event TSEGEVTTOZCHAR6TTZZTZNZONE
EVEN_FLGFFFlag: Start of event is fixed (cannot be delayed) TSEGTIMFXFCHAR1FLAG
EVEN_FLGFTFlag: End of event is fixed (cannot be delayed) TSEGTIMFXTCHAR1FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM TSEGE
INTO CORRESPONDING FIELDS OF WA_TSEGE
WHERE...

How to access SAP table TSEGE

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