Help with Modifying Screen Atributes
Hello, i have a table control where i want to give a diferente color to a specific field, the code i have is teh following, but what happens is that the value for the SCREEN-COLOR changes, but on screen it doesn't change to any color....
in PBO module i have the following code:
loop at screen.
if screen-name = 'IT_TC-IDNRK'.
screen-color = 1.
endif.
modify screen.
endloop.
can u tell me what am i doing wrong?
Thank you
Ricardo Monteiro
Ricardo Monteiro,
The Reverse video, Blinking and Underlined attributes, as well as an individual color scheme for each element (all available in R/2), are not supported in R/3. The color scheme is now defined for the system as a whole.
Try to use display attribute Bright.
Manoj