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

parameters

Former Member
0 Likes
536

hi experts,

we have two parameters in selection screen.by default they appear one after other in selection screen. but i want to dispaly the both on sameline.how?

thanks in advance.

1 ACCEPTED SOLUTION
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
513

Hi,

Use begin of line in selection screen.

SELECTION-SCREEN BEGIN OF LINE.

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

PARAMETERS: P1(3), P2(5), P3(1).

SELECTION-SCREEN END OF LINE.

5 REPLIES 5
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
514

Hi,

Use begin of line in selection screen.

SELECTION-SCREEN BEGIN OF LINE.

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

PARAMETERS: P1(3), P2(5), P3(1).

SELECTION-SCREEN END OF LINE.

Read only

Former Member
0 Likes
513

Hi Surendara,

Please use the following syntax. It will helps to you.

SELECTION-SCREEN BEGIN OF LINE.

define ................. your components (i.e. two components

SELECTION-SCREEN END OF LINE.

Regards

Bhupal Reddy

Read only

Former Member
0 Likes
513

HI,

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN POSITION 2.

PARAMETERS: r1 RADIOBUTTON GROUP r.

SELECTION-SCREEN POSITION 25.

PARAMETERS: r2 RADIOBUTTON GROUP r.

SELECTION-SCREEN POSITION 45.

PARAMETERS: p1(5) type c.

SELECTION-SCREEN POSITION 65.

PARAMETERS: p2(5) type c.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK b1.

Regards,

Laxmi.

Read only

anversha_s
Active Contributor
0 Likes
513

hi,

chk this.

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
PARAMETERS: name1.
SELECTION-SCREEN POSITION 18.
PARAMETERS: name2.
SELECTION-SCREEN COMMENT 20(10) TEXT-002 FOR FIELD c2.
SELECTION-SCREEN END OF LINE.

rgds

Anver

Read only

Former Member
0 Likes
513

HI

USE

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN END OF LINE.

regards

USman