SAP NWECMD_NODE table for persistent node objects Table data and field list

NWECMD_NODE is a standard SAP Table which is used to store table for persistent node objects data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The NWECMD_NODE table consists of various fields, each holding specific information or linking keys about table for persistent node objects data available in SAP. These include NODEID (Globally Unique Identifier), PARENTID (nwecm: UU Identifier), DISCRIMINATOR (Globally Unique Identifier), NAME (char-like path segment)... 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. .

NWECMD_NODE 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: Can Be Enhanced (Deep)


SAP NWECMD_NODE 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 NWECMD_NODE 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
NODEIDGlobally Unique Identifier OS_GUIDRAW16SYSUUID
PARENTIDnwecm: UU Identifier NWECM_IDENTITYRAW16SYSUUID
DISCRIMINATORGlobally Unique Identifier OS_GUIDRAW16SYSUUID
NAMEchar-like path segment NWECM_PATHSEGMENTCHAR255
PATHnwecm: String NWECM_STRINGSTRG0
INDEX1nwecm: Integer NWECM_INTEGERINT410
MODIFY_COUNTERnwecm: Integer NWECM_INTEGERINT410
ETAGnwecm: eTag NWECM_ETAGSTRG0
LAST_ACCESSnwecm: Timestamp (DATS + TIMS) NWECM_TIMESTAMPDEC21(7) TZNTSTMPL
LAST_ACCESS_BYnwecm: String NWECM_STRINGSTRG0
LAST_MODIFIEDnwecm: Timestamp (DATS + TIMS) NWECM_TIMESTAMPDEC21(7) TZNTSTMPL
MODIFIED_BYnwecm: String NWECM_STRINGSTRG0
CREATION_DATEnwecm: Timestamp (DATS + TIMS) NWECM_TIMESTAMPDEC21(7) TZNTSTMPL
CREATED_BYnwecm: String NWECM_STRINGSTRG0
ISREADONLYnwecm: boolean NWECM_BOOLEANCHAR1
ISHIDDENnwecm: boolean NWECM_BOOLEANCHAR1
ISSYSTEMnwecm: boolean NWECM_BOOLEANCHAR1
ISARCHIVEDnwecm: boolean NWECM_BOOLEANCHAR1
REFTO_CONTENTINSGlobally Unique Identifier OS_GUIDRAW16SYSUUID
REFTO_CONTENTCLSGlobally Unique Identifier OS_GUIDRAW16SYSUUID
REFTO_LOCKINSGlobally Unique Identifier OS_GUIDRAW16SYSUUID
REFTO_LOCKCLSGlobally Unique Identifier OS_GUIDRAW16SYSUUID

Key field Non-key field



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

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

SELECT SINGLE *
FROM NWECMD_NODE
INTO CORRESPONDING FIELDS OF WA_NWECMD_NODE
WHERE...

How to access SAP table NWECMD_NODE

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

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