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

Customizing Selection screen

Former Member
0 Likes
439

Hi all,

I wanted to customize selection screen. I have prepared a selection screen , which I have called using Call selection screen statement . Now I wanted to avoid check button on that particular selection screen.Please help me

Regards,

Prasad

3 REPLIES 3
Read only

Former Member
0 Likes
410
Hi

  I guess you can delete the same from the layout of the 
screen.

Kind Regards
Eswar
Read only

Former Member
0 Likes
410

Hi,

Modify the screen by making the check box invisible.

Rgds,

CK

Read only

0 Likes
410

Hi,

You can modify the screen..see example below:

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF screen-group1 = 'SC1'.

screen-invisible = '1'.

MODIFY SCREEN.

ENDIF.

IF screen-group1 = 'SC2'.

screen-invisible = '0'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

You can use Screen-Surname for field in place of screen-group1.

-Vishal