SAP CPROW_LOCK_NULL Locked 'Null Resources' in the WebDAV Interface Table data and field list

CPROW_LOCK_NULL is a standard SAP Table which is used to store Locked 'Null Resources' in the WebDAV Interface data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CPROW_LOCK_NULL table consists of various fields, each holding specific information or linking keys about Locked 'Null Resources' in the WebDAV Interface data available in SAP. These include PARENT_GUID (GUID in 'CHAR' Format in Uppercase), UNIQUE_NAME (Text (80 Characters)), PARENT_TYPE (Object Type), APPLICATION (WebDAV Identifier for Application)... 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_LOCK_NULL table Technical Details:

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP CPROW_LOCK_NULL 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_LOCK_NULL 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
PARENT_GUIDGUID in 'CHAR' Format in Uppercase GUID_32CHAR32SYSUUID_C
UNIQUE_NAMEText (80 Characters) TEXT80CHAR80TEXT80UEB
PARENT_TYPEObject Type CPRO_WEBDAV_T_OBJECT_TYPECHAR10TEXT10
APPLICATIONWebDAV Identifier for Application CPRO_WEBDAV_T_APPL_IDCHAR10CHAR10
LOCK_OWNERUser Name SYUNAMECHAR12SYCHAR12
LOCK_TOKENText (length 132) TEXT132CHAR132TEXT132
OWNER_WEBDAV WebDAV Owner of Lock0
PARENT_URL URL of Superior Object0
TIMESTAMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TIMESTAMPDEC15TZNTSTMPS

Key field Non-key field



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

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

SELECT SINGLE *
FROM CPROW_LOCK_NULL
INTO CORRESPONDING FIELDS OF WA_CPROW_LOCK_NULL
WHERE...

How to access SAP table CPROW_LOCK_NULL

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

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