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

Selection-Screen

Former Member
0 Likes
436

Hi all,

How to increase the selection-screen block size.

Thanks,

Mungala.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
417

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

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
416

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

Read only

suresh_datti
Active Contributor
0 Likes
416

selection-screen skip.

~Suresh

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
418

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

Read only

Former Member
0 Likes
416

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..