‎2007 Feb 23 11:33 AM
Hi All,
Can anybody please tell me how to draw vertical lines in SAP Script without using box??
‎2007 Feb 23 11:33 AM
<b>sy-vline</b>
but if u r going to use this ready for Headache
kishan negi
‎2007 Feb 23 11:38 AM
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
‎2007 Feb 23 11:35 AM
‎2007 Feb 23 11:42 AM
Hello,
You can use the Box statement for this purpose.
BOX HEIGHT '10' <b>WIDTH '0'</b> LN FRAME 10 TW.
Vasanth
‎2007 Feb 23 11:51 AM
‎2007 Feb 23 11:52 AM
‎2007 Feb 23 12:03 PM
Sorry Manik
don't use &sy-vline&
use <b>&vline&</b>
reward if useful.
‎2007 Mar 08 6:58 AM
To draw a vertical line draw a box with height 0.
BOX POSITION '1' HEIGHT '0'.
this will work