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

checkbox parameter align

Former Member
0 Likes
1,078

i have one parameter and one checkbox.

Customer want to display both Input parameter and checkbox Parameter

at same column at different line.

parameter----


Checkbox -O----

But now it appears like below

parameter -


O Checkbox.

checkbox displays in first column of the line.

How to align the checkbox button with parameter.

sorry for my poor explanation.

ambichan.

1 ACCEPTED SOLUTION
Read only

athavanraja
Active Contributor
0 Likes
475

Hi,

Here is the sample code.


 parameter: p_test(4) .
SELECTION-SCREEN BEGIN OF LINE.

  SELECTION-SCREEN COMMENT 1(33) TEXT-001 FOR FIELD P1.
  PARAMETERS: P1 as checkbox .
SELECTION-SCREEN END OF LINE.

Regards

Raja

1 REPLY 1
Read only

athavanraja
Active Contributor
0 Likes
476

Hi,

Here is the sample code.


 parameter: p_test(4) .
SELECTION-SCREEN BEGIN OF LINE.

  SELECTION-SCREEN COMMENT 1(33) TEXT-001 FOR FIELD P1.
  PARAMETERS: P1 as checkbox .
SELECTION-SCREEN END OF LINE.

Regards

Raja