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: 

parameters

Former Member
0 Kudos
99

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

jayanthi_jayaraman
Active Contributor
0 Kudos
76

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

jayanthi_jayaraman
Active Contributor
0 Kudos
77

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.

Former Member
0 Kudos
76

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

Former Member
0 Kudos
76

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.

anversha_s
Active Contributor
0 Kudos
76

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

Former Member
0 Kudos
76

HI

USE

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN END OF LINE.

regards

USman