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

2 parameters

Former Member
0 Likes
329

Hi,

How to design a selection screen with two parameters on the same line , like date: -


and date1: -


.

Thanks.

2 REPLIES 2
Read only

prasanth_kasturi
Active Contributor
0 Likes
314

hi

hi wite the two parameters between

selection-screen begin of line

and

selection-screen end of line.

example

SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS: r1 RADIOBUTTON GROUP g1 USER-COMMAND ucomm DEFAULT 'X'.

SELECTION-SCREEN COMMENT 3(17) text-002 FOR FIELD r1.

SELECTION-SCREEN POSITION 32.

PARAMETERS: r2 RADIOBUTTON GROUP g1 .

SELECTION-SCREEN COMMENT 34(17) text-003 FOR FIELD r2.

SELECTION-SCREEN END OF LINE.

here two radio buttons are coming side by side,

comment is used to write a text for the radio buttons

position is used to seperate the two radio buttons

regards

prasanth

Read only

Former Member
0 Likes
314

Hi,

REPORT YCHATEST LINE-SIZE 350.

SELECTION-SCREEN BEGIN OF BLOCK B1.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN POSITION 5.

PARAMETERS : P_VAR1(10).

SELECTION-SCREEN POSITION 35.

PARAMETERS : P_VAR2(10).

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B1.[/code]

Regards,

Raj.