TCVIEW SAP (Table control views (user settings)) Table details

Dictionary Type: Table
Description: Table control views (user settings)




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




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

TCVIEW is a standard SAP Table which is used to store Table control views (user settings) data and is available within R/3 SAP systems depending on the version and release level.

The TCVIEW table consists of various fields, each holding specific information or linking keys about Table control views (user settings) data available in SAP. These include TCPROGRAM (ABAP Program Name), TCUSERTYPE (User Type), TCUSER (User Name in User Master Record), TCCONTROL (Name of table control in the program).. 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: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP TCVIEW 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
MANDANTClient MANDTCLNT3Assigned to domainMANDT
TCPROGRAMABAP Program Name PROGRAMMCHAR40Assigned to domainPROGRAMMRID
TCUSERTYPEUser Type USERTYPCHAR1CHAR1
TCUSERUser Name in User Master Record XUBNAMECHAR12Assigned to domainXUBNAMEXUS
TCCONTROLName of table control in the program TCCONTROLCHAR30CHAR30SH_TCVIEW
TCKONTEXTApplication context of a table control TCKONTEXTCHAR10SYCHAR10
TCVERSIONVariant of a user setting for tables TCVERSIONCHAR20CHAR20SSH_TCVIEW
TCFIELDPOSField position in table control TCPOSNUMC3NUMC03
TCFIELDNAMField name FNAM_____4CHAR132DYNFNAM
TCFIELDLENDisplay length of fields in table control FELDLAENGENUMC3NUMC03
TCUDEFAULTDefault variant of a table control TC_DEFAULTCHAR2CHAR2
TCSDEFAULTDefault variant of a table control TC_DEFAULTCHAR2CHAR2
TCFIX_COLSFixed columns in a table control TCFIXCOLSINT410TCINT
TCLINE_SELLine selection table control TCLINE_SELINT410TCINT
TCCOL_SELColumn selection table control TCCOL_SELINT410TCINT
TCV_SCROLLDisplay vertical scrollbar: no, yes TCV_SCROLLCHAR1SYCHAR01
TCH_GRIDDisplay horizontal grid lines: no, yes TCH_GRIDCHAR1SYCHAR01
TCV_GRIDDisplay vertical grid lines: no, yes TCV_GRIDCHAR1SYCHAR01
TCINVISIBLHide TC y/n TCINVISIBLCHAR1SYCHAR01

Key field Non-key field



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

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

SELECT SINGLE *
FROM TCVIEW
INTO CORRESPONDING FIELDS OF WA_TCVIEW
WHERE...

How to access SAP table TCVIEW

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