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

creating a vline

Former Member
0 Likes
930

Hi,

How can I create a boarder for my table using vline knowing that I'm using a classic report.

1 ACCEPTED SOLUTION
Read only

Sm1tje
Active Contributor
0 Likes
842

write: (pos) SY-VLINE??

Edited by: Micky Oestreich on Apr 16, 2008 11:14 AM

5 REPLIES 5
Read only

Sm1tje
Active Contributor
0 Likes
843

write: (pos) SY-VLINE??

Edited by: Micky Oestreich on Apr 16, 2008 11:14 AM

Read only

Former Member
0 Likes
842

Hi,

Try to do like this

WRITE: /1(71) sy-uline,

/1 sy-vline,

4(12) text-002 COLOR COL_KEY INTENSIFIED ON,

17 sy-vline,

18(12) text-003 COLOR COL_HEADING,

31 sy-vline,

32(12) text-004 COLOR COL_HEADING,

45 sy-vline,

46(12) text-006 COLOR COL_HEADING,

59 sy-vline,

60(10) text-012 COLOR COL_HEADING,

71 sy-vline,

/1(71) sy-uline.

Pls reward if useful.

Read only

Former Member
0 Likes
842

Hi,

Use SY-ULine and SY-VLINE accordingly.



WRITE: /1(60) sy-uline,
/1 sy-vline,
20 sy-vline,
40 sy-vline,
60 sy-vline,

/1(60) sy-uline.

Regards

Sandipan

Read only

Former Member
0 Likes
842

Hi,

check the following code:

TABLES spfli.

SKIP.

ULINE AT /(62).

SELECT * FROM spfli WHERE connid GE 0017

AND connid LE 0400.

WRITE: / sy-vline, spfli-connid, sy-vline,

(15) spfli-cityfrom, 26 sy-vline,

31 spfli-cityto, 51 sy-vline, 62 sy-vline,

/ sy-vline, 8 sy-vline,

spfli-deptime UNDER spfli-cityfrom, 26 sy-vline,

spfli-arrtime UNDER spfli-cityto, 51 sy-vline,

spfli-fltime, 62 sy-vline.

ULINE AT /(62).

ENDSELECT.

WRITE: /10 'SAP *** SAP *** SAP *** SAP *** SAP *** SAP',

/19(43) 'Flight Information System',

/19(43) 'International Connections'.

Regards,

Bhaskar

Read only

Former Member
0 Likes
842

Hi

You can make use of

SY-ULINE and

SY-VLINE