SAP CPROW_CUST Make Settings for WebDAV Interface Table data and field list

CPROW_CUST is a standard SAP Table which is used to store Make Settings for WebDAV Interface data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CPROW_CUST table consists of various fields, each holding specific information or linking keys about Make Settings for WebDAV Interface data available in SAP. These include URL (Definition of WebDAV URL (Part 1)), URL2 (Definition of WebDAV URL (Part 2)), URL3 (Definition of WebDAV URL (Part 3)), INDEX_SERV_USER (User Name for Index Service)... 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. .

CPROW_CUST 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 CPROW_CUST 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 CPROW_CUST 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
URLDefinition of WebDAV URL (Part 1) CPRO_WEBDAV_T_URLCHAR132CPRO_URL_D
URL2Definition of WebDAV URL (Part 2) CPRO_WEBDAV_T_URL2CHAR132CPRO_URL_D
URL3Definition of WebDAV URL (Part 3) CPRO_WEBDAV_T_URL3CHAR132CPRO_URL_D
INDEX_SERV_USERUser Name for Index Service CPRO_WEBDAV_T_INDEX_USERCHAR12Assigned to domainXUBNAME
AUTO_REFRSH_TIMECaches Become Invalid After this Amount of Time CPRO_WEBDAV_T_REFRESH_TIMENUMC5NUMC5
CFX_IS_ACTIVEWebDAV Access Allowed for cFolders CPRO_WEBDAV_T_CFX_ACTIVECHAR1XFELD
DPR_IS_ACTIVEWebDAV Access Allowed for Project Management CPRO_WEBDAV_T_DPR_ACTIVECHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM CPROW_CUST
INTO CORRESPONDING FIELDS OF WA_CPROW_CUST
WHERE...

How to access SAP table CPROW_CUST

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

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