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 have a small problem.

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

How to remove yellow color between 2-nd and 3rd vline?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

WRITE: sy-vline.

WRITE: 'aaa' COLOR COL_POSITIVE,

sy-vline.

WRITE: sy-vline,

'bbb' COLOR COL_YELLOW,

sy-vline.

To find out the color. Click F1 on the COLOR in SE38.

Regards,

A.Singh

Message was edited by:

Amarjit Singh

1 REPLY 1

Former Member
0 Kudos

WRITE: sy-vline.

WRITE: 'aaa' COLOR COL_POSITIVE,

sy-vline.

WRITE: sy-vline,

'bbb' COLOR COL_YELLOW,

sy-vline.

To find out the color. Click F1 on the COLOR in SE38.

Regards,

A.Singh

Message was edited by:

Amarjit Singh