‎2012 Jul 19 9:23 AM
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
‎2012 Jul 19 9:34 AM
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.
‎2012 Jul 19 9:47 AM
‎2012 Jul 19 9:35 AM
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.