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: 

how to format checkbox in selection-screen

Former Member
0 Kudos

hi,

how to format checkbox position in selection screen.

thanks,

nitin.

5 REPLIES 5

Former Member
0 Kudos

Hi Nitin,

Refer to this post.

If that does not sufficiently answer your question, please elaborate your requirement.

Regards,

Anand Mandalika.

Former Member
0 Kudos

Hi Nitin

If you want to concerned with positioning the checkbox

in a new line ..then this would help you..

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: P1 as checkbox .

SELECTION-SCREEN END OF LINE.

To determine the position od a checkbox within a same line..then..

selection-screen begin of line.

selection-screen position 25 .

parameters : cb2 as checkbox default 'X'.

selection-screen position 50.

parameters : cb1 as checkbox default 'X'.

selection-screen end of line.

Regards

Immanuel

Former Member
0 Kudos

hi nitin,

use the following.

1) If u have multiple checkboxes and want them in seperate lines:->

selection-screen: begin of block blk with frame.

parameters: p1 as checkbox value 'X',

p2 as checkbox,

p3 as checkbox.

selection-screen: end of block blk.

2) If u want more than one checkbox in the same line , then use 😆

selection-screen: begin of block blk with frame.

selection-screen: begin of line,

parameters: p1 as checkbox value 'X',

p2 as checkbox,

p3 as checkbox.

selection-screen:end of line,

selection-screen: end of block blk.

remember the checkbox whose value has the letter 'X' as beginning will be displayed with a TICK..

Hope it Helps !!!

Former Member
0 Kudos

hi nitin,

use the following.

1) If u have multiple checkboxes and want them in seperate lines:->

selection-screen: begin of block blk with frame.

parameters: p1 as checkbox value 'X',

p2 as checkbox,

p3 as checkbox.

selection-screen: end of block blk.

2) If u want more than one checkbox in the same line , then use 😆

selection-screen: begin of block blk with frame.

selection-screen: begin of line,

parameters: p1 as checkbox value 'X',

p2 as checkbox,

p3 as checkbox.

selection-screen:end of line,

selection-screen: end of block blk.

remember the checkbox whose value has the letter 'X' as beginning will be displayed with a TICK..

Hope it Helps !!!

Regards,

Sandeep Soman

Former Member
0 Kudos

Selection-Screen Begin of Block Test with frames.

PARAMETER: Temp as checkBox.

Selection-Screen End of Block Test.

Message was edited by: Suresh Krishnan