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

Vertical Lines in SAP script

Former Member
0 Likes
996

Hi All,

Can anybody please tell me how to draw vertical lines in SAP Script without using box??

8 REPLIES 8
Read only

Former Member
0 Likes
785

<b>sy-vline</b>

but if u r going to use this ready for Headache

kishan negi

Read only

0 Likes
785

I tried using sy-vline and vline but I was not able to give size to this, can you please tell me how to give line size using sy-uline or vline.

Thanks

Read only

Former Member
0 Likes
785

Hello,

<b>&VLINE&</b>

Vasanth

Read only

0 Likes
785

Hello,

You can use the Box statement for this purpose.

BOX HEIGHT '10' <b>WIDTH '0'</b> LN FRAME 10 TW.

Vasanth

Read only

Former Member
0 Likes
785

Hi,

use <b>&sy-vline&</b>

reward if useful.

Read only

Former Member
0 Likes
785

Hi,

use <b>&sy-vline&</b>

reward if useful.

Read only

Former Member
0 Likes
785

Sorry Manik

don't use &sy-vline&

use <b>&vline&</b>

reward if useful.

Read only

Former Member
0 Likes
785

To draw a vertical line draw a box with height 0.

BOX POSITION '1' HEIGHT '0'.

this will work