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

Integer type i value in the selection screen as range with low high values

Madhurivs23
Participant
0 Likes
3,292

Hi All,

I want to add the integer value in the selection screen with low high values

How to do it?

Thannks in advance,

Rgds,

Madhuri

Hi All,

I want to add the integer value in the selection screen with low high values

How to do it?

Thannks in advance,

Rgds,

Madhuri

3 REPLIES 3
Read only

Former Member
0 Likes
1,442

Hi,

wecan fill the selection-screen values as

SUBMIT... [VIA SELECTION-SCREEN]

[USING SELECTION-SET <var>]

[WITH <sel> <criterion>]

[WITH FREE SELECTIONS <freesel>]

[WITH SELECTION-TABLE <rspar>].

DATA :int TYPE i.

RANGES: r_num FOR int.

r_num-sign = 'I'.

r_num-option = 'BT'.

r_num-low = 1.

r_num-high = 10.

use this ranges in the above syntax.

Regards,

jaya

Read only

former_member242255
Active Contributor
1,442

DATA: w_num TYPE i.

SELECT-OPTIONS: s_num FOR w_num.

Read only

Former Member
1,442

Hi,

Use the following code.

data a type i.

select-options b for a.