SAP TFC_DB_ITEM_DATA Data for Items Table data and field list

TFC_DB_ITEM_DATA is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Data for Items" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_TFC_DB_ITEM_DATA TYPE TFC_DB_ITEM_DATA.

The TFC_DB_ITEM_DATA table consists of various fields, each holding specific information or linking keys about Data for Items data available in SAP. These include POS (Position under a Node), GRP_PREV (Integer for Fast Close (Node Administration)), KIND (Task Type (Report, Workflow, Transaction, Note)), REPORT (ABAP Program Name)... 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. .

TFC_DB_ITEM_DATA structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP TFC_DB_ITEM_DATA structure 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 TFC_DB_ITEM_DATA 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
NODE_GRPInteger for Fast Close (Node Administration) TFC_INTINT410TFC_INT
POSPosition under a Node TFC_POSITIONINT410TFC_POSITION
GRP_PREVInteger for Fast Close (Node Administration) TFC_INTINT410TFC_INT
KINDTask Type (Report, Workflow, Transaction, Note) TFC_TASK_TYPECHAR1TFC_TASK_TYPE
REPORTABAP Program Name TFC_PROGRAMMCHAR40Assigned to domainPROGRAMM
VARIANTEVariant Name TFC_VARIANTCHAR14SELSET
SEQUENCEFast Close: Flow Definition TFC_SEQUENCECHAR12TFC_SEQUENCE
TRANSACTFast Close: Transaction TFC_TRANSACTIONCHAR20Assigned to domainTCODE
EXE_USRTask Processor TFC_TASK_OWNERCHAR12Assigned to domainXUBNAMEUSER_ADDR
RES_USRPerson Responsible for Task TFC_TASK_RESCHAR12Assigned to domainXUBNAMEUSER_ADDR
EXE_DAY_OFFSETOffset in Days Relative to Key Date of a Task List TFC_OFFSET_RELINT410TFC_OFFSET_REL
DAY_TYPEType of Day (Calendar Day or Working Day) TFC_DAY_TYPECHAR1TFC_DAY_TYPE
EXE_TIMEPlanned Start Time for a Task TFC_TIMETIMS6SYTIME
INACTIVEBool Indicator TFC_ACTIVECHAR1TFC_ACTIVE
LOCKEDTask Completed TFC_LOCKEDCHAR1TFC_ACTIVE
AUTO_VARGenerate Variant Automatically TFC_AUTO_VARCHAR1TFC_ACTIVE
TEXTDescription of a Folder or Task TFC_FOLDER_TEXTCHAR60TFC_FOLDER_TEXT
JOBTask Name TFC_JOBCHAR40Assigned to domainPROGRAMM
JOB_IDJob ID of a Job: Unique Name TFC_JOB_IDNUMC10TFC_JOB_ID
LAUFZEIT_DSystem Date SYDATUMDATS8SYDATS
LAUFZEIT_TSystem Time SYUZEITTIMS6SYTIME
DOCUMENT_IDBusiness Document Service: Document ID BDS_DOCIDCHAR42CHAR42
IUSAGEUsage in Following Closing Types TFC_USAGECHAR8TFC_USAGE
TEST_NODENode ID SCMA_NODECHAR12SCMA_NODE
CRIT_PATHIndicator: Object Belongs to Critical Path TFC_CRIT_PATHCHAR1TFC_CRIT_PATH
BATCHJOB_IDBackground job name BTCJOBCHAR32CHAR32
AGR_NAMERole Name AGR_NAMECHAR30Assigned to domainAGR_NAMEAGR_NAME
SAP_SCRIPT_IDGUID in 'CHAR' Format in Uppercase GUID_32CHAR32SYSUUID_C
RT_DEF_IDName of Remote Task TFC_RT_DEF_IDCHAR80DBTC_EXT_SDL_NAMEBTC_EXT_JOBDEFS
RT_QUEUEQueue of Remote Task TFC_RT_QUEUECHAR80DBTC_EXT_SDL_NAMEBTC_EXT_QUEUES

Key field Non-key field



How do I retrieve data from SAP structure TFC_DB_ITEM_DATA using ABAP code?

As TFC_DB_ITEM_DATA is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on TFC_DB_ITEM_DATA as there is no data to select.

How to access SAP table TFC_DB_ITEM_DATA

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

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