SAP DPR_CUST_TABC Definition of Customer-Defined Tab Pages Table data and field list

DPR_CUST_TABC is a standard SAP Table which is used to store Definition of Customer-Defined Tab Pages data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DPR_CUST_TABC table consists of various fields, each holding specific information or linking keys about Definition of Customer-Defined Tab Pages data available in SAP. These include ELEM_TYPE (Project Element Type for Customer-Defined Tab Page), PROJECT_TYPE (Project Type), ACTIVE (Active Indicator for Customer-Defined Tab Page), NAME_TEXT (Title of Your Own Tab Page)... 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. .

DPR_CUST_TABC table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP DPR_CUST_TABC table 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 DPR_CUST_TABC 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
ELEM_TYPEProject Element Type for Customer-Defined Tab Page DPR_TV_CUST_TABC_ELEM_TYPECHAR3DPR_TV_CUST_TABC_ELEM_TYPE
PROJECT_TYPEProject Type DPR_TV_PRO_TYPECHAR15Assigned to domainDPR_TYPEDPR_PROJECT_TYPE
ACTIVEActive Indicator for Customer-Defined Tab Page DPR_TV_CUST_TABC_ACTIVECHAR1DPR_TV_CUST_TABC_ACTIVE
NAME_TEXTTitle of Your Own Tab Page DPR_TV_CUST_TABC_NAMECHAR120DPR_TV_CUST_TABC_NAME
WD_NAMEName of Your Own WebDynpro Component DPR_TV_CUST_TABC_WD_COMPCHAR25DPR_TV_CUST_TABC_WD_COMP

Key field Non-key field



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

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

SELECT SINGLE *
FROM DPR_CUST_TABC
INTO CORRESPONDING FIELDS OF WA_DPR_CUST_TABC
WHERE...

How to access SAP table DPR_CUST_TABC

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

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