How to insert a color value into a variable?
for instance
this works for me:
write:/10 'test' COLOR COL_HEADING.
I want the colors to be integer, so I tried:
data: gv_mycolor type I. gv_mycolor = 5. write:/10 'test' COLOR gv_mycolor.
the second code gives me an error: "The color gv_mycolor is not expected, only 1 to 7 or the corresponding color identifiers are allowed.
Operator use
FORMAT COLOR = gv_mycolor.
works for me. I have a problem with recording only. Can anyone help? thanks Thomas
source share