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

colors question

Former Member
0 Likes
300

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
Read only

Former Member
0 Likes
272

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
Read only

Former Member
0 Likes
273

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