‎2007 May 16 12:13 PM
Hello Friends,
I have one select -options statement along with initialization event,
now i don't want to show select options screen while executing,but the output should be displayed based on the values given in initialization event(low and high)?
PLs let me knw how this can be done
Thanks in advance.
Sunny
‎2007 May 16 12:17 PM
hi sunny,
write code as
at selection-screen event.
loop at screen.
if screen-name = 'select-option variable name'.
screen-input = 0.
modify screen.
endif.
endloop.
if helpful reward some points.
with regards,
suresh babu aluri.
‎2007 May 16 12:18 PM
Hi,
Use <b>NO-DISPLAY</b> option addition to Select-Option statement .
Regards,
Balavardhan.K
‎2007 May 16 12:19 PM
‎2007 May 16 12:21 PM
use modif id along with select-option.
select-options <s_name> for <field name> modif id PI.
then check ur low & high value in if condition
at selection-screen output.
if condition.
loop at screen.
if screen-group1 = 'PI'.
screen-input = '0'.
modify screen.
endif.
endloop.
else..
condition.
endif.
endif.
‎2007 May 16 12:21 PM
give modif id in select-options
Sample code
tables mara.
select-options s_matnr for mara-matnr modif id m01.
at selection-screen output.
loop at screen.
if screen-group1 = 'M01'
screen-output = '0'.
modify screen.
endif.
endloop.
‎2007 May 16 12:21 PM
hi,
select-options : s_matnr for mara-matnr No-display.
Reward with points if helpful.
Message was edited by:
Vinutha YV
‎2007 May 16 12:24 PM
Hi,
Use
Select-options: s_matnr for mara-matnr NO-DISPLAY. "use no-display option to achieve thisJogdand M B
‎2007 May 22 9:31 AM