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

Module pool

Former Member
0 Likes
943

Hi,

Can anyone please tell while creating radiobutton's on Module- pool Screen say R1 and R2, how to assign the both to a common function group and how to make the display with R1 defaultly checked where as R2 remains un checked.

Regards,

Ram.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
919

This message was moderated.

9 REPLIES 9
Read only

Former Member
0 Likes
919

Hello.

To assign to a common function group, just select both in the screen painter, and with right mouse button select that option.

Regarding it's values, in initialization event (for example, just have to be before the buttons appear first time), just put r1 = 'X' and r2 = space.

Anju

Read only

0 Likes
919

What a shame Anju, copying others text!!!

In previous thread created i wrote:

"Hello.

To assign to a common function group, just select both in the screen painter, and with right mouse button select that option.

Regarding it's values, in initialization event (for example, just have to be before the buttons appear first time), just put r1 = 'X' and r2 = space.

Regards.

Valter Oliveira."

WHAT A GOOD WAY TO WIN POINTS ... CONGRATS !!!

Regards.

Read only

Former Member
0 Likes
919

hi,

SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.

parameters: p_type radiobutton group grp1 DEFAULT 'X',

p_reason radiobutton group grp1.

SELECTION-SCREEN END OF BLOCK out.

REGARDS,

SANDEEP

Edited by: Sandeep patel on Jul 8, 2008 5:31 PM

Read only

Former Member
0 Likes
920

This message was moderated.

Read only

Former Member
0 Likes
919

Hi

Go to screen

select al radio buttons, right click, radio button group, define.

and for dfault value

in top define

data: r1 type c value 'X'.

Aditya

Read only

Former Member
0 Likes
919

Hi,

First Select Both of the radiobutton using CNTL Key.Now after right click There is a Option 'Radio Button Group'.

After that Select 'Define'.

Now put this Group In the Attribute list of Both The Radiobutton.In the Attribute list There is 4 Group Box.

Write the group name.

For Default value write it in PBO.

Regards,

Sujit

Read only

Former Member
0 Likes
919

Hi,

SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.

parameters: p_type radiobutton group grp1 DEFAULT 'X',

p_reason radiobutton group grp1.

SELECTION-SCREEN END OF BLOCK out.

p_type = 'X' and p_reason = space.

Regards,

Khushbu.

Read only

Former Member
0 Likes
919

This message was moderated.

Read only

Former Member
0 Likes
919

Hi

Select those two radiobuttons by dragging & rightclick, u'l get an option called 'Define radio button group' , select that one.

Regards

Abaper