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

colore for title

Former Member
0 Likes
1,178

hi

i want to change the title colore to red

how do i do that ?

Ami

hi

i want to change the title colore to red

how do i do that ?

Ami

6 REPLIES 6
Read only

Former Member
0 Likes
1,015

hi ami,

You can use the COLOR formatting in lists to change colors of your list.For red use COL_NEGATIVE.

Check this link for complete information.

http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dba1ae35c111d1829f0000e829fbfe/content.htm

Best of luck,

Bhumika

Read only

Former Member
0 Likes
1,015

Hi,

Use...

Write 'Title' color col_negative inverse on.

Regards,

Cooldeep.

Edited by: Kuldeep Mane on Jul 22, 2008 5:05 PM

Read only

Former Member
0 Likes
1,015

Changing the Font Color and the Background Color

In accessibility mode, SAP GUI for Windows uses the color settings of the operating system. In this case, the color display in the SAP GUI is taken for the most part from the color scheme you have chosen in the Windows operating system.

The color settings in Performance Assistant are taken from your settings in Microsoft Internet Explorer.

High Contrast

High contrast displays use distinctive colors, such as a white font on a black background. To obtain a high contrast display for SAP GUI for Windows, set an appropriate color scheme in the Windows operating system.

If you want to set a high contrast display with a white font on a black background, you need to set the text and background color for screen elements in SAP GUI accordingly on the Colors in Forms tab page in SAP GUI for Windows. This setting is explained below.

Colors in Forms

To adjust the standard colors of certain objects in SAP GUI for Windows in accessibility mode that are not influenced by the operating system, you can use the local layout as follows:

1. In SAP GUI for Windows, choose Local Layout ® Options. You can also use the key combination ALT + F12 (for Local Layout) and then press the key O (for Options).

2. On the Colors in Forms tab page, choose the Copy to Custom pushbutton. The application switches to the Custom color palette. Change only the colors in the Custom color palette.

3. Under Field Colors, choose the required screen element and then choose Change.

4. Specify a text color and background color for each of the screen elements.

http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a95e351ea11d189570000e829fbbd/content.htm

Read only

Former Member
0 Likes
1,015

Hi,

to print the letters in red:

FORMAT COLOR COL_NEGATIVE inverse.
  WRITE: 'title'.

to print the background red

FORMAT COLOR COL_NEGATIVE .
  WRITE: 'title'.

Regards,

Shailaja

Read only

Former Member
0 Likes
1,015

Hello Please check this sample code..

TOP-OF-PAGE.

WRITE: 25 'XYZ' COLOR 6,

/20 'Engineering works' COLOR 3.

Here keep your Title in the place of XYZ.

OR

Format color 6.

write: 'XYZ'.

this will also work..

Chck the answers and any issues revert me back.

If you find helpful reward points.

Thks

Bubby

Read only

Former Member
0 Likes
1,015

Hi Ami.

I would like to suggest you a couple of references,

[SDN - Reference for Highlighting a field in red color in ALV |;

[SDN - Reference for Coloring Cells/rows in ALV Grid|;

[SAP HELP - Standard Reference for changing and assigning colors in Lists|http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba1ae35c111d1829f0000e829fbfe/frameset.htm]

[SAP HELP - Standard Reference for Colors for headings, rows, columns in ALV|http://help.sap.com/saphelp_nw04/helpdata/en/34/e7eb40c4f8712ae10000000a155106/frameset.htm]

I would like to suggest a small statement----->

FORMAT COLOR COL_HEADING.
  WRITE: 'CARRID', 10 'CONNID', 20 'FROM', 40 'TO'.

Hope that's usefull.

Good Luck & Regards.

Harsh Dave