SAP TAB_CSCR Settings for a tab page in the flexible detail screen Table data and field list

TAB_CSCR 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 "Settings for a tab page in the flexible detail screen" 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_TAB_CSCR TYPE TAB_CSCR.

The TAB_CSCR table consists of various fields, each holding specific information or linking keys about Settings for a tab page in the flexible detail screen data available in SAP. These include ERSTE (Indicator: First tab page), SUB1 (Detail screen 1), SUB1_T (Short Description of Repository Objects), SUB2 (Detail screen 2)... 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. .

TAB_CSCR structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP TAB_CSCR 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 TAB_CSCR 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
FCODETab page ID PSFCODECHAR5PSFCODE
ERSTEIndicator: First tab page PSFIRSTTABCHAR1XFELD
SUB1Detail screen 1 PS_SUB1NUMC3CFLFDNR
SUB1_TShort Description of Repository Objects AS4TEXTCHAR60AS4TEXT
SUB2Detail screen 2 PS_SUB2NUMC3CFLFDNR
SUB2_TShort Description of Repository Objects AS4TEXTCHAR60AS4TEXT
SUB3Detail screen 3 PS_SUB3NUMC3CFLFDNR
SUB3_TShort Description of Repository Objects AS4TEXTCHAR60AS4TEXT
SUB4Detail screen 4 PS_SUB4NUMC3CFLFDNR
SUB4_TShort Description of Repository Objects AS4TEXTCHAR60AS4TEXT
SUB5Detail screen 5 PS_SUB5NUMC3CFLFDNR
SUB5_TShort Description of Repository Objects AS4TEXTCHAR60AS4TEXT

Key field Non-key field



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

As TAB_CSCR 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 TAB_CSCR as there is no data to select.

How to access SAP table TAB_CSCR

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

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