TLOGO SAP (Obsolete) Table details

Dictionary Type: Table
Description: Obsolete




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




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

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

The TLOGO table consists of various fields, each holding specific information or linking keys about Obsolete data available in SAP. These include PGMID (Program ID in Requests and Tasks), CONTFLAG (Delivery class), CLIDEP (Flag indicating client-specific entries), LOCKMETH (CTS: Lock method (four-character ID)).. 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: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = TLOGOT


SAP TLOGO 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
LOBJECTLogical object (table TLOGO) LOBJECTCHAR4LOBJECT
PGMIDProgram ID in Requests and Tasks PGMIDCHAR4PGMID
CONTFLAGDelivery class CONTFLAGCHAR1CONTFLAG
CLIDEPFlag indicating client-specific entries CLIDEPCHAR1CLIDEP
LOCKMETHCTS: Lock method (four-character ID) TRWLOCKMCHAR4TRWLOCKM
TADIRCMETHCTS: Method for constructing TADIR keys TRWTADIRMCHAR4TRWTADIRM
OBJNAMELENCTS: Length of object name TRWOBJNLENNUMC2NUMC02
EXITFLAGExit flag (Table TLOGO) TRWEXITFLGCHAR1AS4FLAG
CHECKIDCTS: (table TLOGO) TRWCHECKIDCHAR1TRWCHECKID
ELEMFLAGConditional flag: Elementary or logical object TRWCONDFLGCHAR1TRWCONDFLG
PROCFLAGCTS: Processing flag TLOGO TRWPROCFLGCHAR1CHAR1
TRCOMPLETEFlag (X or Blank) AS4FLAGCHAR1AS4FLAG
LOWERCASE'X' if lowercase is allowed, otherwise uppercase translate TRWLOWCASECHAR1TRWLOWCASE
PHASELEVELImport phase level for control of import sequence TRWPHLEVELNUMC1TRWPHLEVEL

Key field Non-key field



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

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

SELECT SINGLE *
FROM TLOGO
INTO CORRESPONDING FIELDS OF WA_TLOGO
WHERE...

How to access SAP table TLOGO

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