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
433

how to get 3 or 4 parameters in single line?

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
403

You should use the SELECTION-SCREEN BEGIN OF LINE statement.




selection-screen begin of line.
parameters: p_check1 type c.
parameters: p_check2 type c.
parameters: p_check3 type c.
parameters: p_check4 type c.
selection-screen end of line.

Did I pass the test yet?

Regards,

Rich heilman

3 REPLIES 3
Read only

Former Member
0 Likes
403

Hi,

Use the following code.

Seleciton-screen begin of line.

parameters : p1 type <type1>,

p2 type <type2>

selection-screen end of line.

Regards,

Vara

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
404

You should use the SELECTION-SCREEN BEGIN OF LINE statement.




selection-screen begin of line.
parameters: p_check1 type c.
parameters: p_check2 type c.
parameters: p_check3 type c.
parameters: p_check4 type c.
selection-screen end of line.

Did I pass the test yet?

Regards,

Rich heilman

Read only

rahulkavuri
Active Contributor
0 Likes
403

use this code

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN POSITION 1.

SELECTION-SCREEN COMMENT 1(10) TEXT-R01 FOR FIELD BUY.

PARAMETERS: BUY RADIOBUTTON GROUP G1.

SELECTION-SCREEN POSITION 16.

SELECTION-SCREEN COMMENT 16(10) TEXT-R02 FOR FIELD SELL.

PARAMETERS: SELL RADIOBUTTON GROUP G1.

SELECTION-SCREEN END OF LINE.