2007 Jun 07 1:48 PM
Hi all,
How to increase the selection-screen block size.
Thanks,
Mungala.
2007 Jun 07 1:54 PM
For example, if you run this program, you can see that the limit is 79 and the block is already that wide.
report zrich_0001.
selection-screen begin of block b1 with frame title text-001.
parameters: p_datum type sy-datum.
selection-screen begin of line.
selection-screen position 79.
selection-screen comment (1) txt_1.
selection-screen end of line.
selection-screen end of block b1.
initialization.
txt_1 = 'X'.
Regards,
RIch Heilman
On standard selection screens, the size of the block is limited to 79 characters across. This is also the default size for the block. So it is already at the max.
REgards,
Rich Heilman
2007 Jun 07 1:50 PM
2007 Jun 07 1:51 PM
2007 Jun 07 1:54 PM
For example, if you run this program, you can see that the limit is 79 and the block is already that wide.
report zrich_0001.
selection-screen begin of block b1 with frame title text-001.
parameters: p_datum type sy-datum.
selection-screen begin of line.
selection-screen position 79.
selection-screen comment (1) txt_1.
selection-screen end of line.
selection-screen end of block b1.
initialization.
txt_1 = 'X'.
Regards,
RIch Heilman
2007 Jun 07 1:57 PM
Hi Praveena,
Solution is simple.
SKIP n.
where n is the number.
here the number specifies the number of blank line.
Put the skip n as shown below.
-
Begin of block b1 with title title01
skip 1.
XXXX-XXXX-XXXXXXXXXXXXXX
skip 2.
XXXX-XXXX-XXXXXXXXXXXXXX
endof block b1.
-
Reward Points if useful.
Thanks,
Tej..
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |