cancel
Showing results for 
Search instead for 
Did you mean: 

Creating default values for a variable!!!!!

Former Member
0 Kudos

hi all,

i have to create a report. Here i have a requirement of creating a variable.

The criteria is optional and the user need to select one or more values from a pick list. and in the default values we have to select five values.

But the problem here is i have selected multiple single values and then i am trying to enter more than one value in the Default values tab, it is not allowing me to do the same.

can anyone help plz

thanks

rani.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello rani,

You can also create une customer exit variable, and implement that way for exemple :

WHEN 'YOUR_VARIABLE'.

l_s_range-low = 'VALUE1'.

l_s_range-sign = 'I'.

l_s_range-opt = 'CP'.

APPEND l_s_range TO e_t_range.

l_s_range-low = 'VALUE2'.

l_s_range-sign = 'I'.

l_s_range-opt = 'CP'.

APPEND l_s_range TO e_t_range.

l_s_range-low = 'VALUE3'.

l_s_range-sign = 'I'.

l_s_range-opt = 'CP'.

APPEND l_s_range TO e_t_range.

Hope this helps.

DP

Former Member
0 Kudos

Rani,

Yes, you can do this by going to the default values tab area.. By the way are you working on BI7 or else 3.x??? so that i can give you the step where you need to go and how to do that..

Gattu

Former Member
0 Kudos

hi,

i am using 3.5 version. So plz tell me

thanks

Rani