2016 Jul 29 3:05 PM
Hello Together,
In display mode the background color of the key fields are different from the other collums.
Is there a possibility to color the key fields columns also in edit mode (without creating a seprate column for background color)?
I tried:
ls_fcat-EMPHASIZE = 'X'.
ls_fcat-fix_column = 'X'.
Best Regards
Uwe
2016 Jul 29 3:31 PM
Hi,
You can use the Emphazise option in field catalog to display the cell in different colors.
ls_fcat-edit = 'X'.
ls_fcat-EMPHASIZE = 'C112'.
Colour code :
0 = background color
1 = blue
2 = gray
3 = yellow
4 = blue/gray
5 = green
6 = red
7 = orange
Colour is a 4-char field where :
- 1st char = C (color property)
- 2nd char = color code (from 0 to 7)
- 3rd char = intensified (0=off, 1=on)
- 4th char = inverse display (0=off, 1=on)
thank you!!
2016 Jul 29 3:31 PM
Hi,
You can use the Emphazise option in field catalog to display the cell in different colors.
ls_fcat-edit = 'X'.
ls_fcat-EMPHASIZE = 'C112'.
Colour code :
0 = background color
1 = blue
2 = gray
3 = yellow
4 = blue/gray
5 = green
6 = red
7 = orange
Colour is a 4-char field where :
- 1st char = C (color property)
- 2nd char = color code (from 0 to 7)
- 3rd char = intensified (0=off, 1=on)
- 4th char = inverse display (0=off, 1=on)
thank you!!
2016 Jul 29 3:41 PM