SAP FTCOMT Foreign Trade: Communication: Audit table for FT documents Table data and field list

FTCOMT is a standard SAP Table which is used to store Foreign Trade: Communication: Audit table for FT documents data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FTCOMT table consists of various fields, each holding specific information or linking keys about Foreign Trade: Communication: Audit table for FT documents data available in SAP. These include TZONE (Time Zone), TSTMP (UTC Time Stamp in Short Form (YYYYMMDDhhmmss)), VBELN (Billing Document), POSNR (Item number on FT document)... 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. .

FTCOMT table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP FTCOMT table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the FTCOMT table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
TZONETime Zone TZNZONECHAR6TTZZTZNZONE
TSTMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TZNTSTMPSDEC15TZNTSTMPS
VBELNBilling Document VBELN_VFCHAR10VBUKALPHAVBELNVF
POSNRItem number on FT document FTDRPOSNUMC6NUMC6
KAPPLApplication KAPPLCHAR2T681AKAPPLKAP
KSCHLCondition Type KSCHLCHAR4T685KSCHLVKS
SPRASMessage language NA_SPRASLANG1T002ISOLASPRAS
PARNRMessage partner NA_PARNRCHAR10ALPHANA_PARNR
PARVWPartner function (for example SH for ship-to party) SNA_PARVWCHAR2CHAR2
NACHAMessage transmission medium NA_NACHACHAR1NA_NACHA
HEFELOrigin field HEFELCHAR30DD03LFDNAME
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
AHBASBasis document category for foreign trade processing AHBASCHAR3AHBAS
HETABCommunication structure SAPScript FTCOMSTCHAR30TABNAME
ELEMENTCharacteristic on the Foreign Trade form FTWINDMCHAR40CHAR40
FTCOM_ALTCommunication text for audit entry - old FTCOM_ALTCHAR60FTCOM
FTCOM_NEUCommunication text for audit entry - new FTCOM_NEUCHAR60FTCOM

Key field Non-key field



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

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

SELECT SINGLE *
FROM FTCOMT
INTO CORRESPONDING FIELDS OF WA_FTCOMT
WHERE...

How to access SAP table FTCOMT

Within an ECC or HANA version of SAP you can also view further information about FTCOMT and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).