Application Development 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: 

Module Pool radio Button

Former Member
0 Kudos

Hi all

can any one tel the solution for me

i created a screen with 5 radio buttons and i group then and is that possible with out defalut selection of a radio button.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

It is not possible to have radiobutton without default selection.

If reqrmnt is such then use check boxes with validation to select maximum 1.

7 REPLIES 7

Former Member
0 Kudos

It is not possible to have radiobutton without default selection.

If reqrmnt is such then use check boxes with validation to select maximum 1.

Former Member
0 Kudos

HI Chitti,

its not possible to create radiobutton without default selection.

however you can use check box.

and put validation in at selection screen output.

Regards,

Vijay

Former Member
0 Kudos

Hi,

It is not possible.

But still try this thing,

Clear all radio Button after INITIALIZATION.

Thanks & regards,

ShreeMohan

Former Member
0 Kudos

Hi,

You can do one thing,

create 5 group of radio button where in each group u have 2 radio button.

Now Make invisable to radiobutton of each group which is marked or clicked.

Now you will able to see only radiobutton which are unchecked.

For example

R1 Group1 X

R2 Group1

R3 Group2 X

R4 Group2

R5 Group3 X

R6 Group3

R7 Group4 X

R8 Group4

R9 Group5 X

R10 Group5

You will make Radiobutton R1, R3, R5, R7, R9 invissiable.

0 Kudos

Why not have 6 radio buttons and hide the first one only instead of 5 separate radio button groups

Anyways u cannot use No-Display with radio button group

0 Kudos

Hi,

Hi,

You can do it by.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

CASE screen-group1 .

WHEN 'G1'.

IF x_param EQ 'X'.

screen-active = 1.

ELSE.

screen-active = 0.

ENDIF.

WHEN 'G2'.

IF x_param EQ 'X'.

screen-active = 0.

ELSE.

screen-active = 1.

ENDIF.

WHEN OTHERS.

ENDCASE.

MODIFY SCREEN.

ENDLOOP.

0 Kudos

Well I am pretty sure you dont run and try ur code before publishing here...

Just try it out.