cancel
Showing results for 
Search instead for 
Did you mean: 

RadioButtons and CheckBoxes

Former Member
0 Kudos

Hi,

How can we put multiple Radiobuttons and Checkboxes of a SELECTION-SCREEN in single lines. Like I have three Radio Buttons now they appear in consecutive lines when declared normally. How can I put them in One line.

The same is for the Checkboxes.

Thanks in Advance...

Arunava

Accepted Solutions (1)

Accepted Solutions (1)

horst_keller
Product and Topic Expert
Product and Topic Expert
0 Kudos

Tip: have a look into the ABAP documentation ...

<b>SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: para1 AS CHECKBOX.

SELECTION-SCREEN COMMENT 3(10) text1.

PARAMETERS: para2 AS CHECKBOX.

SELECTION-SCREEN COMMENT 16(10) text2.

PARAMETERS: para3 AS CHECKBOX.

SELECTION-SCREEN COMMENT 29(10) text3.

SELECTION-SCREEN END OF LINE.

INITIALIZATION.

text1 = 'one'.

text2 = 'two'.

text3 = 'three'.</b>

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks Horst.

I got my answer...

Regards,

Arunava