Interactive report - No highlight in group by?

Apex 4.0.2
I use the IR Actions/Format/Highlight (cell) feature to color negative numbers red. This works fine for the regular IR view but when the same (numeric) column is used in the Group By view, the highlight doesn't kick in! And the Actions/Format/Highlight option is not available in this view either.
Is this a bug or am I missing something?
Thanks

VANJ wrote:
Apex 4.0.2
I use the IR Actions/Format/Highlight (cell) feature to color negative numbers red. This works fine for the regular IR view but when the same (numeric) column is used in the Group By view, the highlight doesn't kick in! And the Actions/Format/Highlight option is not available in this view either.
Is this a bug or am I missing something?I don't think it is a bug, because this happens on 4.1 as well

Similar Messages

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

  • Problem with column groups on Interactive Report

    Hi
    I am hoping that someone can help with this problem.
    I am attempting to control both the grouping and ordering within each group of fields in the single row view of an interactive report. Creating column groups appears to be OK at first (sequence, name and description) but if I then attempt to edit the group, the sequence box appears to be empty even though it was filled with a unique number at the time of creating the group.
    In addition, any changes to the order of the fields within the group made using the shuttle box at the bottom of the screen don't seem to be saved even to the Apply Changes button is pressed.
    Anybody know what is happening here and can anyone suggest how to control both the order of the groups and ordering within each group?
    Thanks in anticipation
    Martin

    Moun wrote:
    I am dealing with many interactive projects in my application. Sometimes I have to add a column to the interactive report. When I do so, the column doesn't appear in the interactive report...On the page I have to click on "Actions" then go to "Selected columns" and then display it ! the problem is when I logout and login again
    the column desappear again and I have to do samething again and again...Is there a way to set it appear by defaul always ???After adding new columns to an existing IR, you need to select them for display as a developer, and save the new report as the Primary Default.

  • Making raw breakes in Interactive report

    Hello
    I have build an application, which is a grading system - it is going to be used for a competition.
    In the main page of the application, I have an interactive report with all of the competitors, which are ordered by the highest marks they get.
    The top six competitors are going to the next round of the competition.
    I need to separate the first 6 rows of the report, from the rest of the report.
    Is it possible to make a break after the first 6 records of the interactive report? May be by modifying a select statement?
    Thank you for consideration.

    Wow, it's getting harder and harder to read posts here. People seem to be very casual with their writing. I don't know if it's because the forum is multi-national or people have gotten used to "IM-speak" or what.
    I'm just saying... How do people expect others to want to answer their question if they don't put in the time to ask it so it can be comprehended?
    Sorry, that was my rant for the day.
    As for answering your question, you would need to change your report query to add a column like this:
    row_number() OVER(ORDER BY competitor_score DESC) AS score_rank
    If you simply want to highlight those who go to the next round, customize the Interactive report to highlight rows where the score_rank <= 6.
    If you want the IR to to Group By, customize the IR to create a calculation, where if the score_rank <= 6, then "Move Forward", otherwise "Going Home". Then have the IR group by that new column. Or enhance your SQL query to do it. Something like this should work:
    SELECT d.*,
    CASE
    WHEN d.score_rank <= 6 THEN
    'Move Forward'
    ELSE
    'Going Home'
    END AS progress_groups
    FROM (SELECT ...,
    ROW_NUMBER() OVER(ORDER BY competitor_score DESC) AS score_rank
    FROM ...) d;
    Good luck,
    Stew

  • How can user specify HAVING clause in Interactive Report

    How can user specify HAVING clause in Interactive Report after making the group by selection? Under Actions/Format, the user sees just the Group By-Sort and Group By options.

    Hi ,
    Thanks for your information.
    I am new to the APEX.*i need to show Progress bar while opening the each page* then user can know some process is happening from the backside and i don't know where i need to add and call the below function.could you please provide the steps for the progress bar.
    In my application there are almost 100 pages are there so, i need to show progress bar on each page while opening .could you please provide Global function to call on each page.
    function html_url_Progress(pThis){ 
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    //doSubmit('APPLY_CHANGES');
    redirect(pUrl);
    Regards
    Narender B

  • Highlight current row on Interactive Report

    What is the best way to highlight (or identify) the current row in an Interactive Report?
    I’ve created an interactive report, based on a custom SQL query, with a link (on the primary key (id)) to give the user the possibility to select a certain record (that will show some additional regions with detail information). How can I identify (highlight, indicator) the selected row in an Interactive Report?
    Many thanks for your help,
    John

    I wanted the same without using jQuery. Roel's example set me on the right track. To ensure keeping my current row highligthing after using the pagination links I've managed to dynamicly modify the pagination link in the IR using javascript, but I have a little (I hope) problem left.
    I've managed to change the pagination link when rendering the page from
    <a h ref="javascript:gReport.navigate.paginate('pgR_min_row=16max_rows=15rows_fetched=15')"></a>to
    <a h ref=javascript:gReport.navigate.paginate('pgR_min_row=16max_rows=15rows_fetched=15');highLight(this)></a>Unfortunatly my added code does not notice the changes made by the gReport.navigate.paginate code. It does only work when I add an alert (); in my highLight code. This alert will force showing the changes made in the DOM-model by gReport, allowing the highLight function to re-exame the DOM-model and change the pagination link.
    Anyone an idea how to overcome this problem ?
    Kind regards,
    Ralph

  • Interactive report "group by" endsum is only a page-sum!

    Interactive report "group by" endsum (total for a numeric column) is only the sum of the values of the last page! Is this a bug?
    You can test on the page: http://apex.oracle.com/pls/otn/f?p=1949:1 User/password = apex/apex
    You see a sample - as png picture - on the page: http://progkor.inf.elte.hu/a/GroupByEndSum.png
    Albert

    john2013 wrote:
    Anybody installed the latest APEX? i believe it's 4.2.3.
    You can find out for yourself by requesting a workspace on apex.oracle.com, which always runs the latest production release.
    Could you please tell me
    is the limitation for interactive report "group by" action increased?  (3 columns max for my 4.2 version)
    No. Patch releases like 4.2.3 are never likely to include significant changes in functionality. They only provide bug fixes.
    I consider this is a major drawback...
    Interactive reports follow the 80/20 rule. They satisfy 80% of the requirements of 80% of users 80% of the time. If your requirements fall into any of the remaining 20% categories then you have to build something yourself. APEX is a development tool after all...

  • Issues with the Radio Group and interactive report

    Hi,
    I have an interactive report that shows customer names and associated revenues... I want my users to be able to filter customer list by Province and by City in a way that when the user select a province then only associated cities show up (driven by a table)... for the filtration I am using 2 Radio Group items (one for Provinces and the other one for Cities)
    Everything is working fine, except for the fact that when I select a province (let's say Prov A) and then select a city (let's say City A1) and again when I select another Province (let's say Prov B) I get the list of all cities associated to Prov B + city A1... Not sure why my previous selection of City is showing up with the list of new cities when I change the province... I SHOULD BE ABLE TO REST ALL CITIES WHEN A NEW PROVINCE IS SELECTED
    here is the code
    For interactive report
    select     CUSTOMER_NAME,
         SUM(YTD) AS YTD
    from     T_TABLEA
    where
    (PROVINCE=
    CASE
    when :P2_PROV = 'All' THEN PROVINCE
    ELSE :P2_PROV
    END
    and
    (CITY=
    CASE
    when :P2_CITY = 'All' THEN CITY
    ELSE :P2_CITY
    END
    GROUP BY CUSTOMER_NAME
    For Province Radio Group I am using a static list:
    STATIC2:All;All,Alberta;AB,Ontario;ON,Quebec;PQ,British Columbia;BC
    For City, I am using a dynamic list using following code:
    select 'All', 'All' return from dual
    union
    select distinct INITCAP(CITY) display_value, CITY return_value
    from T_TABLEA
    where
    Province = :P2_PROV
    order by 1
    Thanks

    Check the session state of items P2_PROV and *:P2_CITY* when the issue occurs and run the LOV query separately with the session state values.
    If that too fetches it wrongly, then you would need to change your query.

  • Interactive reports grouping issue.

    Hi
    I have a few interactive reports.
    I need to be able to remove the GROUP BY clause on any field when that field is removed from view by using the Select Fields feature in interactive reports.
    How can this be achieved?
    Regards
    Adam

    Hi!
    This is not possible with CRM interactive reporting unless you assign every employee to a manager role in the CRM Org Model (which would contradict it's purpose). Unfortunately, your request would contradict the central authorization principle behind interactive reporting.
    Due to this fact and because the expected data volume would also probably be too large to be handled by interactive reporting, I recommend to use BW reporting instead. BW is much better designed for large data volumes, and you do not have the Org Model restrictions as in interactive reporting.

  • Interactive report Group By functions support Number

    Dear All,
    I developed an interactive report that retrives its data from a package. Now i want to use a group by and use Max function.Since my columns' types are STRING, I cant use Max function.Does anyone know any solution for that?
    MAny thanks in advance.
    Best regards,
    Zahra

    john2013 wrote:
    Anybody installed the latest APEX? i believe it's 4.2.3.
    You can find out for yourself by requesting a workspace on apex.oracle.com, which always runs the latest production release.
    Could you please tell me
    is the limitation for interactive report "group by" action increased?  (3 columns max for my 4.2 version)
    No. Patch releases like 4.2.3 are never likely to include significant changes in functionality. They only provide bug fixes.
    I consider this is a major drawback...
    Interactive reports follow the 80/20 rule. They satisfy 80% of the requirements of 80% of users 80% of the time. If your requirements fall into any of the remaining 20% categories then you have to build something yourself. APEX is a development tool after all...

  • Highlighting a value in an interactive report

    Hi,
    I have an interactive report on which i have a column which displays either "Y" or "N". My requirement is to display "N" in bold and red color for every record having N. How can i make it work in my interactive report.
    Thanks

    Hi Andy,
    I am sorry but didnt understand what you are asking thats why i posted my query. I didnt understand what you meant by standard report column. It was highlighting N in my previous post because i didnt write my code in CODE tag. Npw please have a look.
    select "DBNAME" ,
    "DBID" "Database ID",
    "INSTANCE_NAME" "Instance Name",
    "VERSION",
    "CREATED" "Creation Date",
    "HOST_NAME" "Host Name",
    DECODE (DB_TYPE_CODE,'P','Production','D','Development','T','Test','Unspecified') "Database Type",
    "NLS_CHARACTERSET",
    "NLS_NCHAR_CHARACTERSET",
    "GLOBAL_DB_NAME",
    "SITE_CODE" "Site Code",
    "RECORD_CREATION_DATE" "Registration Date",
    "DB_STATUS" "Status",
    "COLLECT_STATS" "Collect Stats",
    CASE CONMON WHEN 'N' THEN
    '<span style="font-weight:bold; color:red">No</span>' ELSE 'Yes' END
    "Monitor"
    FROM "#OWNER#"."MONITORED_DATABASES"
    ORDER BY dbnameThis is a table column which i am displaying as it is. Is it what you meant by "Standard Report Column"?
    Salman

  • Xls/pdf Download Options not available in interactive report on group by

    Hello All,
    I have the similar problem like mentioned here:
    export from IR with group by
    there I didn't find any response, Please let me know why it is happening, is there any solution to this.
    thanks
    Tauceef
    Edited by: Tauceef on Feb 9, 2011 4:02 PM

    Can anyone please tell me why it is happening,
    is it a bug?
    or it is a property of Interactive Report which I can't change?
    Please, because I didn't find any documentation for this.
    Thanks
    Tauceef
    Edited by: Tauceef on Feb 14, 2011 6:47 PM

  • Controlling # columns in interactive report's Group By format?

    Hi,
    I have an interactive report with columns category, attribute1 to attribute 6.
    I want to generate a report of sum of attributes 1-6, grouped by category column.
    I see the group by option of interactive report is limited to only 3 columns. Is there a setting I can override to get more than 3 columns in my group by?
    Thanks,
    Zakia.

    use pivot table plugin read related blog ORA-00001: Unique constraint violated: Pivot Table plugin for Apex
    and use it in report.

  • Interactive Report Issue - Control Brake for Group By

    Hi all,
    is it possible to create "Control Brake" for the Group By view of the interactive report?
    I have the following IR with group by (Take a look at the GROUP BY View!!!): https://apex.oracle.com/pls/otn/f?p=2071:212
    Now I would like disable the lines with repetitive values. The report should be the following:
    CPU Type    CPU Speed    Count (CPU Types)
    ==========  =========    =================
    Celeron           366                    1
    Pentium I         100                    1
                      166                    1
                      200                    2
                     1200                    1
                     1700                    1
    Pentium II        366                    1
                      667                    1
    .Is it possible to realize it with interactive reports?
    Regards

    S-Max wrote:
    Perhaps any way using Javascript, jQuery, and s.o?
    Any Ideas?Use a standard report with break formatting or a custom row template.

  • Between operator for group by date in Apex Interactive Reports

    Hi,
    In the interactive reports filter, i couldn't find the 'between' operator for date field (got a 'group by date' in my sql query (source). I am just wondering, Is it beacuse of the group by date clause?. Is there any way to show the 'between' operator in the interactive reports filter.
    Thanks

    I just opened an existing IR style report, went to actions, filter, selected a date column and found between at the bottom of the list of values.. Are you sure the date you are trying to filter on is a true date column?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

Maybe you are looking for