TBCA SAP (Chart types in bar chart) Table details

Dictionary Type: Table
Description: Chart types in bar chart




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




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

TBCA is a standard SAP Table which is used to store Chart types in bar chart data and is available within R/3 SAP systems depending on the version and release level.

The TBCA table consists of various fields, each holding specific information or linking keys about Chart types in bar chart data available in SAP. These include PROFILE (Chart group), TYPE (Chart type), TITLE (Flag: Display chart title), TABLE_TIT (Flag: Display table title).. 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 = TBCAT


SAP TBCA 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
PROFILEChart group BCCHRTPROFCHAR6BCCHRTPROF
TYPEChart type BCCHRTTYPCHAR2CHAR2
TITLEFlag: Display chart title BCCHARTTITCHAR1XFELD
TABLE_TITFlag: Display table title BCCHARTTTICHAR1XFELD
DIAG_TITFlag: display time axis BCCHARTDTICHAR1XFELD
TABLE_SECFlag: Display table area BCCHARTTSCCHAR1XFELD
DIAG_SECFlag: display graph area BCCHARTDSCCHAR1XFELD
TITEL_COLBackground color for title bar BCCHARTTCCHAR6THLTNETHLTKEY
TIMEAX_COLDefinition of time axis background color BCCHARTTACCHAR6THLTNETHLTKEY
TABSEC_COLColor defintion for background color of table area BCCHARTTSOCHAR6THLTNETHLTKEY
DIASEC_COLColor definiton for background of graph area BCCHARTDSOCHAR6THLTNETHLTKEY
MARK_SPALTFlag: Fixed selection column BCCHARTMSPCHAR1XFELD
DIAG_BMPName of the graphic symbol file for the diagram area BCDIAGBMPCHAR12TGMFVCGMFFILE
TABLE_BMPName of the graphic symbol file for the table area BCTABLEBMPCHAR12TGMFVCGMFFILE
CHART_BMPName of the graphic symbol file for the subgraphic BCCHARTBMPCHAR12TGMFVCGMFFILE
RGHT_SPALTFlag: Fixed column right BCCHARTMSRCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM TBCA
INTO CORRESPONDING FIELDS OF WA_TBCA
WHERE...

How to access SAP table TBCA

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