Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

select-options

Former Member
0 Likes
646

how to declare a select option for only low values.

i dont want higher values.only lower multiple values

5 REPLIES 5
Read only

Former Member
0 Likes
608

hi,

declare select-optins with No Intervals

e.g.

SELECT-OPTIONS sel FOR f No Intervals.

Read only

anversha_s
Active Contributor
0 Likes
608

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

Read only

Former Member
0 Likes
608

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

Read only

Former Member
0 Likes
608

Hi,

use select-options:s_matnr for mara-matnr

no intervals.

Regards

amole

Read only

Former Member
0 Likes
608

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....