2009 May 08 7:28 AM
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
2009 May 08 7:34 AM
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
2009 May 08 7:35 AM
2009 May 08 7:46 AM
Hi,
Use the following code.
data a type i.
select-options b for a.