Application Development 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: 

PERFECT/COMPLETE VERTICAL LINE IN SAPSCRIPT?

Former Member
0 Kudos
135

Hello all,

I have to draw vertical lines to make a grid in a SAPscript. But the grid size is not fixed, there a number of records and long texts that are displayed based on certain conditions.

Is there a way to draw a perfect/complete veritcal in SAPscript dynamically?

Looking forward to hear from you peoples...

2 REPLIES 2

Former Member
0 Kudos
83

You can use the BOX command to draw vertical lines.

/: BOX [xpos] [ypos] [width][height] [frame] [intensity].

here the widt has to be 0 to get a line and the height can be a variable as required.

Thanks,

Renjith.

Former Member
0 Kudos
83

You can use the BOX command to draw vertical lines.

/: BOX [xpos] [ypos] [width][height] [frame] [intensity].

here the width should be 0 to get a line and the height can be a set as 1 and the ypos variable can be ncreased.