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

check box in selection screen

Former Member
0 Likes
81,490

Hi,

i want the checkbox on the right side on my selection screen, the check box should be displayed after the label..

my code now :

PARAMETERS : p_vornr AS CHECKBOX default 'X' .

O/P

CHECKBOX P_VORNR IS DISPLAYED

MY REQUIREMENT

P_VORNR CHECKBOX TO BE DISPLAYED

1 ACCEPTED SOLUTION
Read only

Former Member
28,674

Check the sample program: DEMO_SEL_SCREEN_BEG_OF_LINE_1 to get multiple screen elements in a single line.

YOu can put your Parameter statment and the screen comment in between

SELECTION-SCREEN BEGIN OF LINE.

and

SELECTION-SCREEN END OF LINE.

Regards,

Ravi Kanth Talagana

Hi,

i want the checkbox on the right side on my selection screen, the check box should be displayed after the label..

my code now :

PARAMETERS : p_vornr AS CHECKBOX default 'X' .

O/P

CHECKBOX P_VORNR IS DISPLAYED

MY REQUIREMENT

P_VORNR CHECKBOX TO BE DISPLAYED

6 REPLIES 6
Read only

Former Member
28,675

Check the sample program: DEMO_SEL_SCREEN_BEG_OF_LINE_1 to get multiple screen elements in a single line.

YOu can put your Parameter statment and the screen comment in between

SELECTION-SCREEN BEGIN OF LINE.

and

SELECTION-SCREEN END OF LINE.

Regards,

Ravi Kanth Talagana

Read only

Former Member
0 Likes
28,674

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : p_vornr AS CHECKBOX default 'X' .

SELECTION-SCREEN END OF LINE.

Read only

Former Member
0 Likes
28,674

Ok..try this..


SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: COMMENT 2(20) text.

PARAMETERS para AS CHECKBOX.
SELECTION-SCREEN : END OF LINE.

INITIALIZATION .

  text = 'Label'.

Read only

former_member188829
Active Contributor
0 Likes
28,674

Hi,

Check this example..

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 10(20) TEXT-001.

PARAMETERS A1 AS CHECKBOX.

SELECTION-SCREEN END OF LINE.

Double click on TEXT-001 and give your Text.

Read only

Former Member
0 Likes
28,674

Hi,

Use the below statements...

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT.

PARAMETERS.

SELECTION-SCREEN END OF LINE.

Rgds,

Bujji

Read only

Former Member
0 Likes
28,674

This message was moderated.