‎2006 Nov 04 4:04 AM
how to declare a select option for only low values.
i dont want higher values.only lower multiple values
‎2006 Nov 04 4:30 AM
hi,
declare select-optins with No Intervals
e.g.
SELECT-OPTIONS sel FOR f No Intervals.
‎2006 Nov 04 5:07 AM
hi,
chk this sample.
dont put <b><i>with</i></b> there, simply give <b><i>no-intervels</i></b><b><i>no-extension</i></b>
SELECT-OPTIONS : s_kunnr for kna1-kunnr <b>no intervels</b> <b>no-extension</b>.
data: itab type table of kna1 with header line.
select * from kna1 into table itab where kunnr between s_kunnr-low.
rgds
anver
if hlped pls mark points
Message was edited by: Anversha s
‎2006 Nov 04 12:16 PM
hi,
With <b>No Intervals</b> statement
Do this way ..
select-options : v_sel for mara-matnr no intervals.Reward if it helps
Regards,
Santosh
‎2006 Nov 04 12:34 PM
Hi,
use select-options:s_matnr for mara-matnr
no intervals.
Regards
amole
‎2006 Nov 04 2:19 PM
Hi...
for the selection screen field there are options like
sign, option, low, high.....
sample code.....
BKLAS-SIGN ='I'.
BKLAS-OPTION ='BT'.
BKLAS-LOW = 7900.
BKLAS-HIGH = 7920.
APPEND BKLAS.
Note: BKLAS is the field Give <field>-low = (ur value)
comment High...
Bye....