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
554

Hi,

How to design a selection screen with 2 parameters on the same line, like date1: and date2: .

Thanks.

4 REPLIES 4
Read only

Former Member
0 Likes
536

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT (31) text-001.

PARAMETERS: p_per_fr TYPE jahrperbl. " start per

SELECTION-SCREEN POSITION 52.

SELECTION-SCREEN COMMENT (5) text-002. " end period

PARAMETERS: p_per_to TYPE jahrperbl.

SELECTION-SCREEN END OF LINE.

where text-001 = Sales Period (Max 16)

text-002 = to

Read only

prasanth_kasturi
Active Contributor
0 Likes
536

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_member188829
Active Contributor
0 Likes
536

Hi,

selection-screen begin of line .

parameters :Date1 type d.

parameters:Date2 type d.

selection-screen end of line.

Read only

Former Member
0 Likes
536

hi

use

. SELECTION-SCREEN BEGIN OF LINE.

parameters: a type i,

b type i.

SELECTION-SCREEN END OF LINE.

regards,

chandu