SAP EDESK_DOC_DATA Document Data Table data and field list

EDESK_DOC_DATA 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 "Document Data" 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_EDESK_DOC_DATA TYPE EDESK_DOC_DATA.

The EDESK_DOC_DATA table consists of various fields, each holding specific information or linking keys about Document Data data available in SAP. These include DOCUMENTTYPE (Document Type), DOCUMENTNUMBER (Document number), DOCUMENTVERSION (Document Version), DOCUMENTPART (Document Part)... 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. .

EDESK_DOC_DATA structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP EDESK_DOC_DATA 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 EDESK_DOC_DATA 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
OBJECT_IDRow Index of Internal Tables SYTABIXINT410SYST_LONG
DOCUMENTTYPEDocument Type DOKARCHAR3TDWADOKARCV2
DOCUMENTNUMBERDocument number DOKNRCHAR25Assigned to domainALPHADOKNRCV1
DOCUMENTVERSIONDocument Version DOKVRCHAR2DOKVRCV3
DOCUMENTPARTDocument Part DOKTL_DCHAR3DOKTLCV4
DESCRIPTIONDocument description DKTXTCHAR40TEXT40
USERNAMEName of person responsible DWNAMCHAR12DWNAM
STATUSEXTERNStatus of a document (language-dependent) STABKCHAR2CHAR2
STATUSINTERNDocument Status DOKSTCHAR2Assigned to domainDOKST
STATUSLOGDocument management log field PROTFCHAR20PROTF
LABORATORYLaboratory/design office LABORCHAR3T024LLABOR
ECNUMBERChange Number DAENRCHAR12AENRAENNRAENNR
VALIDFROMDATEValid-From Date CCDATDATS8CC_DATUM
REVLEVELRevision Level REVLVCHAR2NUMCVREVLVRVS
DELETEINDICATORDeletion indicator LOEDKCHAR1XFELD
CADINDICATORCAD Indicator CADKZCHAR1XFELD
STRUCTUREINDICATORDocument Management Flag CVFLAGCHAR1CHAR1
PREDOCUMENTNUMBERDocument number of superior document PRENRCHAR25Assigned to domainALPHADOKNR
PREDOCUMENTVERSIONDocument version of superior document PREVRCHAR2DOKVR
PREDOCUMENTPARTDocument Part of Superior Document PRETLCHAR3DOKTL
PREDOCUMENTTYPEDocument type of the superior document PREARCHAR3Assigned to domainDOKAR
AUTHORITYGROUPAuthorization Group BEGRUCHAR4BEGRU
DOCFILE1Original of document FILEPCHAR255TEXT255
DATACARRIER1Name of Data Carrier DTTRGCHAR10TDWDDTTRGCV5
WSAPPLICATION1Application DAPPLCHAR3TDWPDAPPL
DOCFILE2Original of document FILEPCHAR255TEXT255
DATACARRIER2Name of Data Carrier DTTRGCHAR10TDWDDTTRGCV5
WSAPPLICATION2Application DAPPLCHAR3TDWPDAPPL
VRLDATDue Date VRLDATDATS8DATUM
USERDEFINED1Reserve field DRAW RESDRAWCHAR14CHAR14
USERDEFINED2Reserve field DRAW RESDRAWCHAR14CHAR14
USERDEFINED3Reserve field DRAW RESDRAWCHAR14CHAR14
USERDEFINED4Reserve field DRAW RESDRAWCHAR14CHAR14
SAVEDOCFILE1Original of document FILEPCHAR255TEXT255
SAVEDATACARRIER1Name of Data Carrier DTTRGCHAR10Assigned to domainDTTRGCV5
SAVEDOCFILE2Original of document FILEPCHAR255TEXT255
SAVEDATACARRIER2Name of Data Carrier DTTRGCHAR10Assigned to domainDTTRGCV5
CREATEDATEOutput date for document ADATUMDATS8DATUM
REFDOCUMENTNUMBERDocument Number of Source Document DOKNR_VLCHAR25Assigned to domainALPHADOKNR
REFDOCUMENTPARTDocument part of source document DOKTL_VLCHAR3DOKTL
REFDOCUMENTVERSIONDocument version of source document DOKVR_VLCHAR2DOKVR
FILESIZE1File length of original ORLNNUMC12NUM12
FILESIZE2File length of original ORLNNUMC12NUM12
CMFIXEDDocument fixed DMS_CM_FIXEDCHAR1XFELD
CMRELEVANCERelevant for Configuration Management DE_CM_RELEVANCE_FLAGCHAR1DO_CM_RELEVANCE_FLAG

Key field Non-key field



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

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

How to access SAP table EDESK_DOC_DATA

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

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