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 Classical Report

Former Member
0 Likes
1,776

Hi,

I am doing a Classical Report and I need a vertical line to be drawn between the fields. i.e. I want the coloumns to be separated by vertical lines but not the rows. Hope I am clear with my requirement. This is urgent please advice.

Rgds,

Manju

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,073

Hi

write sy-vline statement where u want vertical line.

loop at it_kna1 into wa_kna1.

write:/1 sy-vline,

3 wa_kna1-kunnr,

20 sy-vline,

30 wa_kna1-name1,

100 sy-vline.

endloop.

Edited by: Chaithanya A on Mar 19, 2008 8:15 AM

Hi,

I am doing a Classical Report and I need a vertical line to be drawn between the fields. i.e. I want the coloumns to be separated by vertical lines but not the rows. Hope I am clear with my requirement. This is urgent please advice.

Rgds,

Manju

5 REPLIES 5
Read only

Former Member
0 Likes
1,073

Hi

u can use

V-LINE.

Read only

Former Member
0 Likes
1,073

Use SY-VLINE between your columns.

Hope this helps.

Thanks,

Balaji

Read only

Former Member
0 Likes
1,074

Hi

write sy-vline statement where u want vertical line.

loop at it_kna1 into wa_kna1.

write:/1 sy-vline,

3 wa_kna1-kunnr,

20 sy-vline,

30 wa_kna1-name1,

100 sy-vline.

endloop.

Edited by: Chaithanya A on Mar 19, 2008 8:15 AM

Read only

Former Member
0 Likes
1,073

Hi,

in Classical Reporting while u r Defining u r variable in write statement user symbol ' | ' in between u r Column Values that u want to Print.

Hope it will helps...!!!

Pls reward if Helpful...!!!

Read only

Former Member
0 Likes
1,073

use write:/ sy-vline.

But this will print for single row only. so for all the rows where ever u want the vertical line make use of the above statement.

Reward if useful..............