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

radio button

Former Member
0 Likes
616

hi all,

i modified a layout for screen which add 2 radio button.

how can i set just one radio button marked

when i enter the transactin. so user can choose

which one to tick?

my screen both radiobutton are active(marked)

when i enter the transaction.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
594

Hi

You ned to group the radio button. Select both radio buttons on screen, right click, select, group them.

Regards

Aditya

4 REPLIES 4
Read only

Former Member
0 Likes
595

Hi

You ned to group the radio button. Select both radio buttons on screen, right click, select, group them.

Regards

Aditya

Read only

Former Member
0 Likes
594

Hi

Use the GROUP addition to the declaration and give the same group name to the both RADIO BUTTONS( if you are using PARAMETER KEY Word)

if in SCREEN painter go to EDITGROUPINGRADIOBUTTON-DEFINE

Regards

Ramchader Rao.K

Edited by: ramchander krishnamraju on Dec 10, 2008 7:23 AM

Read only

Former Member
0 Likes
594

use this logic. u have to define all radio buttons into same group name.

SELECTION-SCREEN: BEGIN OF LINE.

parameters: EP radiobutton group G2,

AP radiobutton group G2,

GB radiobutton group G2 default 'X'.

Regards,

Ajay

Read only

Former Member
0 Likes
594

Hi,

Do as per below,

parameters : radio1 type c radiobutton group gp1,

radio2 type c radiobutton group gp1.

Here, there are 2 radio buttons which are under same group gp1, so that at a time only one get selected.

Thanks,

Prajakta.