Conditional formating in report painter (GRR2)

Hi all,
An end user ask me if it's possible to do a conditional formatting in a cell of report painter (run with GRR3) if the value is true (i.e. as in excel, you can colour a cell if it's less than zero and so on). I know that it's possible with the BEx (for SAP BI), xcelsius, crystal reports and surely with bussiness object. I can see that it's only available do the format for the all column or for a line, but I don't  find the option for a cell with a condition (surely because it isn't available).
Please, confirm me if it is not available, because I'm a long time looking for a reply but I only find info about BEx, xcelsius and so on (nothing related with report painter, GRR2 and so on). But if it's possible, please let me know how to do it.
Thanks in advance
Best regards,
Eduardo

Hi,
I don't think that we can put the conditional formula. but we can do the calcualtion by row wise or column wise.
Thanks.

Similar Messages

  • New column with formula in Report Painter - GRR2

    Hi gurus,
    I want to insert a new element in my new report painter created by GRR2. I took a standard report and I copied the report.  I know how to insert a new element.
    The problem is I want to choose the value of a field in PROJ table for create a formula in my report. The users insert a value in user-define fields of CJ20n, and i would like to choose this value for create a formula in my report.
    Can I create a formula to take this value from the table PROJ? If I need to create a characteristic for choose this field, as I can create?
    Thanks.

    Hi,
    My question is:
    Can i pick a value of a table (proj) for use in formula of report painter??
    Many thanks.
    Regards.

  • Conditional formatting in report designer.

    Hi All !
    What is conditional formatting & how to do it ?
    does it act like condition which we do in BEX query designer ?
    Can we restrict values using this at the report designer level ?
    Regards
    Tom.

    Hi,
    Conditional Formatting: You use this function to set a design that deviates from the design for selected characteristic values, hierarchy nodes, and so on, that is set by the default row patterns.
    Conditional formatting can only be applied to characteristic values in dynamic sections of a data provider. A query (or query view) with one or more characteristics in the drilldown forms the basis of a data provider with a dynamic section.
    Take a look at the URL below:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/f4b8c3a7dd7065e10000000a1553f6/frameset.htm
    Regards,
    Kishore
    Message was edited by:
            Kishore Sivakumar

  • Graphic/Image not displayed with conditional formatting in Report Designer

    We are facing problems with displaying an image in a conditional formatting in the Report Designer. The image itself is in the mime repository and can be displayed in the report if no conditional formatting is used. But if it is used the image doesn't appear in the report.
    Backend setup: SP 8
    Frontend setup: Patch 8, hotfix 2, Revision 95
    Any help is highly appreciated.
    Sven

    Hi,
    I could not reproduce your problem in internal SP8 system. Also images in rows with conditional formatting are displayed.
    Do you get any errors after the execution in the portal?
    Try to use exactly the same image in both rows (drag-and-drop with CTRL key pressed).
    If then your problem still occurs, open a customer message. Describe your problem in detail and write technical name of the report you used.
    Regards, Karol

  • New variable in Report Painter - GRR2

    Hi,
    Can i create a variable with a value of table PROJ, the value is in Z field of table PROJ?
    I need to create a formula in report painter to take the field value PROJ table and multiply by the actual costs.
    Many thanks.
    Regards.

    Hi,
    Easier option is to create a profit center group excluding the dummy profit center and assign it in the report painter instead of the variable.
    Other option is at the time of executing the report, exclude the dummy profit center with out making any changes in the report.
    Regards
    Sudhakar Reddy

  • Conditional formula in report painter.

    Hello.
    I create new CO-PA report in KE31 transaction which is based on a form.
    In transaction KE35 I define the new form and in this form I want to create formula.
    This formula should be conditional. How to define conditional formula in that kind of form.
    I can also define key figure scheme in transaction KER1 but in this transaction I also don't see possibility to define
    conditional formula.
    Conditional formula means that some value fields should be summ and some value fields should be substract
    depending on the value of characteristics.
    How to solve this problem in R/3 4.6C?
    I am waiting for help.
    Best regards
    Bogdan

    Hi,
    I don't think that we can put the conditional formula. but we can do the calcualtion by row wise or column wise.
    Thanks.

  • Report Painter GRR2

    Hi All,
    I have added a row to the existing report pension account with GL Account 52540. saved the report and executed. but the row does not appear in the report when I run the report in GR55. I have checked all the settings. it appears okay to me.
    I do not know the reason why the line item does not appear. any help from you guys will be highly appreciated.
    Thanks in advance,
    J K Ganesh

    Hi Andreea,
    Select the line for which you wanted to change the Color....
    Now In Menu --> Formatting --> Select No color
    You Just need to ensure your Formula Component ID is right or not.
    Regards
    Sandeep

  • Report painter grr2- urgent!

    Hi!
    I introduced in GRR2 a new line (new set of accounts) and I udated the formulas (the total where this new line should be included). But I dont understand why this new line is shown in red colour!!!!! (like the lines with totals). Please give me an answer because I'm not sure if I did ok or not and it is urgent!!!!
    Thanks,
    Andreea

    Hi Andreea,
    Select the line for which you wanted to change the Color....
    Now In Menu --> Formatting --> Select No color
    You Just need to ensure your Formula Component ID is right or not.
    Regards
    Sandeep

  • Conditional Formatting for Report Rows based on page item

    Hi,
    I have a report and a page item on a page. I would like to somehow highlight any report rows where a particular column in the report (e.g. "Customer_ID") matches the page item (e.g. P2_CUSTOMER_ID).
    Any idea how to do this?
    Thanks,
    Forrest

    You can also achieve this by jquery ( Please note - I just started learning jquery , so my way of doing it may not be a good way of doing it)
    1. Download jquery from [http://www.jquery.com]
    2. In Page Header enter
      <script type="text/javascript" src="#WORKSPACE_IMAGES#jquery.js"></script>
       <script type="text/javascript">
       $(document).ready(function(){
          //t20data is the class for table cells in theme 20 .. change it as per you theme - right click view source and find it
             x = $('.t20data').length;
         //i=7 is the column index of customer id
        // i = i + 10 , 10 is the number of column
           for( i = 7 ; i < x ; i=i + 10)
                if($('.t20data').eq( i ).html() == $x('P2_CUSTOMER_ID').value)
                    // i-7 is the first cell of row and i+2 is the last cell of row 
                    for( c = i - 7 ; c <= i + 2 ; c++)
                         $('.t20data').eq( c ).css("background","red");  
    </script>[ E X A M P L E | http://apex.oracle.com/pls/otn/f?p=62171:1]
    Regards,
    Shijesh

  • While doing changes in GRR2 no transport request is generated( report paint

    Hi Gurus,
            when i am changing the report painter (GRR2), no transport request is generated.Actually when i am changing the following........
                  Trial balance......... liabilities          from               to
                                                                 100000           199999 (allready existing)
                                                                  600000           690000 (new range while doing this,not generated transport request)
    please do needful,
    Regards,
    Rmesh.

    Hi,
    Changes in report painter do not generate change request. You can either create a transport automatically by going to GCTR transaction or you can simply export/import the changes by going to GR37/GR38 transactions.
    Regards,
    Eli

  • Delete dot (...) in report painter

    Hi,
    I created cost center report on report painter (GRR2).
    And as attached, some dot (...) is remained in column text and cannot delete.
    It seems just text, but cannot be deleted.
    DO you have any idea what is it?
    Yoshi

    Hi
    Double click col header and try changing text from there by pressing below mentioned button. Also in formatting-row/column change text to medium length.
    Regards
    Rajneesh

  • Report painter:display of G/L with zero amount

    Hi,
    I have created a report in report painter for expenses by profit center. however the system is not showing the G/L for which no posting has been made although i have maintained those G/Ls in the report. Is there any way to display G/L with zero values also?
    I am running the report at fiscal year level.

    Hi, you can try to go the report painter (GRR2)
    Formatting - section layout - Columns make sure the suppress zero columns is unchecked
    and also you can go to Formatting - section layout - Columns  - Treatment of zero rows - Print Zero Rows
    Regards.

  • Report Painter - Account descriptions not showing

    Hi guys...I have created a balance sheet in report painter, using a library based on table FAGLFLEXT. this table does not have account descriptions in it, but only account number. The client wants to see the account description as well. Is there a way I include that in my report? Since we are using the new GL, i have used FAGLFLEXT. Please advise how I can accomplish this...can I use a view or a table join between FAGLFLEXT and SKA1?
    please help
    thanks
    Brian

    Dear Brain,
    In the report painter, GRR2, select your report and go to
    Formatting > Section layout
    Select the lead column tab
    Here in the Contents field, select "Key and description"
    That would resolve the issue.
    regards
    Venkatesh
    assign points if useful

  • Cross Conditional format in Pivot Table

    Hi Guys
    I have an important client requirement where by I need to present the data in teh following format
    CAMBODIA LAOS SRI LANKA
    KPI_NAME PROPOSED_TARGET_VALUE MIN_TARGET_VALUE Aug-09 Sep-09 Oct-09 Aug-09 Sep-09 Oct-09 Aug-09 Sep-09 Oct-09
    SERVICES PROVISIONING CALL RATE (%) <5% <5% 21.00% 68.00% 10.80% 1.300% 0.100% 1200.% 2.500% 5.000% 66.50%
    The table is like that :
         Measure     Indicator
    13     38     White
    17     1016     Red Green
    15     3456     White
    19     8644     Grey
    12     41605.886     White
    10     52647.007     White
    This is possible only through pivot table whereby country and period dimesions have been put in pivot.
    Also there is a requirement to paint the background colour in Red Amber Green ... and for that I ahve to create a new column where after comparing i can put the status as Red ..Amber ..Green and based on the cross column conditional formating I can paint the fact value like 21.00% (shown above) .
    But when I am importing that table in pivot view all the backgrounf colour vanishes. since cross column conditional formating is not supported in pivot.
    Is there any way out to achieve this requirement .
    Thanks

    http://oraclebizint.wordpress.com/2008/04/29/oracle-bi-ee-101332-conditional-formatting-based-on-multiple-character-columns-in-a-pivot-table/

  • How to select WBS element of Level2 on Report Painter

    Dear PS Masters.
    I made project which has 3 levels.
    I want to see the result of only level 2
    on the report of report painter.
    However, when I select WBS element of level 2,
    the report shows level2 and level3 together.
    So, I want to exclude the result of level3 from the report.
    In order to solve it,
    I tried to uncheck the checkbox of "INCL.HIERARCHY" on Database Profile.
    But, even though I uncheck it on IMG, SAP check the checkbox automatically again.
    Pls give your advice.
    BR
    Y.Kaneko

    Raghu,
    Thanx for your info.
    On the report of CJE0, I could find the hierarchy button.
    This is the one what I want!!
    But, I'm wondering that how can I show this button on the
    report which I made by report painter GRR2.
    Pls give advice.
    BR
    Y.Kaneko

Maybe you are looking for

  • Photo Downloader Adobe Bridge CS5

    Hi I wonder how i can save the import settings in photo downloader to always have same settings when extracting images? It always adjust it self back to default and i need to find my location again. Any suggestins? Also. When working in CS5, and i wa

  • Soundtrack Pro preview loops and non-loops are cut-off

    I need help with this issue. When I am going through the loop library/libraries, I click in a loop and it used to preview without an error, I am not sure when this happen, but now if I click in any audio clip from the loops and mixes libraries (about

  • Does Target Disk Mode work between FireWire 400 and FireWire 800 ports?

    Can I mount one as an external volume for the other Mac and vice versa? The one with FireWire 400 port runs on OS X 10.5, and FireWire 800 one has OS X 10.6 installed. If it works, I am thinking of buying an 800-400 adapter.

  • Aperture 3 - Can't send images to Photoshop CS3

    When ever I try to edit images within Aperture 3 using photoshop CS3 I get the following message: *Editing Error This image cannot be rendered for editing because Aperture does not support the image format.* So far I have updated Aperture to 3.0.1, I

  • User Specific catalog UI configuration - Custom catalog user role

    Hi all, We need different user specific layout settings for each user. i have duplicated catalog user role for each user and maintained specific named search for that particular user in constraint. but when we want to configure specific layout for in