creating a report to display the star of a measure ratings

Is there a way to create a business that shows a (measure) ranking in obiee?

Example:

Dim stars (measure)

type1                   *** (3)

type2                    * (1)

type3                    ** (2)

type4                    ***** (5)

type 5 * (2.5)

-

-

-

-

etc.

Thank you

Ravi

Hi Ravi,

If you are looking for a photo with celebrities you can use conditional formatting to replace your value by the number of stars (out of the box you have from 0 to 5 stars, but only "full" Star, if you want half of the stars you can provide your own photos).

Because it is based on a measure, you use this measure as a condition to set the number of stars.

Tags: Business Intelligence

Similar Questions

  • How to create a report based on the item selected from the list of selection?

    Hello

    I created a tables_LOV based on:

    Select table_name table_name user_tab_cols r, d

    where column_name like '% _type % '.

    Then I created a ListOfTables page element, display in a selection list and pointing to tables_LOV.

    I run the page, and I can choose the table I want in the drop-down list.

    How to create a report based on the selected element? (ex: select * from selected_table)

    Thanks in advance

    Salah

    Hi Salah,

    Allright, take a look at this page: http://apex.oracle.com/pls/apex/f?p=vincentdeelen:collection_report

    I think that simulates what you are trying to accomplish. I've implemented the simplest method I could think of.

    The report is based on a collection of apex. If you are not familiar with this, you should study the documentation: APEX_COLLECTION

    To recreate my example, you should:

    (1) create a report (interactive) on your collection

    SELECT *
       FROM APEX_collections
     WHERE collection_name = 'MY_COLLECTION'
    

    (2) create a selection list page_item for the tables that you want to display (in my case, this is called "P38_TABLES")

    (3) create a dynamic action that triggers on the evolution of your selection list page_item. Dynamic action must be a parade of PL/SQL procedure the following code:

    declare
      l_query varchar2(4000);
    begin
      l_query := 'select * from '||:P38_TABLES;
      if apex_collection.collection_exists
            ( p_collection_name => 'MY_COLLECTION' )
      then
        apex_collection.delete_collection
          ( p_collection_name => 'MY_COLLECTION' );
      end if;
    
      apex_collection.create_collection_from_query
        ( p_collection_name => 'MY_COLLECTION'
        , p_query           => l_query
        );
    end;
    

    Make sure that you add your page_item 'Page to send items' section.

    (4) add a real extra action that makes an update of the report area.

    Here are two photos describing the da:

    http://www.vincentdeelen.com/images/OTN/OTN_COLLECTION_REPORT_DA1.PNG

    http://www.vincentdeelen.com/images/OTN/OTN_COLLECTION_REPORT_DA2.PNG

    Good luck and greetings,

    Vincent

    http://vincentdeelen.blogspot.com

  • How o use an icon in a standard report to display the details by using a hyperlink with APEX 5.0

    Hello

    I work with APEX 5.0.

    I would like a report (classic) display a report of details (also classical report) using a hyperlink, but not a "text-hyperlink" like 'click here for details'.

    Instead, I want to use a small icon which will occur the same result when you click on.

    It works fine, when the hyperlink is defined as text like: 'click here for details'.

    When I try to use an image, I don't get the desired result.

    Here's what I tried to Hare:

    1)

    Link-> Link attributes, then filled column: src = "& WORKSPACE_IMAGES. "" #ICON_NAME # "width ="40"height = 40 ' or img src =" & WORKSPACE_IMAGES. " "" #ICON_NAME # "width ="40"height = 40.

    = > no picture for the items in the column, but the link already created for each column of the remains (and works)

    2)

    Formatting of column-> HTML Expression, then filled: < img src = "& WORKSPACE_IMAGES. "" #ICON_NAME # "width ="40"height = 40" >

    = > the image appears for each column element, but the hyperlink is gone.

    Somone has idea how to use a picture/icon to have a hyperling in screens reported a detail?

    Thank you in advance for sharing your experience.

    Kimd cordially

    Hi Patrick,

    Link to the column-> then filled:

    Link text = #ICON_IS #

    Link attributes =.

    Target = this Application Page

    Page = 5

    Article 1 = P5_DEPTNO

    Value 1 = #DEPTNO #.

    Article 2 = P5_DEPARTMENT

    Value 2 = #DNAME #.

    Put this   in the link text not in attributes of link

    Remove the code from the link attributes.

    I don't have how to make it the way that describe you.

    Apex. Oracle.com is a hosted version of application Express, you can build online applications.

    Go to this link and the application workspace https://apex.oracle.com/en/

    Hope this helps you,

    Kind regards

    Jitendra

  • How to create a report based on the selection of a node of a tree

    Hello

    I am new to Oracle Apex and tried to build a tree and also an interactive report based on column empno from emp table.

    I created a tree based on the emp table. Now, I want to see the records in the employee selected in the tree.

    This is the query of the tree:

    Select case when connect_by_isleaf = 1 then 0
    When level = 1 then 1
    of another-1
    end the status,
    level,
    'ENAME' as the title,
    NULL as an icon,
    'EMPNO' as value,
    NULL as ToolTip,
    NULL as link
    of ' #OWNER # '. " EMP.
    Start by "MGR" is nothing
    connect prior "EMPNO" = "MGR".
    siblings arrested by 'ENAME '.

    Can someone tell me step by step how to go from here?

    I tried to follow the thread Re: question of tree but could not understand a lot of it.

    The approach to reload the page and display the report is fairly simple.

  • You start by creating a new page element that will be used to store the selected node ID, for example. P100_SELECTED_NODE (you can do atext element and change hidden once everything works as expected)
  • Change the query of the tree and the link column in the SQL of tree definition to a link to the same
    for example if your page is 100, you'd do the tree node a link to the same page but the value of the P100SELECTED_NODE with id_ of the node selected
    This is done here
    {message: id = 4410987}
    In this case, it would be

    ' f ? p = & APP_ID.: 100 :'|| : APP_SESSION |': P100_SELECTED_NODE :'|| EMPNO as link

    Now when you click on a link to tree node, it would be back to the same page, but set the P100_SELECTED_NODE with the empno of the clicked node.

  • All that's left to do, change your report so that it refers to the new point inorder to filter records for this employee empno i.e

    SELECT ...
      ..
    WHERE empno= :P100_SELECTED_NODE
    
  • Creation of a detailed report to display the date today

    Hello
    I try to display today date in the format of narrative report form. Anyone know how to code in HTML format?
    Here is my code to display the date: -.

    < TABLE align = "left" >
    < b >
    < TD > < B > < / b > < table >
    < TD width = "520" > < table >
    < TD > < B > < / b > < table >
    < /TR >

    < b >
    < TD > to < table >
    < TD >: @1 < table >
    < TD width = "100" > Date < table >
    < TD >: < table >
    < /TR >

    Please advice. Thank you

    Laughing out loud. what David wanted to create a custom field in your report to step 1 and initialize it as CURRENT_DATE.
    then, at step 2 of report design, use the identifier of this new column instead of @1

  • How to create an application to display the 3 windows of each with different time zones as the window?

    Hi, I need to create a windows application using c# that will create three windows that display areas and the current time, the title of the window?

    PS: I use an event handler to update the current time.

    Hello

    To improve assistance to this subject, you can ask your question in the MSDN Forums.

    http://social.msdn.Microsoft.com/forums/en/category/visualcsharp

  • Create a report based on the Emails in folders

    Our emails are stored in specific folders depending on which group is the application or through electronic mail.  I have a group that wants to e-mail, daily/weekly reports for all their emails, but I don't have the bandwidth to collect and provide the information manually.  I am creating a report, will include e-mails from "their case" in E10, but I do not think that this is possible.  Anyone know or have a method they use?

    I have daily and weekly reports that are generated with these data for all emails that we send, but I don't want to share these reports because it's WAY too much information.

    Thanks for the help!

    Drewann

    Big question, drewannp... Unfortunately, file-based reporting is not available. Exist records for purposes of organization; If you have your emails carefully sorted in E-mail groups, you can run reports on this... but nothing for file-based. Sorry!

  • BAM Oracle report to display the number of records

    Hello

    We have configured a BAM report that displays data from a DB view. now, since my opinion has 100 records and we would like to show only 100 first records on the page of the report.

    I understand that this is possible by changing my request by adding rownum < = 100, but here we do not want to change the query.

    I have checked on BAM report property and do not see such a context...

    is it possible to MAKE BAM or another property setting. ?

    solved this problem by using the functionality available in BAM flight

  • issue of XML report while displaying the total in table @section

    Hi all

    face the question to the report xml editor.

    description of the problem:

    view @section block, I have the report total is there, it is the display of each page of the report, I want to display only the last page of the report.
    No matter what adea, please share...





    Thank you
    Nicolas

    Try this

    Just keep the total after the end of each, then you will get only on the last page.

    or

    Logic needed

    or send me the model and the xml I can try at my side. E-mail: [email protected]

  • Error in creating a report defined by the user in the grid control

    I am trying to create a simple report user-defined in the OEM grid

    Under the tab 'Éléments', I have a 'Type' - 'SQL database Table'
    And I have this "Declaration" - SELECT * FROM SYS. DBA_USERS


    When I click on the 'Preview' button I get this error.
    Element rendering Error. Exception: ORA-00942: table or view does not exist

    I'm connected like SYSTEM.


    Isn't the SYS. Table dba_users accessible by the SYSTEM?

    Any advice on what I'm doing wrong.

    Published by: bfee_sdc on October 19, 2010 09:12

    When you start access to non SYSMAN or you must realize that the database you are referring to objects MGMT_VIEW is the repository of OEM database. Is that what you want?

  • Report, which reflects the age of the service request with respesct to the Regio

    Hello


    Is there a way we could create a report that displays the following:

    The age (days) of the North-South Centre

    90 + 21 1 1
    60 - 79 2 32 2
    30-59 2 3 2
    10-29 1 2 4
    09 - 1 1 1 1


    What we are trying to do is to create a report that shows that how much SR are open age given to each region. For example one of the SRs, with age > 90 are open and which region.

    Note: The age = Diff between SR Date of opening and the current Date

    Any help would be really appreciated.


    Thank you

    Ahmed

    Hi, something like this can help you

    CASE
    WHEN (TimestampDiff (SQL_TSI_DAY, "Closed Date". To date, "Date Opened". (Date) > 90) THEN ' AGE > 90'
    WHEN (TimestampDiff (SQL_TSI_DAY, "Closed Date". To date, "Date Opened". Date) > 59 AND TimestampDiff (SQL_TSI_DAY, "Closed Date". To date, "Date Opened". Date)< 91)="" then="" 'age="" 60="" -="">
    ANOTHER '' nothing. ''
    END

    -John CRMIT

  • Implementation report in shape to display the header of the column on the left, right, with values

    Hi guys,.

    I created a report that copies the data on my table (the usual apex report).

    Basically I want to format the output of my data like this:

    ID of the database: 14
    Name of the database: Oracle 11 G
    Build databases: xx... xxx

    Is it possible that I can do the report format so it displays the headers on the side instead of up as result of the SQL query.


    Thanks a lot guys.

    Published by: AI November 30, 2011 22:00

    I wrote:
    Looks like one I need is

    Paging & page layout > Template1: value attribute pair

    When I format it as I would in MS Word so headers aligning left (instead of Center) and right values?

    Have you tried to set column alignment/topic alignment properties in the report column attributes?

    Thanks a lot guys. Sorry, I'm very new to this SUMMIT.

    You will get a faster, more effective response to your questions including information as much information as possible from the outset. This should include:

  • Full version of APEX
  • Edition and the full version of DB
  • (EPG, SST or APEX listener) Web server architecture
  • Browser (s) and version (s) used
  • Theme
  • Model (s)
  • Region/item (s)

    With APEX, we are fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things is the best way to solve most of the problems.

  • APEX4: How to create a report whose data are based on the date of entry of the user fields

    With the help of 4 Apex I create a report that allows the user to enter two dates and displays a report between the date range.

    How can I do this?

    Thank you.

    Go to Actions > filter in your IR and ther, you can create several conditions to filter your report.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • Anyway to create a SCAN REPORT of just the table you have scanned?

    I need to create a report of just the scanned... table and I hope that the records affected that need to be cleaned up/edited.

    I tried to export the analysis report after I did the scan and he wanted to export the entire database analysis report, which I did not need.
    I need to be as granular as possible.

    Thank you

    You can open the analysis report, and then select the filter "scanned".

  • Display the page number and the total number of pages in a single domain. Is this possible?

    I would like to than my report to view the number of page in the format "< page number > of < total page >", as "2 of the 6". Rather than create 2 fields to display the page number and the total number of pages and 1 label to display the word 'from' in the Middle, can I combine all of this into one? If so, how?

    Note: I woud wants to use "physical page number" as "total physical pages" and page number as the total number of pages.

    Published by: 1008305 on June 6, 2013 19:31

    Hello

    It is not possible to write in a.

    Even I try for the same, but didn't find any solution.

    We ave only two options to display the page number;

    1.) reports under construction Page number option: string will be: page & to &

    2.), we can take 2 text field that displays the page number and the total number of pages with 'from' lable inside the two text fields.

    IF any new you will come to know then.

    Thank you

    SHAH HARD

Maybe you are looking for

  • The video memory of Tecra M3 could be increased?

    I have a tecra M3 with a 64 MB display memory. I would like to expand this to 128 MB. Anyone know how I can do this?Thank you. Friday

  • WiFi does not work on Iphone5

    Since the upgrade to iOS 9.2, wifi doesn't connect. I rebooted, restored from a backup, no joy. The iPhone connects to iTunes (windows) OK. Should I restore the OS? TIA

  • R61 missing drivers

    Hello I reinstalled my R61 (8918-5QG) with Windows 7 Ultimate x 64. Everything is fine, but the drivers are missing for both devices (?). They are: PCI Bus 21, devices 0, function 3PCI Bus 21, devices 0, function 4 You know that I have to download th

  • deleting files of errors

    I have 2.7 GB of error/dump files can you remove all these files system safely, if you do NOT experience the issues/problems? Yes or no, I know how cleaning disc, which is not the question of question.the is safely DELETE these files and ERROR?

  • New app won't show 'my news'

    The 'News' bing app shows only 'sources '. So I can't add RSS - how to fix this? There is no 'Bing Daily', 'My News' or 'Vidéo' when I right-click.