‎2008 Aug 26 11:10 PM
Hi All,
I have company code field on selection screen as parameter, where user was giving one value for it. Now user wants to give 1000 and 1100 for this field. How can I modify this?
Thanks,
Veni.
‎2008 Aug 26 11:20 PM
if my understand ing is correct then use select-options/select-options with no intervals
‎2008 Aug 26 11:20 PM
if my understand ing is correct then use select-options/select-options with no intervals
‎2008 Aug 26 11:59 PM
Hi,
I specified s_bukrs as select options. How can I give default values as 1000 and 1100 for this.
SELECT-OPTIONS : S_BUKRS FOR BSEG-BUKRS.
Thanks,
veni.
‎2008 Aug 27 12:12 AM
in INITIALIZATION event.
add code:
s_bukrs-option = 'EQ'.
s_bukrs-sign = 'I'.
s_bukrs-low = 'value1'.
append s_bukrs.
s_bukrs-low = 'value2'.
append s_bukrs.
*************
gues this doesnt suits ur requirement :
select-options:s_bukrs for bseg-bukrs default '1000' to '1100'.