Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP table for variant attributes

Former Member
0 Likes
6,743

Hi,

We need to find all the variants which are using a particulay variable in TVARV table. Is there any SAP table which stores variant attributes?

Thanks,

Mano.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,823

Hi Manohar,

SAP Table for variant data is VARI, but we cant directly check if Selection variable ( Type T ) is assigned or not as the data is stored in RAW format. You can write a simple program to display all the variants with selection variables. Get all the records from table VARI and for each record get the selection variable data through FM "RS_VARIANT_VARIABLES" (FM return Type T Variables ) and check if it matches the variable you are looking for.

Hi,

We need to find all the variants which are using a particulay variable in TVARV table. Is there any SAP table which stores variant attributes?

Thanks,

Mano.

1 REPLY 1
Read only

Former Member
0 Likes
2,824

Hi Manohar,

SAP Table for variant data is VARI, but we cant directly check if Selection variable ( Type T ) is assigned or not as the data is stored in RAW format. You can write a simple program to display all the variants with selection variables. Get all the records from table VARI and for each record get the selection variable data through FM "RS_VARIANT_VARIABLES" (FM return Type T Variables ) and check if it matches the variable you are looking for.