SAP AD01STRUCTVAR Structuring Variants Table data and field list

AD01STRUCTVAR is a standard SAP Table which is used to store Structuring Variants data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The AD01STRUCTVAR table consists of various fields, each holding specific information or linking keys about Structuring Variants data available in SAP. These include UNAME (User Name), VARNAME (Variant), FIELDNAME (Field Name), FILTPRIO (Sequence for Structuring Dynamic Items)... 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. .

AD01STRUCTVAR table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP AD01STRUCTVAR 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 AD01STRUCTVAR 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
UNAMEUser Name SYUNAMECHAR12SYCHAR12
VARNAMEVariant AD01VARIANTCHAR14DIP_VARIANT
FIELDNAMEField Name FIELDNAMECHAR30Assigned to domainFDNAMEDFD
FILTPRIOSequence for Structuring Dynamic Items AD01FILPRINUMC3NUM3
FILTSETCLSet class SETCLASSCHAR4Assigned to domainSETCLASSGSC
FILTSETTABTable for set SETTABLECHAR30Assigned to domainAS4TABGLU
FILTSETNRSet Name SETNAMENEWCHAR24SETNAMEGSE
FILTSETIDIdentification of a set SETIDCHAR34SETIDGSI
DYNPSETTABTable for set SETTABLECHAR30Assigned to domainAS4TABGLU
EXPIN1Flag: Characteristic can be expanded according to sets RKE_AUFLOSCHAR1XFLAG
EXPIN2Flag: Break characteristic down to single values RKE_NEINZWCHAR1XFLAG
EXPIN3Indicator: Characteristic cannot be expanded RKE_KAUFLOCHAR1XFLAG
SUM_FROMSummarization interval for report (from level) AD01SUM_FRNUMC2AD01SUM_LV
SUM_TOSummarization interval for report (to level) AD01SUM_TONUMC2AD01SUM_LV
VVALUESSingle Value Indicator SIVALCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM AD01STRUCTVAR
INTO CORRESPONDING FIELDS OF WA_AD01STRUCTVAR
WHERE...

How to access SAP table AD01STRUCTVAR

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

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