‎2008 May 30 8:40 AM
How to give more than one default value for a select-option field which has no intervals?
‎2008 May 30 8:45 AM
Hi,
Try like this....
select-options:s_matnr for mara-matnr default '10' to '20'.
Reward if helpful.
‎2008 May 30 8:45 AM
Hi,
1) first way:
create system variant for your programs.
(se38 variant with prefix name 'CUS&' )
in this variant fill selection-options with your default values.
create transaction (se93) for your report with this variant.
2) second way:
in INITIALIZATION event.
add code:
s_value-opti = 'EQ'.
s_value-sign = 'I'.
s_value-low = 'value1'.
append s_value.
s_value-low = 'value2'.
append s_value.
Best regards.
‎2008 May 30 8:45 AM
Hi,
Try like this....
select-options:s_matnr for mara-matnr default '10' to '20'.
Reward if helpful.
‎2008 May 30 8:47 AM
U can give it in Initialization ..
INITIALIZATION.
s_pernr-sign = 'I'.
s_pernr-option = 'EQ'.
s_pernr-low = '10000000'.
append s_pernr.
s_pernr-low = '10000001'.
append s_pernr.