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

hide a selection screen

Former Member
0 Likes
883

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

8 REPLIES 8
Read only

Former Member
0 Likes
862

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.

Read only

Former Member
0 Likes
862

Hi,

Use <b>NO-DISPLAY</b> option addition to Select-Option statement .

Regards,

Balavardhan.K

Read only

Former Member
0 Likes
862

Hello,

use select-options :----


No-display

Regards,

Deepu.k

Read only

Former Member
0 Likes
862

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.

Read only

Former Member
0 Likes
862

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.

Read only

Former Member
0 Likes
862

hi,

select-options : s_matnr for mara-matnr No-display.

Reward with points if helpful.

Message was edited by:

Vinutha YV

Read only

Former Member
0 Likes
862

Hi,

Use

Select-options: s_matnr for mara-matnr NO-DISPLAY. "use no-display option to achieve this

Jogdand M B

Read only

Former Member
0 Likes
862

done