Changing the font color for the complete row based on the Keyfigure Values

Hi Experts,
Can any one help me to find a solution for this?.
I have a requirement, in which the Font color for the complete Row needs to be set to RED in Bex Report, when the corresponding Row Keyfigure is more than a particular value.
Ex: Notification-Material-Customer-Def Qty-delivered Qty
      1000000 - XXXXX- AAAAAA-10-1000
in the above example, when the Defect qty increses more than 10, then the complete Row Including the characterstics, Notification, Material, and customer Should be Highlighted in Red. This has to happen automatically once the Query is refreshed.
Please let me know if you have any suggestion here?.
Regard,
Muruganand.K

Hi,
Step 1: Click the Format Menu in Excel(BEX Analyzer)
Step 2: Click the Style submenu
Step 3: there will be number of SAPBEX formats available. Each of these relates to another cell of BEx (Header, Cell Data,
            Result  Row, Hierarchies, etc.). Also, they depend on data types.
Step 4: Select SAPBEXchatext
Step 5: Click Modify. This displays all the standard formatting option as shown below.
Step 6: Select Font, Color (Background/ Font).
Step 7: Click OK on both the screens. The entire BEx output result row Font and color is modified.
Hope it helps........
Regards,
Suman

Similar Messages

  • How do you set the font color for a specific entire row inside a JTable?

    How do you set the font color for a specific entire row inside a JTable?
    I want to change the font color for only a couple of rows inside a JTable.
    I've seen some ways to possibly do this with an individual cell.
    Clarification on changing the font color in an individual cell would be helpful too if
    there is no easy way to do this for a row.

    hai,
    Try out with this piece of code.Create your table and assign the renderer to each column in the table.
    CellColorRenderer m_CellColorRenderer = new CellColorRenderer();
    for(int i=0;i<your_JTable.getColumnCount();i++)
    your_JTable.getColumnModel().getColumn(i).setCellRenderer(m_CellColorRenderer);
    class CellColorRenderer extends JLabel implements TableCellRenderer
    CellColorRenderer()     
    setOpaque(true);     
    setHorizontalAlignment(LEFT);
    setVerticalAlignment(CENTER);
    setBackground(Color.white);
    setForeground(Color.black);
    protected void setValue(Object value)
         setText((value == null) ? "" : value.toString());
    public Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected, boolean hasFocus, int row,int column)
         if(isSelected == true)
              setForeground(Color.red);
         else
              setForeground(Color.black);
         setValue(value);
         return this;
    regards,
    bala

  • Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Just a suggestion..........
    Download Thunderbird.  Easier to use when it comes to what you want to do w/your emails. 

  • How do I change the font color for numbering in a matching question slide?

    I have a grey image on a question slide, but the numbering for the answers in a matching question is defaulting to grey so learners can't see to match up.  How can I change the font color of these choices?  Thanks.

    You probably edited the master slide without changing the theme colors? Check the Object Style for Answers in the Object Style Manager. The numbering takes the same color as the answer text.
    All depends on the Theme colors palette that you are using. Normally Question answers use the darkest tint of the fourth color. I started blogging about color management, but description of the use of Theme colors will be published later.
    Colorful 2015 with Adobe Captivate - Captivate blog

  • Is there a way to change the font color for emailing and the signature?

    Is there a way to change the font color with email signature on the iPhone and iPad?
    I changed the color in Word on my laptop, emailed and copied to my signature, but it converts it back to black........

    Looks like you didn't get a reply on your post, but it is still a problem.  Font size is supposedly changeable via "Accessibility" in Settings, but it doesn't work.  You can turn on "Zoom".

  • How can i set the alternating colors for a table rows

    Dear All,
    Please any one help me how can i set the Alternating colors for Table Rows.
    i created a theam there i set the background alternating color to brown and i set the table design properity to alternating. but it is not reflecting.

    Hi,
    The design property in Table properties should work for your requirement. Select "alternating" value for design.
    Please see the API below:
    design
    Determines the appearance of the table. The property design can take the following values and is represented by enumeration type WDTableDesign.
    alternating - The table rows are displayed alternately in a different color.
    standard - The table background has one color. The individual table rows are displayed with grid net lines.
    transparent - The table background is transparent. The individual table rows are displayed without grid net lines.
    Check whether you have changed the right property or not? Also table should contain more than one rows to test this scenario.
    Regards,
    Jaya.
    Edited by: VJR on Jun 17, 2009 6:43 PM

  • How to change the font color of a particular row in af:table

    I have a <af:table> bounded to a readonly ViewObject and this view object is a collection of an sql query. Now when this table is rendered i want font color of the specific attributes to be changed based on certain logic.
    Eg. If my af:table is showing a resultset which has Attributest like ... EmployeeName | BalanceLeave . Then i want that the BalanceLeave value shoud be displayed in RED color if leave balance attribute value is more than 20.
    Please help me on this.

    For this you use the styleClass property of the attribute and use an EL bound to a managed bean to return the desired style.
    Something like this to switch the color public class ColorSwitchBean {
        public ColorSwitchBean() {
            super();
        String mStyleClass = null;
    String mColorSyle = null;
        public String getStyleClass() {
            FacesContext fc = FacesContext.getCurrentInstance();
            ELContext elc = fc.getELContext();
            ExpressionFactory elf = fc.getApplication().getExpressionFactory();
            String sval =
                (String)elf.createValueExpression(elc, "#{row.City}", Object.class).getValue(elc);
            if (sval.startsWith("S"))
                mStyleClass = "red_background";
            else if (sval.startsWith("M"))
                mStyleClass = "green_background";
            else
                mStyleClass="";
            return mStyleClass;
         public void setStyleClass(String aStyleClass) {
            mStyleClass = aStyleClass;
        public void setColorSyle(String mColorSyle) {
            this.mColorSyle = mColorSyle;
        public String getColorSyle() {
          FacesContext fc = FacesContext.getCurrentInstance();
          ELContext elc = fc.getELContext();
          ExpressionFactory elf = fc.getApplication().getExpressionFactory();
          String sval =
              (String)elf.createValueExpression(elc, "#{row.City}", Object.class).getValue(elc);
          mColorSyle = "";
          if (sval.startsWith("S")) {
              mColorSyle = "background-color:Red";
          else if (sval.startsWith("M")) {
              mColorSyle = "background-color:Green";
          return mColorSyle;
    }and this inside the table:- <af:column sortProperty="City" sortable="true" headerText="#{bindings.Departments.hints.City.label}" id="c1" styleClass="#{ColorSwitchBean.styleClass}">
      <af:outputText value="#{row.City}" id="ot2" /> Timo

  • How do I change the font color for track changes in pages?

    I am using the "track changes" function to edit a document in pages, and would like to change the edited text from pale yellow green to a color I can actually see.  How do I do this?

    Hello Zoolie,
    That is an easy thing to do. Go to the drop down menu View > Comments and Changes > Author Color and then just select the color that you want and you will be good to go. Take a look at the article below for more information if needed. 
    Pages for Mac 5.0: Add comments and highlight text
    https://support.apple.com/kb/PH15379
    Regards,
    -Norm G. 

  • Can I change the fill color of an entire row based on what's selected in a pop-up menu in the first cell?

    I have a pop-up menu in the first cell of every row with three choices (and I may add more at a later date).  I want the fill color of the row to change depending on which thing is selected.  Is this hard to do?

    Hi,
    In essence the same as Wayne's answer, but with a slight modification to fit  to duplicate your 'color the whole row' specification. The final result, with Table 2 slid behind Table 1, is shown.
    Table 2 is a single column table with the same number of rows as Table 1. The table is resized to match the full width of Table 1.
    In A2, use the formula =Table 1::A2 to copy the value from that cell in Table 2. Fill the formula down through the rest of the column.
    Select all the cells in Table 2 (except the header row), and apply conditional formatting rules such as those below.
    Note that the Conditional Format rules are set to apply the same colour to text and fill in the cell, so that the text disappears.
    When Table 2 is ready, select it, then go Arrange > Send to Back.
    Before sliding Table 2 behind Table 1, Select Table 1 and use the Table Inspector to set the Cell Background to None (see red arrow in illustration). If This table has a Header column, you need to select the header cells independently and again set the Cell Background to None.
    Now select Table 2 and drag it to a position partially under Table 1. When you see the blue alignment guides on both sides, or at the top and bottom, of Table 1, release the mouse button and use the arrow keys to nudge Table 2 into its final position.
    Regards,
    Barry

  • Choosing font color for titles in fcpx without using the color Picker

    I am working with a lot of titles.  I would like to use a consistent color in all of my titles.  I know how to select text color with the color picker in the inspector.  I find this very cumbersome.  Is there some way to numerically specify the color (e.g. R= 45, G=55, B=120) or to have a preset palette I can choose from?  I found that by double clicking on the color swatch in the inspector that I can bring up a colors window.  I can store custom colors there, however I can find now way then to apply that custom color back onto the font.  There must be some way of doing this that I am missing.  Thanks for your help.

    You can create an entire "Style" in one title and save that style as a preset.
    Create the look of your Title for the first instance. In the inspector > Text pane, click on the label at the top (usually shows: "Normal" until you set a specific style) -- from that dropdown menu, select Save All Basic and Style Attributes.
    You can then: Select ALL of the titles you want to apply those attributes to (shift click or drag a marquee through them all) and use the dropdown menu to apply the style you saved in one fell swoop.

  • Changing Safari Font Color for Visited Links

    Is there a utility or some other way to change the color of visited links in Safari? The current blue/purple colors are very difficult to distinguish and I would like a more dramatic color change for visited links. Thank you for any help.

    cadcard --
    Welcome!
    Here's a link to a thread where this was discussed before.
    Hope it is helpful:
    http://discussions.apple.com/thread.jspa?messageID=5204995&#5204995

  • Somebody please help me with adjusting the font size for itunes on my pc. The font in the itunes store is to small for me to read.

    I can't find a way to adust the font size when I am in itunes on my pc. I know how to adjust the display setting, but that seems to be an overkill. I don't need to use the largest font size all the time. Surely there must be a simple way to just adust only what I need to in itunes.

    You are not addressing Apple here. We are all just users like yourself.
    First,  log into your account on a computer and go to your purchase history and look for charges.
    Next contact iTunes if necessary
    Apple - Support - iTunes - Contact Us

  • Link Colors: Here you can change the default colors for Web links. Click on the color samples to select colors.

    This worked before, but, since I reinstalled my pc, it doesn't.
    Why is this & what must I do for it to work. ?

    Try using this add-on: https://addons.mozilla.org/en-US/firefox/addon/color-toggle/

  • How can I change the background color of odd/even rows in a panelCollection

    Hi everyone.
    I'm using a panelCollection and I need to change the backgroung color for odd/even rows in the table,
    how can I do this, using a stylesheet, is there a special selector or property for this?
    globalResultCollection (UIPanelCollection object) , is a collection of UITable elements, and it's working fine.
    I just want to change the defaul background color for rows.
    Thanks
    <af:panelCollection id="GLOBAL_RESULT_COLLECTION"
    binding="#{admin.view.globalResultCollection}"
    styleClass="globalResultCollectionRegion"
    clientComponent="true">
    <f:facet name="menus">
    <af:menu id="GLOBAL_OPERATION_MENU"
    binding="#{admin.view.globalOperationMenu}" />
    </f:facet>
    <f:facet name="toolbar">
    <af:toolbar inlineStyle="width:100%"
    binding="#{admin.view.globalOperationToolbar}"
    id="OPERATION_TOOLBAR"/>
    </f:facet>
    </af:panelCollection>

    Hi,
    use this:
    af|table::data-row af|column::data-cell { background-color: #CCCCFF; }
    af|table::data-row af|column::banded-data-cell { background-color: #FFCCCC; }
    Regards,
    s o v i e t

  • Set font color for the JTextField

    I'm using JTextField in my project. However, can anybody teach me how to set the font color for the font in the JTextField to other color. The default font color is black. Any idea about this?

    JTextField field = new JTextField(20);
    field.setForeground(Color.blue);
    Good luck ;)

Maybe you are looking for

  • I have a hp laserjet 600 m602 that will print 8 1/2 by 11 prints at 50 ppm when I change to custom

    I have a laserjet 600 m602 when I change it to custom it prints so slow its going backwards is there any way around this the paper is 8 1/2 by 10 1/2  actually shorter why does it take longer  

  • Rollover Button Link HELP please

    I am trying to create a button that does this (HOME in the top left side): http://fromtherivercollective.com/Blog/ for this site: http://fromtherivercollective.com Is this possible in iweb? if not with shapes can I use images? I am not getting anywhe

  • Don't know how to turn off T420 LED light

    I upgraded my thinkpad T420 to Windows 8. Everything is good, but the Bluetooth LED light is always turned on. I don't know how to turn it off. Does anyone have same situation?

  • HT1461 Remote Login and sharing

    We are trying to remote login and shareing with network computers and have not been successful. Any help would be greatly appreciated.

  • How can I get following requirement done

    I have following requriement how can I get them. First Requirement: In my pricing of sales order is having 10 condition type.But when I create return order from the sales order it should pick up only first 5 condition type.How can I achieve that? In