SAP DSVAS_STAB Copy of structure of table dsvassessadmin Table data and field list

DSVAS_STAB is a standard SAP Table which is used to store Copy of structure of table dsvassessadmin data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DSVAS_STAB table consists of various fields, each holding specific information or linking keys about Copy of structure of table dsvassessadmin data available in SAP. These include SESSNO (Character field 13 digits), BUNDLE_ID (Character field, 8 characters long), BUNDLE_VER (5 char. numeric NUMC), WATCHER (Character field length 12)... 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. .

DSVAS_STAB 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: Not classified


SAP DSVAS_STAB 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 DSVAS_STAB 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
SESSITYPEVersion Number Component CHAR2CHAR2CHAR2
SESSNO Character field 13 digits0
BUNDLE_IDCharacter field, 8 characters long CHAR8CHAR8CHAR8
BUNDLE_VER 5 char. numeric NUMC0
WATCHER Character field length 120
PLANNED_DAField of type DATS DATSDATS8DATS
STATUSSingle-Character Indicator CHAR1CHAR1CHAR1
RATINGSingle-Character Indicator CHAR1CHAR1CHAR1
CUSTOMERNOCharacter Field Length = 10 CHAR10CHAR10CHAR10
INSTNO10 digit number NUM10NUMC10NUM10
DBID3-Byte field CHAR3CHAR3CHAR3
DESCRIPTIO128 character CHAR128CHAR128CHAR128
CHANGE_USE Character field length 120
CHANGE_DATField of type DATS DATSDATS8DATS
CHANGE_TIMField of type TIMS TIMSTIMS6TIME
CREATION_U Character field length 120
CREATION_DField of type DATS DATSDATS8DATS
CREATION_TField of type TIMS TIMSTIMS6TIME
CONTRACTNOChar 20 CHAR20CHAR20CHAR20
EXTERNAL_IChar 20 CHAR20CHAR20CHAR20
EXTERNAL_SSingle-Character Indicator CHAR1CHAR1CHAR1
CO_SYSTEM_3-Byte field CHAR3CHAR3CHAR3
CO_INSTALLCharacter Field Length = 10 CHAR10CHAR10CHAR10
CO_USER Character field length 120
CO_DATEField of type DATS DATSDATS8DATS
CO_TIMEField of type TIMS TIMSTIMS6TIME
CO_SESSITYVersion Number Component CHAR2CHAR2CHAR2
CO_SESSNO Character field 13 digits0
CO_RFCDESTCharacter field, length 32 CHAR32CHAR32CHAR32
CI_SYSTEM_3-Byte field CHAR3CHAR3CHAR3
CI_INSTALLCharacter Field Length = 10 CHAR10CHAR10CHAR10
CI_USER Character field length 120
CI_DATEField of type DATS DATSDATS8DATS
CI_TIMEField of type TIMS TIMSTIMS6TIME
DL_CONTRACCharacter field, 8 characters long CHAR8CHAR8CHAR8
DL_DESCRCharacter field, 8 characters long CHAR8CHAR8CHAR8
DL_PERIODVersion Number Component CHAR2CHAR2CHAR2
DL_PROFILE30 Characters CHAR30CHAR30CHAR30
DL_VERSNR 0

Key field Non-key field



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

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

SELECT SINGLE *
FROM DSVAS_STAB
INTO CORRESPONDING FIELDS OF WA_DSVAS_STAB
WHERE...

How to access SAP table DSVAS_STAB

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

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