2008 May 14 9:27 AM
Hi,
I am working in sap 3.1 version. there I required radio button and select options in same line. here begin of line is not allowing for select options.
Thanks,
suma
Hi,
I am working in sap 3.1 version. there I required radio button and select options in same line. here begin of line is not allowing for select options.
Thanks,
suma
2008 May 14 9:40 AM
Hi,
Hope the below code helps you.
SELECTION-SCREEN BEGIN OF LINE.
*SELECTION-SCREEN COMMENT [/][pos](len)
{text|{[text] FOR FIELD sel}}
[VISIBLE LENGTH vlen]
[MODIF ID modid]
[ldb_additions].
parameters: p1 radiobutton group 1,
p2 radiobutton group 1.
select-options s_date for sy-datum.
SELECTION-SCREEN END OF LINE.
You can use SELECTION-SCREEN COMMENT for placing the appropriate comments at respective positions.
Regards,
Satya
2008 May 14 9:50 AM
Hi,
Hope the below code helps you.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT [/]pos(len)
{text|{text FOR FIELD sel}}
VISIBLE LENGTH vlen
parameters: b1 radiobutton group 1,
select-options s_date for sy-datum.
SELECTION-SCREEN END OF LINE.
Regards,
Sandesh
Reward points
2008 May 14 9:53 AM
select options is not allowing in between the begin of line & end of line
2008 May 14 10:09 AM
there should not be a problem putting select options in between begin of and end of line....use the following as reference...
selection-screen begin of line.
PARAMETERS: Pr RADIOBUTTON GROUP G2 USER-COMMAND C1 DEFAULT 'X',
Pr1 RADIOBUTTON GROUP G2 .
select-options s1 for sy-datum.
selection-screen end of line.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |