cancel
Showing results for 
Search instead for 
Did you mean: 

To print vertical lines between headings of table in the header of table.

vidyadhar2k2
Explorer
0 Kudos

I have a 4 headings in the header of table, find the design below.

-


ABC | BCD | DEF | EFG |

-


Now the problem is these vertical lines present between columns are not touching the bottom horizantal line.

I want to print only for table header and not print in the table body.

How i printing these vertical lines is, i took the text elements between 1st and 2nd column, there i am using the pipe symbol ( | ) twice or thrice in that text element to print that vertical line.

if i am increasing the no of pipes in that text element, then that next pipe is printing & the horizantal line is coming down, but that vertical line is not touching the horizantal line.

Please let me know asap, because it is very urgent issue.

Hoping i explained clearly and awaiting for your valuable answers.

Regards,

Vidyadhar.

09819325259.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Here is code.

TYPE-POOLS line.

WRITE: /10 line_top_left_corner AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_top_middle_corner AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_top_right_corner AS LINE NO-GAP.

WRITE: /10 line_vertical_line AS LINE NO-GAP,

'ABC',

line_vertical_line AS LINE NO-GAP,

'DEF',

line_vertical_line AS LINE NO-GAP.

WRITE: /10 line_bottom_left_corner AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_bottom_middle_corner AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_horizontal_line AS LINE NO-GAP,

line_bottom_right_corner AS LINE NO-GAP.

former_member624107
Contributor
0 Kudos

Hi

Use sy-vline instead of pipesymbol

Former Member
0 Kudos

try to use like this..

TYPE-POOLS line.

WRITE: /10 line_top_left_corner AS LINE NO-GAP,

line_top_middle_corner AS LINE NO-GAP,

line_top_right_corner AS LINE,

/10 line_left_middle_corner AS LINE NO-GAP,

line_cross AS LINE NO-GAP,

line_right_middle_corner AS LINE,

/10 line_bottom_left_corner AS LINE NO-GAP,

line_bottom_middle_corner AS LINE NO-GAP,

line_bottom_right_corner AS LINE.

here is the Total list.

Constant Meaning

line_space Blank

line_top_left_corner Top left corner

line_bottom_left_corner Bottom left corner

line_top_right_corner Top right corner

line_bottom_right_corner Bottom right corner

line_horizontal_line Horizontal line

line_vertical_line Vertical line

line_left_middle_corner T-element turned to left

line_right_middle_corner T-element turned to right

line_bottom_middle_corner T-element upside down

line_top_middle_corner T-element

line_cross Kreuz

Message was edited by:

Jyothi