TFMT SAP (Format attributes in VarChart graphics) Table details

Dictionary Type: Table
Description: Format attributes in VarChart graphics




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




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

TFMT is a standard SAP Table which is used to store Format attributes in VarChart graphics data and is available within R/3 SAP systems depending on the version and release level.

The TFMT table consists of various fields, each holding specific information or linking keys about Format attributes in VarChart graphics data available in SAP. These include NAME (Name of form definition), LAYOUT_A (Layout definition for positions 1 to 50), LAYOUT_B (Layout definition for positions 51 to 100), LAYOUT_C (Layout definition for positions 101 to 150).. 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: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = TFMTT


SAP TFMT 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
NAMEName of form definition NETFMTKEYCHAR6NETFMTKEY
LAYOUT_ALayout definition for positions 1 to 50 VCLAYOUT_1CHAR50TEXT50
LAYOUT_BLayout definition for positions 51 to 100 VCLAYOUT_2CHAR50TEXT50
LAYOUT_CLayout definition for positions 101 to 150 VCLAYOUT_3CHAR50TEXT50
LAYOUT_DLayout definition for positions 151 to 200 VCLAYOUT_4CHAR50TEXT50
FRAMESHAPEShape of frame VCFRAMESHPCHAR16TFRSPVCFRAMESHP
D3_EFFECTFlag: 3D effect VC3DEFFECTCHAR1XFELD
SHADOWFlag: shadow VCSHADOWCHAR1XFELD
SHADOW_COLFrame color VCSHADCOLCHAR11TWCOLW_COLOR
LINE_WIDTHFrame width VCLINWIDTHNUMC4VCLINWIDTH
DOUBLE_FRMDouble frame VCDOUBLEFCHAR1XFELD
TOP_HOTHot area above the object VCTMARGNUMC5VCMARGIN
LEFT_HOTHot area to the left of the object VCLMARGNUMC5VCMARGIN
RIGHT_HOTHot area to the right of the object VCRMARGNUMC5VCMARGIN
BOTTOM_HOTHot area below object VCBMARGNUMC5VCMARGIN
ALL_HOTHot area in the vicinity of the object VCAMARGNUMC5VCMARGIN
TIME_EGGIndicator element VCTIMEEGGCHAR1XFELD
LINE_DISTDummy NETNUMC4NUMC4NUMC4
USE_NODEFlag: use for linking lines diagram area VCUSENODECHAR1XFELD
USE_BOXFlag: use chart title in bar chart VCUSEBOXCHAR1XFELD
USE_TABBOXID: Use for graphic objects in table area VCUSETABBXCHAR1XFELD
PILESFlag: stack active VCPILESCHAR1XFELD
PILESCOUNTNumber of stacks VCPILESCNTNUMC1VCPILESCNT
PILESCOLORStack color VCPILESCOLCHAR11TWCOLW_COLOR
VARTEXTLENVariable text length for outer fields VCVARTXLENCHAR1XFELD
USE_LAYERFlag: Use for graphic object/element VCUSELAYERCHAR1XFELD
USE_RIBBONFlag: Use for scale VCUSERIBBCHAR1XFELD
CROSSFIELDFlag: Outer fields crossed by links VCCROSSFLDCHAR1XFELD
CNTRLNKTXTCentered link label VCCNTLKTXTCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM TFMT
INTO CORRESPONDING FIELDS OF WA_TFMT
WHERE...

How to access SAP table TFMT

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