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

selection screen field

Former Member
0 Likes
461

Hi All,

I have company code field on selection screen as parameter, where user was giving one value for it. Now user wants to give 1000 and 1100 for this field. How can I modify this?

Thanks,

Veni.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
434

if my understand ing is correct then use select-options/select-options with no intervals

3 REPLIES 3
Read only

Former Member
0 Likes
435

if my understand ing is correct then use select-options/select-options with no intervals

Read only

0 Likes
434

Hi,

I specified s_bukrs as select options. How can I give default values as 1000 and 1100 for this.

SELECT-OPTIONS : S_BUKRS FOR BSEG-BUKRS.

Thanks,

veni.

Read only

0 Likes
434

in INITIALIZATION event.

add code:

s_bukrs-option = 'EQ'.

s_bukrs-sign = 'I'.

s_bukrs-low = 'value1'.

append s_bukrs.

s_bukrs-low = 'value2'.

append s_bukrs.

*************

gues this doesnt suits ur requirement :

select-options:s_bukrs for bseg-bukrs default '1000' to '1100'.