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

SCREEN parameters

abdulazeez12
Active Contributor
0 Likes
375

Hi

My requirement is as follows:

I have two radiobuttons Rb1 and rb2 on selection screen. I want to display/hide some portions of screen depending upon the radiobuttons selected..

For this purpse I am using LOOP AT SCREEN and SCREEN-INVISIBLE to display/hide and it is working fine..

The problem is that on the selection screen, if i double click on radiobutton, I am getting the screen change...but i want to see the change when the user makes a single clickon the radiobutton...how to achieve this

2 REPLIES 2
Read only

abdulazeez12
Active Contributor
0 Likes
348

Hey

Got the answer..

need to put "USER-COMMAND"..thats all

Thanks

Read only

Former Member
0 Likes
348

Hi

Use MODIF ID addition like:

REPORT demo_at_selection_screen_pbo.

PARAMETERS: test1(10) TYPE c MODIF ID sc1,

test2(10) TYPE c MODIF ID sc2,

test3(10) TYPE c MODIF ID sc1,

test4(10) TYPE c MODIF ID sc2.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF screen-group1 = 'SC1'.

screen-intensified = '1'.

MODIFY SCREEN.

CONTINUE.

ENDIF.

IF screen-group1 = 'SC2'.

screen-intensified = '0'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Thanks

Vasudha

Edited by: Vasudha L on Feb 19, 2008 10:47 AM