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

hi

Former Member
0 Likes
456

My requirement is to print 2 or 3 select options or parameteres in oneline only...not as regularly one by one....plz..its urgent n will be rewarded with points.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
441

Hi,

Use

<b>selection-screem begin of line.</b>

write your parameters and select options

<b>selection-screen end of line.</b>

rewards if useful,

regards,

nazeer

My requirement is to print 2 or 3 select options or parameteres in oneline only...not as regularly one by one....plz..its urgent n will be rewarded with points.

2 REPLIES 2
Read only

Former Member
0 Likes
442

Hi,

Use

<b>selection-screem begin of line.</b>

write your parameters and select options

<b>selection-screen end of line.</b>

rewards if useful,

regards,

nazeer

Read only

Former Member
0 Likes
441

Hi,

Here is the code.

TABLES:

SPFLI.

PARAMETERS:

p_num TYPE zde111.

SELECTION-SCREEN BEGIN OF LINE.

SELECT-OPTIONS:

S_RANGE1 FOR SPFLI-CARRID,

S_RANGE2 FOR SPFLI-CARRID.

SELECTION-SCREEN END OF LINE.

You can even maintain comments to your parameters/select options as belo:

SELECTION-SCREEN COMMENT /1(50) comm1 MODIF ID mg1.

SELECTION-SCREEN ULINE.

SELECTION-SCREEN SKIP.

SELECTION-SCREEN COMMENT /1(30) comm2.

SELECTION-SCREEN ULINE /1(50).

PARAMETERS: r1 RADIOBUTTON GROUP rad1,

r2 RADIOBUTTON GROUP rad1,

r3 RADIOBUTTON GROUP rad1.

SELECTION-SCREEN ULINE /1(50).

AT SELECTION-SCREEN OUTPUT.

comm1 ='Selection Screen'.

comm2 ='Select one'.

LOOP AT SCREEN.

IF screen-group1 = 'MG1'.

screen-intensified = '1'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Hope this also help you much.

Regards,

Rama.Pammi.