‎2007 Jun 23 8:08 AM
hi,
i want to set default range for material in my select-options s_matnr.
range for both <b>equal to</b> and <b>not equal to</b>.
what shoud i write in INITIALIZATION event.
thanks
raj
‎2007 Jun 23 8:27 AM
Suppose you want to set the default range is 100 to 500.
INITIALIZATION.
s_matnr-low = '100'.
s_matnr-high = '500'
‎2007 Jun 23 8:27 AM
Suppose you want to set the default range is 100 to 500.
INITIALIZATION.
s_matnr-low = '100'.
s_matnr-high = '500'
‎2007 Jun 23 8:29 AM
hi,
at a time u can set onlu eq or ne.
chk out this:
initialization.
s_matnr-sign = 'EQ'. or 'NE'.
s_matnr-low = '111'.
s_matnr-high = '333'.
‎2007 Jun 23 8:35 AM
Hei, ignore my previous mail.
the following will work:
REPORT ztest1 .
tables: mara.
select-options: s_matnr for mara-matnr.
INITIALIZATION.
s_matnr-low = '100'.
s_matnr-high = '500' .
s_matnr-SIGN = 'I'.
s_matnr-OPTION = 'EQ'.
APPEND s_matnr.
‎2007 Jun 23 8:33 AM