‎2007 Jun 19 1:36 PM
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?
‎2007 Jun 19 2:14 PM
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
‎2007 Jun 19 2:25 PM
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
‎2007 Jun 19 2:34 PM
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!!