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: 

colors question

Former Member
0 Kudos

Hi. I made a simple example.

WRITE: sy-vline.
FORMAT COLOR 1.
WRITE: 'aaa', sy-vline.
FORMAT COLOR 3.
WRITE: sy-vline, 'bbb', sy-vline.

Is there some possibility to remove yellow color from the middle, etween 2-nd and 3-rd vline? Greetings. P.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Piotr,

Try

WRITE: sy-vline.

FORMAT COLOR 1.

WRITE: 'aaa', sy-vline.

WRITE: sy-vline, 'bbb' color 3, sy-vline.

1 REPLY 1

Former Member
0 Kudos

Hi Piotr,

Try

WRITE: sy-vline.

FORMAT COLOR 1.

WRITE: 'aaa', sy-vline.

WRITE: sy-vline, 'bbb' color 3, sy-vline.