TRNSM SAP (Data Transfer) Table details

Dictionary Type: Table
Description: Data Transfer




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




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

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

The TRNSM table consists of various fields, each holding specific information or linking keys about Data Transfer data available in SAP. These include TRMNO_INT (Transfer Number (Internal)), TRMNO_EXT (Transfer Number (External)), TRMNO_EXT_OLD (Old Transfer Number (External)), TRMDATE (Sender's Transfer Date).. 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 TRNSM 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
TRMNO_INTTransfer Number (Internal) TRMNO_INTNUMC12TRMNO_INT
TRMNO_EXTTransfer Number (External) TRMNO_EXTCHAR35ALPHATRMNO_EXT
TRMNO_EXT_OLDOld Transfer Number (External) TRMNO_EXT_OLDCHAR35ALPHATRMNO_EXT
TRMDATESender's Transfer Date EDI_TRMDATEDATS8DATUM
TRMTIMESender's Transfer Time EDI_TRMTIMETIMS6TIME
DIRECTDirection for IDoc EDI_DIRECTCHAR1EDI_DIRECT
PARNOPartner number EDIPPARNUMCHAR10EDPP1ALPHAEDI_PARNUMPN1
PARTYPPartner Type EDIPPARTYPCHAR2TEDSTEDI_RCVPRTPT1
PARFCTPartner Role EDI_PARFCTCHAR2EDIPVEDI_PARVW
MESTYPMessage Type EDI_MESTYPCHAR30EDMSGEDI_MESTYPMES
MESCODLogical Message Variant EDI_MESCODCHAR3EDI_MESCOD
MESFCTLogical message function EDI_MESFCTCHAR3EDI_MESFCT
TESTFlag for test mode EDIPTESTCHAR1EDI_FLAG
TIMESTAMPTime for Positive Processing EDI_TIMESTAMPDEC15TZNTSTMPS
DOCNOIDoc number EDI4DOCNUCCHAR16EDI_CHAR16

Key field Non-key field



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

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

SELECT SINGLE *
FROM TRNSM
INTO CORRESPONDING FIELDS OF WA_TRNSM
WHERE...

How to access SAP table TRNSM

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