2007 Aug 03 5:54 AM
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.
2007 Aug 03 5:56 AM
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
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
2007 Aug 03 5:56 AM
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
2007 Aug 06 11:29 AM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |