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

Using select-options and screen-required = 2.

Former Member
0 Likes
3,109

Hi all,

I want to just show the select-options low field as a mandatory field in the selection screen. I can't declare it obligatory as per the requirements.

When using screen-required = 2 while looping at screen, I am getting check symbol in both low and high field.

I want to keep it only in low. Is this possible?

Thanks,

Nishit Bagaria

3 REPLIES 3
Read only

laurent_fournier2
Contributor
0 Likes
1,552

Use this :

select-OPTIONS : s_tt for t001-bukrs.


at SELECTION-SCREEN OUTPUT.

  loop at screen.
   if screen-name = 'S_TT-LOW'.
    screen-required = 2.
    modify : screen.
   endif.
endloop.

Read only

0 Likes
1,552

Thanks a lot Laurent..

Read only

Former Member
0 Likes
1,552

Hi,

Not sure to get what you're trying to achieve?

What about: SELECT-OPTIONS: so_opt FOR g_opt NO INTERVALS OBLIGATORY ??

Cheers,

Manu.