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

VARID like table

Former Member
0 Likes
3,661

Which SAP table saves the report variant details like sign,high and low value ?

VARID saves the variant details but does not save the sign,low & high value

Thanks&regards,

Jagan.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,975

It looks like all the data is stored in VARI but in an encoded format in

field CLUSTR.

Just set a breakpoint where your program selects from table VARI and

find out how it parses the CLUSTR field into your

select-options/parameters.

Cheers,

Chaitanya.

It looks like all the data is stored in VARI but in an encoded format in

field CLUSTR.

Just set a breakpoint where your program selects from table VARI and

find out how it parses the CLUSTR field into your

select-options/parameters.

Cheers,

Chaitanya.

2 REPLIES 2
Read only

Former Member
0 Likes
1,976

It looks like all the data is stored in VARI but in an encoded format in

field CLUSTR.

Just set a breakpoint where your program selects from table VARI and

find out how it parses the CLUSTR field into your

select-options/parameters.

Cheers,

Chaitanya.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,975

The data of the variant is stored in table VARI (cluster/pool table) to read or update the data use the function modules of group SVAR,

Tables

Header VARID "Variant directory"

Text VARIT "Variant texts"

Data VARI "ABAP/4: Variant storage (similar to INDX)"

Function Modules

RS_VARIANT_LIST

RS_VARIANT_CHANGE

RS_VARIANT_CONTENTS

RS_VARIANT_COPY.

etc.

Regards