SAP SDLSDSH Transfer Structure for Release Header Table data and field list

SDLSDSH 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 "Transfer Structure for Release Header" 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_SDLSDSH TYPE SDLSDSH.

The SDLSDSH table consists of various fields, each holding specific information or linking keys about Transfer Structure for Release Header data available in SAP. These include DOC_NUMBER (Document Number (Purchasing/Sales...)), ITM_NUMBER (Item Number of Document (Purchasing, Sales...)), COUNTER (Internal Counter), SCOID (Generic Data Element for GUID Fields (C22))... 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. .

SDLSDSH structure Technical Details:

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


SAP SDLSDSH 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 SDLSDSH 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
METHODMethod to be Executed During the Transfer of an Object CIFMETHODCHAR1CIFMETHOD
DOC_NUMBERDocument Number (Purchasing/Sales...) CIFDOCCHAR12CIFDELNR
ITM_NUMBERItem Number of Document (Purchasing, Sales...) CIFITEMNUMC6CIFDELPS
COUNTERInternal Counter CIFCOUNTINT410INT4
SCOIDGeneric Data Element for GUID Fields (C22) CIFGUID22CHAR22CIFGUID22
LOGSYLogical System: Source System for Transfer LOGSRCSYSCHAR10Assigned to domainALPHALOGSYS
VBELNCharacter Field of Length 12 CHAR12CHAR12CHAR12
VBELPSales document item VBELPNUMC6Assigned to domainPOSNR
ABARTRelease type ABARTCHAR1ABART
ABRUF17-Char. Field CHAR17CHAR17CHAR17
CPUDTDecimal field 15 char. long with sign DECV15DEC15DECV15
SYNCDDecimal field 15 char. long with sign DECV15DEC15DECV15
ABEIDTDecimal field 15 char. long with sign DECV15DEC15DECV15
ABEZTDecimal field 15 char. long with sign DECV15DEC15DECV15
ABEFZQuantity Field, Length 15 QUAN_15QUAN15(3) QUAN_15
ABHDTDecimal field 15 char. long with sign DECV15DEC15DECV15
ABFDADecimal field 15 char. long with sign DECV15DEC15DECV15
ABFDEDecimal field 15 char. long with sign DECV15DEC15DECV15
ABMDADecimal field 15 char. long with sign DECV15DEC15DECV15
ABMDEDecimal field 15 char. long with sign DECV15DEC15DECV15
LFNKDField of length 16 CHAR16CHAR16CHAR16
LFDAKDDecimal field 15 char. long with sign DECV15DEC15DECV15
LFMKDLast delivery quantity received by the customer LFMKDQUAN13(3) MENG13
DOCNUMChar 20 CHAR20CHAR20CHAR20
TERSLDate key for schedule line dates TERSLCHAR1TERSL
ABHORDecimal field 15 char. long with sign DECV15DEC15DECV15
KRITBKey for high priority stock KRITBCHAR1CHAR1
LABKYRequirements status key BSTASCHAR1CHAR1
ABRABDecimal field 15 char. long with sign DECV15DEC15DECV15
ABRBIDecimal field 15 char. long with sign DECV15DEC15DECV15
VBRSTCustomer point of consumption VBRSTCHAR14CHAR14
CYEFZCumulative quantity reached on date zero setting made CYEFZQUAN15(3) MENGV15
CYDATDecimal field 15 char. long with sign DECV15DEC15DECV15
MFLAUFMaterial go-ahead - validity period MFLAUFNUMC3NUM3
MFEINMaterial go-ahead - unit validity period MFEINCHAR1EHFR
FFLAUFProduction go-ahead - validity period FFLAUFNUMC3NUM3
FFEINProduction go-ahead - Unit validity period FFEINCHAR1EHFR
USR01Data Element Type CHAR Length 35 CHAR35CHAR35CHAR35
USR02Data Element Type CHAR Length 35 CHAR35CHAR35CHAR35
USR03Data Element Type CHAR Length 35 CHAR35CHAR35CHAR35
USR04Character Field Length = 10 CHAR10CHAR10CHAR10
USR05Character Field Length = 10 CHAR10CHAR10CHAR10
LFDNRCount Parameters NUMC04NUMC4NUMC4
PERIODField of type DATS DATSDATS8DATS

Key field Non-key field



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

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

How to access SAP table SDLSDSH

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

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