SAP VTBDFLG Datafeed: Log file Table data and field list

VTBDFLG is a standard SAP Table which is used to store Datafeed: Log file data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The VTBDFLG table consists of various fields, each holding specific information or linking keys about Datafeed: Log file data available in SAP. These include FEEDNAME (Market Data: Data Provider), RINID1 (Datafeed: Instrument name), RINID2 (Datafeed: Data source), DLOGDATUM (Datafeed: Log file 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. .

VTBDFLG table Technical Details:

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP VTBDFLG 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 VTBDFLG 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
FEEDNAMEMarket Data: Data Provider TB_DFNAMECHAR10VTBDFFT_DFCHAR10DLNAME
RINID1Datafeed: Instrument name TB_INID1CHAR20T_DFCHAR20
RINID2Datafeed: Data source TB_INID2CHAR15T_DFCHAR15
DLOGDATUMDatafeed: Log file date TB_DFDLOGDATS8DATUM
TLOGZEITDatafeed: Log file time TB_DFTLOGTIMS6TIMES
UNAMEUser Name SYUNAMECHAR12SYCHAR12
SSTATSDatafeed: Status of market date TB_STATSCHAR2T_DFCHAR2
ERRORDatafeed: Error message TB_ERRORCHAR80T_CHAR80

Key field Non-key field



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

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

SELECT SINGLE *
FROM VTBDFLG
INTO CORRESPONDING FIELDS OF WA_VTBDFLG
WHERE...

How to access SAP table VTBDFLG

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

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