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: 

radio buttons

Former Member
0 Kudos

hi

in normal screen i am putting the test sales document for these two radio buttons is there.(one is yes and one is no),

in the out put both radio buttons are selecting. i need to select only one. but default its selected two radio buttons.

thanks

1 ACCEPTED SOLUTION

satsrockford
Active Participant
0 Kudos

hi

In the Screen Painter, highlight both radio buttons at the same time (using CNTL key).

From menu bar, choose: Edit > Grouping > Radio Button Group > Define.

Now they are "linked" to each other.

Don;t forget those points.

Regards

Satish

10 REPLIES 10

Former Member
0 Kudos

Hi

Check if ur statement is in the same format:

This is an example I am showing here:

PARAMETERS: FLATF RADIOBUTTON GROUP RAD1 USER-COMMAND X,
            UNIXF RADIOBUTTON GROUP RAD1 .

Regards,

Vishwa.

Former Member
0 Kudos

Hi,

Use this..


PARAMETERS: p1 RADIOBUTTON GROUP g1,
            p2 RADIOBUTTON GROUP g1.

Former Member
0 Kudos

Hi,

Check Whether both the radio button groups are assigned as same or not?

Former Member
0 Kudos

Hi,

Have you grouped both the radiobuttons:

For example:

parameters:

p_a1 as radiobutton group grp,

p_a2 as radiobutton group grp.

Both should be in one group.

Thanks & Regards,

Navneeth K.

GauthamV
Active Contributor
0 Kudos

hi,

try this.


parameters: p1 RADIOBUTTON GROUP rad2 modif id sc1,
            p2 RADIOBUTTON GROUP rad2 modif id sc1 default 'X'.

satsrockford
Active Participant
0 Kudos

hi

In the Screen Painter, highlight both radio buttons at the same time (using CNTL key).

From menu bar, choose: Edit > Grouping > Radio Button Group > Define.

Now they are "linked" to each other.

Don;t forget those points.

Regards

Satish

Former Member
0 Kudos

Hi preeti,

check std program DEMO_DYNPRO_CHECK_RADIO.

Regards,

Amit

Former Member
0 Kudos

HIIIIIII

PROBELM IS U ARE NOR ASSIGNED A GROUP FOR YOUR RADIO BUTTON

IF U R CREATING RADIAO BUTTON THRU SCREEN PAINTER FIRST U SEELCT ALL UR RADIO BUTTON THEN A RIGHT CLICK AND ASSIGN A GROUP

IF U R CRETING A RADIO BUTTON IN SELECTION SCREEN

THEN JUST USE SIMPLE COMMAND.....

HOPE IT HELP U.

THANKS AND REGARD

VIKALP

Former Member
0 Kudos

If you are workin on module pool screen, then select both the radio buttons, right click and select define radiobutton group.

Former Member
0 Kudos

Hi shaine,

Put both radio button in group then you got one default selected.

Regards

Alok