Change color on Report Painter

Dear gurus.
Pls give idear about Report painter.
Now I am making comparson report between planned data and
actual data on report painter in order to check variance between them.
Column1: Planned data
Column2: Actual data
Column3: Variance between Column1 and 2
Then, I want to change the font color of Column3 only in
case that the variance over the criteria such as 10,000 $.
Do you know how to do it on report painter?
I don't care whether "Change color" or "make font Bold" or "Font blinking".
My purpose is to give warning to report's readers which record
they have to read carefully.
BR
yoshitada

Dear Sadashivan
Thanks for your info.
I tried the way you mentioned.
However, the thing I want to do is not to change the font color of specified column.
The thing I want to do is to setup the threshhold such as percentage or amount
and emphasize the data which over the threshhold by changing the color
automatically.
Thanks anyway.
BR
Yoshitada

Similar Messages

  • Change row's color in report painter

    Hi all!!!
    anybody knows how change row's color in report painter,
    for example
    number   name        |  money          
       7020   payments1 | 100.00   
       7021   payments2 | 200.00
        summary            |  300.00
    change color of row  "7020   payments1" and "7020   payments1"
    Regards!!!

    Hi,
    For it, first place the cursor on the row and choose Formatting > Row. In the next dialog box, select a color (for totals, subtotals, inserted rows, or for emphasis). The system assigns a color based on the selection you make here.
    Regards,
    SDNer

  • Changing header in report painter

    Hi All,
    I have a requirement to change the header(column). I am using the global variable &5PY(Period/Year) in the characterictics value. So it displays an output like 06.2008. But the client needs this to be displayed as June 2008.
    Kindly help me out with this.
    Regards,
    Karthik

    In report painter you can select variouselements based on which the data will be pulled. I haven't seen any report painter with two header lines and don't think report painter allows that. But for your requirement I believe you can select the periods in the header line itself.

  • Change Table in Report Painter

    Hi Experts,
    I have some Report Painter reports assigned to a Library.  I would like to change the table.  Is there a a way to change the table without re-writing the reports?  I can add a new table, but do not know how to remove the existing table without affecting the report. Does any one have an idea? Please advice.
    Thanks
    Kingsley

    Hi,
    I would like to change the assignment of the form.
    Yet it is assigned to a standard report and I would like to assign it to a report I have created.
    Ronan

  • Change color records report

    Hi,
    Is there a way to change the color of records based on a condition item?
    For example i want to change to red the records that have 'D' and to green those that have 'C'.
    'C' and 'D' values come from the query from database column SIGN.
    thnks

    Here is an example that really works. I got it from an article on the web:
    Query:
    select empno,ename,sal,
    case when sal < 1000 then 'red'
    when sal between 1000 and 2000 then 'purple'
    when sal > 2000 then 'green'
    end the_color
    from emp
    Navigate to
    Report Attributes > Column Attributes for “SAL” > Column Formatting > HTML Expression
    Enter: <span style="color:#THE_COLOR#;font-weight:bold;">#SAL#</span>
    Also, since, the_color is part of your query you can uncheck the "Show" checkbox for the field called the_color via Report Attributes

  • Change form in report painter KE80

    Hi,
    Easy question maybe but I can't find the solution...
    How is that possible to change the report of the form I have created in KE85 ?
    I have used a standard report and I would like to use another one for my form.
    Thanks in advance for your help,
    Ronan

    Hi,
    I would like to change the assignment of the form.
    Yet it is assigned to a standard report and I would like to assign it to a report I have created.
    Ronan

  • How to change order of report painter columns

    I have a report which shows the columns in one order when in design mode in GRR2 but when the report runs, the columns display in a different order.  When in design mode, you can see the actual output order by clicking the form overview button and selecting the columns tab.
    I am trying to figure out how to set the column order, short of deleting all the columns and recreating them.
    Does anyone know if there is an easy way to do this?
    Thanks all!
    Bob

    Doug,
    using MDC with SAP is ok. Try the following:
    - Use SE14->Edit->Storage Parameter->For new creation and specify the ORGANIZIE BY DIMENSION clause.
    - Go to the change-mode for the table in SE11. Switch to the 'Fields'-Tab and select the complete second line. Then click on 'Cut'.
    - Now select the first line in the same way and click on 'Paste'. By doing so you moved the field at position 2 to position 1.
    - Save the changes, click on 'Check' and, if that succeeds, click on 'Activate'.
    Hope that helps.
    Regards,
                                 Johannes

  • Changing color of report result in column

    I've seen a number of examples in these forums to use a CASE statement to return the result from a select into a CSS mark up structure to change the display attributes of the result depending on a particular condition.
    I've not seen a way to make it work when assigning the CASE statement to a plsql VARCHAR2. Any suggestions on how to fix this (I think it's issues with quoting)? The APEX error I get is; +"Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. "+
    The problem only occurs with the CASE structure in place. If replaced with i.QUANTITY_AVAILABLE (to just get the value), it works just fine.
    Here is the code.
    declare
       l_query varchar2(4000) := '';
    begin
       l_query := '
         select i.INVENTORY_ID,
                io.ORDER_QUANTITY,
                CASE
                   WHEN i.QUANTITY_AVAILABLE=0
                   THEN ''<span style="color:red;"> ''|| i.QUANTITY_AVAILABLE ||''</span>''
                   ELSE i.QUANTITY_AVAILABLE
                END,
                i.QUANTITY_AVAILABLE qty_avail_hold,
                i.STRAIN_CODE,
                i.STRAIN_NAME,
                i.GENOTYPE,
                i.AGE,
                i.SEX,
                (lower(substr(i.ROOM_NUMBER,1,instr(i.ROOM_NUMBER,''-'',1,1)-1))) ROOM_NUMBER
         from   SM_INVENTORY i,
                SM_INVENTORY_ORDER io
         where  io.ORDER_ID (+)= :F111_MODIFYING_ORDER
         and    io.INVENTORY_ID (+)= i.INVENTORY_ID';
    return l_query;
    end;Many Thanks!
    Paul
    Edited by: pgtaviator on Nov 3, 2009 10:24 AM
    Edited by: pgtaviator on Nov 3, 2009 10:24 AM

    Hi,
    Try
    declare
       l_query varchar2(4000) := '';
    begin
       l_query := '
         select i.INVENTORY_ID,
                io.ORDER_QUANTITY,
                CASE
                   WHEN i.QUANTITY_AVAILABLE=0
                   THEN ''<span style="color:red;"> ''|| i.QUANTITY_AVAILABLE ||''</span>''
                   ELSE TO_CHAR(i.QUANTITY_AVAILABLE)
                END,
                i.QUANTITY_AVAILABLE qty_avail_hold,
                i.STRAIN_CODE,
                i.STRAIN_NAME,
                i.GENOTYPE,
                i.AGE,
                i.***,
                (lower(substr(i.ROOM_NUMBER,1,instr(i.ROOM_NUMBER,''-'',1,1)-1))) ROOM_NUMBER
         from   SM_INVENTORY i,
                SM_INVENTORY_ORDER io
         where  io.ORDER_ID (+)= :F111_MODIFYING_ORDER
         and    io.INVENTORY_ID (+)= i.INVENTORY_ID';
    return l_query;
    end;

  • Reg: how to change layout in report writer

    HI all,
    how to change layout in report painter?
    regards
    JK Rao

    Hi everybody,
    I have a report painter using transaction ke30 and I want to change the header layout.
    Now it looks like that
    |_________|_________|
    But i want to add another header row above this row, so it will look like:
    |_________________________|
    |___________|_____________|
    Does anyone know the answer?
    Thanks a lot for your response
    Edited by: Vo Duy Pho on May 24, 2010 10:29 AM
    Edited by: Vo Duy Pho on May 24, 2010 10:37 AM

  • Report painter only done in PROD

    Dear all,
    We have one issue on PROD ,
    we have One report painter on PROD,but tha same is not there in DEV, QA . Actually which was done on only PROD , we need to customise that report
    I thing they have done on PROD only (bcoz which was done by previous support company)
    what should i do ...now FI consultant needs to change that specfic Report painter ....
    we have to customize  that report (specfic Report painter )
    can we make make copy from PROD to QA ?
    can we make that specfic Report painter from PROD to QA ...
    Regards
    Sathies

    > can we make make copy from PROD to QA ? ... you can  copy complete customizing and transaction data.
    >
    > can we make that specfic Report painter from PROD to QA .?....... You can do it but you have to change your production server details in SCC4 tocde. you have to create Transport request and you have change transport strategy................
    >
    Regards
    Siva

  • Report Painter: Change descriptions with *

    Hi
    I have a doubt: In the Report Painter >> the fields with *   Color Blue. Is possible to change the description or is Standard ??
    Merry christmas

    Please search for available information before posting, do not post basic questions.
    Thread locked.
    Thomas

  • Change font color in reports depending on condition

    I have an application that generates a number of new records at
    the click of a button, which the user can then modify through
    several report-form links. My users have requested that the data
    appear in one color in the reports if they have not yet updated
    the records, and that they change color, permanently, when
    updated. I'm not sure how to accomplish this. I do well with
    PLSQL, but I think this is probably a Javascript issue(?) - or
    is it possible to specify font color of a report when you call a
    URL?
    Any ideas anyone?

    Thank you, both Michaels. I was excited. I was sure this would
    work, so I added the updated_by fields to all my reports (they
    should be useful anyway). I worked on a couple of other issues
    related to this, and returnred this morning to add the HTML font
    tags to my report queries. I CAN'T MAKE IT WORK! I've attached
    my code, and error message. Any thoughts on what I'm doing
    wrong? Thanks.
    (Note: The query works fine without the HTML tags.)
    My code:
    select '<font color=red>'||activity.act_text||'</font>' act_text,
    from Activity, survey, temp
    where activity.survey_id = survey.survey_id and
    survey.survey_id = temp.survey
    Error message:
    Unable to describe SQL statement. Please correct it (WWV-13010)
    Invalid SQL statement: SELECT '<FONT
    COLOR=RED>'||ACTIVITY.ACT_TEXT||'</FONT>' ACT_TEXT, FROM
    ACTIVITY, SURVEY, TEMP WHERE ACTIVITY.SURVEY_ID =
    SURVEY.SURVEY_ID AND SURVEY.SURVEY_ID = TEMP.SURVEY (WWV-13005)
    ORA-01001: invalid cursor (WWV-11230)
    ORA-00936: missing expression (WWV-11230)
    Failed to parse as MCHBGA - SELECT '<FONT
    COLOR=RED>'||ACTIVITY.ACT_TEXT||'</FONT>' ACT_TEXT, FROM
    ACTIVITY, SURVEY, TEMP WHERE ACTIVITY.SURVEY_ID =
    SURVEY.SURVEY_ID AND SURVEY.SURVEY_ID = TEMP.SURVEY (WWV-08300)
    I appreciate your help. I'm tearing my hair out.
    Karli

  • Change font size and layout of reports in Report painter

    Hi,
    I want to change the print layout and the fonts of reports created in Report Painter.
    In the print output i am getting 40% of the total screen
    My requirement is to increase the font size and the print layout to fullscreen so that the report layout fits to the page.
    Kindly help.
    Parin

    Hi,
    Well i generate a report which has two three columns.....
    1) Description
    2) Column 1 for fiscal year 2009
    3) Column 2 for fiscal year 2008 for comparison
    Here after these columns we have unformated space as a column.
    Now we tried to hide this column but the system is not allowing to hide this.
    How can we remove this unformatted column/space from the print output.
    Thanking you,
    Parin

  • How can I change reports in report painter.

    Dear Consultants,
    I need to change report according to client requirment.
    1, Lay out change in std report.
    2, How can I customize report to get cost element group wise with sub totals one by one.
    Please tell me how to do it step by step, I'll will award full points.
    Kind regards,
    Arvey.

    Dear Arvey,
    1. Layout can be changes by going into report painter change transaction GRR2, selecting the report (by double click) and then going to Formatting-->Report layout.
    2. Second question is not very clear to me. pls provide more detail.
    Regards,

  • Report Painter - Change multiple selection criteria

    Hi Experts,
    I am new to report painter. I need to change a report which is being developed in Report Painter. I need to add extra selection criteria.
    Please help.
    Regards,
    Nitin.

    Please search for available information before posting, do not post basic questions.
    Thread locked.
    Thomas

Maybe you are looking for

  • [SOLVED] Why aren't the MIT/BSD licenses in the license package?

    The PKGBUILD Wiki page states that The BSD, MIT, zlib/png and Python licenses are special cases and could not be included in the licenses package. Can someone explain why this is?  I rather like both the BSD and MIT licenses. Last edited by pgoetz (2

  • Control VIEW cursor with SUD Dialog

    Hello, I've developed a little SUD dialog and sticked into the bottom of VIEW. I the TopArea I've "CurveChart2D". With the dialog I want to change the cursor type and mode (see code below) If I try to change the cursor from this script (the script is

  • Broken link for JUnit plug-in for JDeveloper

    The link from http://otn.oracle.com/software/products/jdev/htdocs/junitsoft.html to actually download the plugin is broken. Can you please fix this or send me the plug-in? Thank you!

  • Document heavy website

    Hello - I wanted to ask for some advice on how to use the iWeb more efficiently. I am webmaster of a fanfiction site that naturally involves uploading a LOT of text from submitted stories. So far what Ive been doing is creating pages that will allow

  • Required the transcation

    HI , I am using SRM 4.0. Is there any transcation for finding the shopping cart for the relevent vendor? please suggest me. Regards, Vinay.