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

Parameter Accepting Multiple Single Values Only

Former Member
0 Likes
426

I need to define a parameter that accepts multiple single values only but does not accept ranges or negations. Basically I only want the first tab of the Select-Options screen. Is this possible?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
399

Check FM SELECT_OPTIONS_RESTRICT. It's well documented.

Rob

Edited by: Rob Burbank on Jun 24, 2009 3:12 PM

2 REPLIES 2
Read only

Former Member
0 Likes
400

Check FM SELECT_OPTIONS_RESTRICT. It's well documented.

Rob

Edited by: Rob Burbank on Jun 24, 2009 3:12 PM

Read only

former_member189420
Active Participant
0 Likes
399

Hello,

Create a select-option as s_mara.

At selection-screen output.

loop at screen.

if screen-fieldname = s_mara-high.

screen-invisible = '1'.

modify screen.

endif.

Try this. Hope this helps.

Thanks & Regards,

Anand Patil