TUID SAP (UID Handling) Table details

Dictionary Type: Table
Description: UID Handling




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




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

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

The TUID table consists of various fields, each holding specific information or linking keys about UID Handling data available in SAP. These include UID_TYPE (Type of UID), UID_USED (Flag indicating usage of UID Coding/Screens), UID_MAX_LENGTH (Maximum Length Allowed for Concatenated Field), LIFSP (Default delivery block).. 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: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP TUID 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 MANDTCLNT3T000MANDT
UID_TYPEType of UID UID_TYPECHAR10UID_TYPE
UID_USEDFlag indicating usage of UID Coding/Screens UID_USEDCHAR1UID_USED
UID_MAX_LENGTHMaximum Length Allowed for Concatenated Field UID_MAX_LENGTHNUMC3INT3
LIFSPDefault delivery block LIFSPCHAR2TVLSLIFSP
CAPIDApplication CAPIDCHAR4TC04CAPIDCSA
IDOC_MESSAGEUID IDoc Communication UID_IDOCCHAR1FLAG
ESOA_MESSAGEUID eSOA Communication UID_ESOACHAR1FLAG
REGISTRY_CUSTDummy Registry Customer for Evaluating Distribution Model IUID_REGISTRY_CUSTCHAR10
N_UNIQ_MSG_TYPEMessage Type for IUID Consistency Check IUID_N_UNIQ_MSG_TYPECHAR1IUID_N_UNIQ_MSG_TYPE

Key field Non-key field



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

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

SELECT SINGLE *
FROM TUID
INTO CORRESPONDING FIELDS OF WA_TUID
WHERE...

How to access SAP table TUID

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