2008 Jan 03 9:51 AM
i need to design a selection screen in same block but i need to seperate them in different section .
Description part one (How do i do underline?)
PARAMETERS
PARAMETERS
SELECT-OPTIONS:
SELECT-OPTIONS:
Description part two (How do i do underline?)
RADIOBUTTON
PARAMETERS
PARAMETERS
Description part three (How do i do underline?)
RADIOBUTTON
Description part four (How do i do underline?)
CHECKBOX
What is the best way to code that, for the description part one i wrote the code like
SELECTION-SCREEN COMMENT 1(18) text-002.
2008 Jan 03 9:54 AM
Hi.
try this.
SELECTION-SCREEN begin of block ....
parameters
select-options..
SELECTION-SCREEN COMMENT 1(18) text-002.
SELECTION-SCREEN ULINE.
radio butoons..
paramters....
SELECTION-SCREEN COMMENT 1(18) text-002.
SELECTION-SCREEN ULINE.
...
..
Selection-screen end .....
Awrd points if useful
Bhupal
Hi.
try this.
SELECTION-SCREEN begin of block ....
parameters
select-options..
SELECTION-SCREEN COMMENT 1(18) text-002.
SELECTION-SCREEN ULINE.
radio butoons..
paramters....
SELECTION-SCREEN COMMENT 1(18) text-002.
SELECTION-SCREEN ULINE.
...
..
Selection-screen end .....
Awrd points if useful
Bhupal
2008 Jan 03 9:54 AM
Hi.
try this.
SELECTION-SCREEN begin of block ....
parameters
select-options..
SELECTION-SCREEN COMMENT 1(18) text-002.
SELECTION-SCREEN ULINE.
radio butoons..
paramters....
SELECTION-SCREEN COMMENT 1(18) text-002.
SELECTION-SCREEN ULINE.
...
..
Selection-screen end .....
Awrd points if useful
Bhupal
2008 Jan 03 9:59 AM
Hi.
You can also nest selection screen block like this.
selection-screen begin of block bl1 with frame.
parameters:....
selection-screen skip 1.
selection-screen begin of block bl2 with frame.
select-options: ...
selection-screen end of block bl2.
selection-screen end of block bl1.
Reward if helpful.
Regards,
George
2008 Jan 03 10:00 AM
selection-screen begin of block a with frame tilte text-001.
PARAMETERS
PARAMETERS
SELECT-OPTIONS:
SELECT-OPTIONS:
selection-screen skip 1.
selection-screen begin of block b with frame tilte text-002.
RADIOBUTTON
PARAMETERS
PARAMETERS
selection-screen end of block b.
selection-screen skip 1.
selection-screen begin of block c with frame tilte text-003.
RADIOBUTTON
selection-screen end of block c.
selection-screen skip 1.
selection-screen begin of block d with frame tilte text-004.
CHECKBOX
selection-screen end of block d.
selection-screen end of block a.
give u r description in the text elements
2008 Jan 03 10:14 AM
Hi,
Try like this:
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
PARAMETERS : RD1 RADIOBUTTON GROUP RG1,
RD2 RADIOBUTTON GROUP RG1 DEFAULT 'X',
RD3 RADIOBUTTON GROUP RG1.
SELECTION-SCREEN END OF BLOCK B1.
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
PARAMETERS: NAME(5) TYPE C,
DATE TYPE D.
SELECTION-SCREEN END OF BLOCK B2.
SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-003.
PARAMETERS: EBELN as Checkbox,
DRDAT TYPE D.
SELECTION-SCREEN END OF BLOCK B3.
Regards,
Bhaskar
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |