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

populating select-options in a variant through selection variable

Former Member
0 Likes
735

I have a select-options on the selection screen of a report. I have created a variant for this report. Now i want to populate this variant field through selection variable (entries of table TVARVC). How can i manage to populate multiple values in this. Suppose i want the variant to hold a range of values, how do i set the variable in the table so that the multiple values can be set dynamically?

3 REPLIES 3
Read only

Former Member
0 Likes
572

use

select option low sign

ex: matnr-low = '88888'

append matnr.

matnr-low = '99999'

append matnr.

like this you have to append all field contents

and populate

Read only

0 Likes
572

Hi Ravi,

I know how to populate select-options but i want to know how to set up the selection variable in table TVARVC for using it in populating a select-option in a report variant. we populate these selection variables using the transaction STVARV where we specify a value against a particular variable. How can this variable multiple values (for example a range) so that a select-option can be populated dynamically through this?

regards,

Priyank

Read only

0 Likes
572

i figured out. I only referred to the transaction STVARV earlier. Now that i see the structure of the TVARVC table, i get the answer.

thanks!!