Display the contents of the Table

Hello

I must show the following table in a page of dashboard with the lines as shown below. The content of the first column is the details of the measure and the second column is the actual value.

1st row: Total revenues for the current year $12 150 000
row 2: total expenditures for the year current $11,110,000
rank 3: number of employees in the Organization 35
rank 4: Attrition rates for the current 3% year

How can I show this because
1. each row comes from a different set of fact and dimension tables
2. each value in the second column (i.e. measure) should point to a unique url. Here when the user clicks on a $12 150 000, she must take the user to a url and clicking on $11,110,000, it must take him to a different url.

All suggestions are apprectiated.

Thanks in advance

Create a report that contains at least 4 columns you need. (fi c1, c2, c3, c4)
Create a narrative view:
Total revenues for the current year <.a href="url">@1<.>[br]
Total spending for the year <.a href="url">@2<.>[br]
Number of employees in the organization <.a href="url">@3<.>[br]
Rate of attrition for the year <.a href="url">@4<.>[br]

Replace the<. with="">

What about John

http://obiee101.blogspot.com/

Published by: John Minkjan, January 15, 2009 22:59

Tags: Business Intelligence

Similar Questions

  • Using the procedure to display the table of multiple data

    Hi, I need help for the procedure in oracle

    I want to create the procedure to display the table of multiples with sample plan

    with a parameter imployee_id to display an employee_id, name, function, start_date, end_date

    IAM using this query to select more than one table

    SELECT e.employee_id, e.first_name, j.job_title, h.start_date, h.end_date

    E EMPLOYEES

    JOIN j jobs

    ON j.job_id = e.job_id

    JOIN the job_history:

    ON h.employee_id = e.employee_id

    WHERE e.employee_id = 200;

    Thanks for the help

    Blu and Billy showed you the 'real' solution. You can display the data returned by a cursor ref in SQL Developer, too:

    http://www.thatjeffsmith.com/archive/2011/12/SQL-Developer-tip-viewing-refcursor-output/

    Yet as a duty for a beginner is generally do not have the expected solution. Usually, teachers want to see you using a LOOP and dbms_output. something like

    DECLARE

    Xy CURSOR IS

    SELECT whatever

    As much as;

    BEGIN

    FOR r IN xy LOOP

    dbms_output.put_line (r.col1 |' # ' | r.col2);

    END LOOP;

    END;

    Of course this suggestion will inaugurate a discussion abusing DBMS output but I keep my position that it is authorized to use it for learning the basics.

  • error displaying the tables of mysql in the data Panel

    I try to display the tables on my local mysql (MySQL 5.1 v) database. I get this error in the data panel when I develop the tables:

    "When executing getComponentChildren in Connections.htm, the following JavaScript error has occurred:
    "On line 64 of the file"C:\\...\Dreamweaver 8\Configuration\Components\Common\Connections\ConnectionsCommon.js": TypeError: dwscripts.isDateDBColumType is not a function".

    When the elements of array must be listed, I just see a branch that says "Loading"... "and it just sits there. I have the 8.0.1 update installed and just cannot know what the problem is. I have several installed extensions (especially WebAssist and a few others).

    Someone knows what to do to fix it? Am I missing some info compatibility?

    Thank you...

    Good goooollllleeee. Reinstall Dreamweaver seemed to do the trick.

    Now, to reinstall the extensions and see if it was one of those who killed my previous installation...

  • How can I display the table of contents for the iPod Touch to 6

    When I opened first of all iPod Touch Users' Guide, I used the table of contents (TOC) to locate and access sections in the manual. But, after looking through the manual for awhile, I tried to return to the table of contents, but it wasn't there! I have tried various things to see if the table of contents are being hidden, or if in some way, it has been deleted. Anyone can shed light on this mysterious event?

    What is the version of iBooks that you speak? There is an online version here: https://help.apple.com/ipod-touch/9/ Aha, I see the table of contents on the left disappears if you zoom before or make the narrow window and reappears if zoom you out or make it larger.

    TT2

  • will not display the table correctly; displays OK in Internet explore all versions

    Table will not correctly display in Firefox; Removes the first section of < b >... < /tr >, move the section 2 of < b >... < /tr > right. The table shows correctly in all versions of IE.

    You should never use several hyphens in a comment.
    Firefox will toggle the status comment after that each two hyphens (-), if you need a lot of luck with this many as in this case:

    <!----------------------------------Geograhphy, etc. ------------------------------------>
    

    Firefox treats the code that follows as comment until the next two "-" found in the next section. You can see through view > Source of Page as green comment.

    <!---------------------------------- Accessibility ------------------------------------>
    

    You're code here shows a < td > additional vacuum that causes a column empty to appear to the left, if that's what you mean.

    <!--<center>-->
    <TR align="center">
    <td>
    <td>
    <Font color="#ff00cc">
    <h2>Charleston</h2></font></td>
    <td>
    <Font color="#ff00cc">
    <h2>Savannah</h2></font></td>
    <td>
    <Font color="#ff00cc">
    <h2>Recommendation</H2></font>
    </TD>
    </TR>
    <td>

    You can use the DOM Inspector to examine the code.

  • How to display the table HP V1900 - 8G switch MAC address

    Hello!

    Someone probably knows...

    Is it possible to display the MAC addresses of computers connected to the switch HP V1900 - 8G (ditch the WEB or CLI). All managed switches, I worked with had something like "MAC address Table" or more to display the MAC address of the switch table.

    I found it by myself. There is a function under Tools/system that allows to download MAC table as a txt file.

    Manual switch, you can see only screenshot that there are these functions, but no description on it at all. You must pass your manual!

  • JTable with custom column model and model table does not display the table header

    Hello

    I create a JTable with a custom table model and a custom column template. However the table header is not displayed (Yes, it's in a get). I have narrowed the problem down in one compilable example:

    Thanks for your help.
    import javax.swing.*;
    import javax.swing.table.*;
    
    public class Test1 extends JFrame
    {
         public static void main(String args[])
         {
              JTable table;
              TableColumnModel colModel=createTestColumnModel();
              TestTableModel tableModel=new TestTableModel();
              Test1 frame=new Test1();
    
              table=new JTable(tableModel, colModel);
              frame.getContentPane().add(new JScrollPane(table));
    
              frame.setSize(200,200);
              frame.setVisible(true);
         }
    
         private static DefaultTableColumnModel createTestColumnModel()
         {
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
              columnModel.addColumn(new TableColumn(0));
    
              return columnModel;
         }
    
         static class TestTableModel extends AbstractTableModel
         {
              public int getColumnCount()
              {
                   return 1;
              }
    
              public Class<?> getColumnClass(int columnIndex)
              {
                   return String.class;
              }
    
              public String getColumnName(int column)
              {
                   return "col";
              }
    
              public int getRowCount()
              {
                   return 1;
              }
    
              public Object getValueAt(int row, int col)
              {
                   return "test";
              }
    
              public void setValueAt(Object aValue, int rowIndex, int columnIndex)
              {
              }
         }
    }
    Published by: 802416 on October 14, 2010 04:29
    added
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    See http://download.oracle.com/javase/6/docs/api/javax/swing/table/TableColumn.html#setHeaderValue (java.lang.Object)
    When the TableColumn is created, the default headerValue is null
    So the header ends up rendered empty label (probably of size 0 if the JTable calculates its size of header based on the size of the default rendering tool).

    It worked:

         private static DefaultTableColumnModel createTestColumnModel()
         {
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
                    TableColumn col = new TableColumn(0);
                    col.setHeaderValue("Header Title");
              columnModel.addColumn(col);
                    return columnModel;
         }
    

    Published by: jduprez on October 14, 2010 14:09
    Beaten by a fraction of a second!

    Published by: jduprez on October 14, 2010 14:10
    OK, by a split of 17 minutes, specifically: o)

  • A menu button using custom on the slide to open and close the table of contents of Captivate 7

    Hello

    I have a custom menu button. When the user clicks on I want to see the table of contents, (I see there is a State to display the table of contents), but when the user clicks on the same menu again button on this slide how to hide the table of contents. IE, go hide and show.

    Thank you

    Captivate 7.0.1 contains a rocking action that allows you to enable a Boolean variable (for example the system variable that displays or hides the table of contents), and shutdown.  Use this action.

  • Parent to see the table of contents in the project of the child

    Hello

    I will have difficulty to display the table of contents merged into the project of the child.  The application, I work with called via a URL.

    When I open one of the child htm files after generating locally, I see the contents of the Parent table.  But when I move the project to the server via FileZilla and display help via the application, the Parent html files is displayed the table of contents merged, but the child shows only the TOC of the child.

    I have read all the info on the site of Peter Grainge, but can't see what I can change to make it work.

    http://www.Grainge.org/pages/authoring/merging_webhelp/merging_method_original.htm http://www.Grainge.org/pages/Authoring/merging_webhelp/merged_help.htm

    In settings of WebHelp, Show merged TOC in the child project is enabled for the Parent.

    I tried to experiment with the different calls of URL described on the website of Peter, but if I use the suggested format (X:/helpfolder/startpage.htm#mergedprojects/child_project/target_topic_1.htm) I find myself with the two tables of contents showing.

    8-6-2013 2-34-17 PM.jpg

    For any help or suggestion is appreciated!

    Note: Using RoboHelp 9 and generating WebHelp.

    Thank you

    Natalie

    It is a common mistake. Somewhere in your configuration, you claim the home page when you call the default theme. Maybe in your redirection?

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Error JavaScript prevents the table of contents, Index, search view

    I produced my RoboHelp HTML project webhelp and got an error javascript (this.maCom [...] (' is null or not an object) when you view the result. See the full error text below. So the table of contents, index and search are not displayed. We'll find the javascript error in the status bar of the browser that says "error on page". I found that if I saw the result of robohelp, the browser that launched shows the table of contents, index and search, but has a security warning about a restriction of running scripts or ActiveX controls. However, when I move the generated webhelp on my production server, the help doesn't have the security warning, but produces the error so that the table of contents, index and search do not show. I had done the same process to generate webhelp about 8 months ago but had no error whatsoever. In fact, this version is still in production and works very well.

    In my search for the problem, I found that it is the same error as message of the forum 4063663 (http://forums.adobe.com/message/4063663). I didn't have a second system with RoboHelp to be able to get other whphost.js, however, I have diff had the file generated with that found in template_stock and found only two different lines. These differences were only to replace a couple of variables with static text so I do not replace this file will solve any problem for me. That is the message of only forum I could find who addressed this issue.

    I was originally on RoboHelp 8.0.0 when I first encountered the problem, but has expanded and patched to version 8.0.2 and still had the same problem. I even created a new simple project. Once I moved the simple project on the production server, it also would display the table of contents, index and search.

    The strange thing is that only 8 months ago, I used the same process to generate webhelp without any errors (on 8.0.0). The only thing I can find is there is a Windows XP patch which affected the generation of webhelp. Furthermore, I also tried chrome and also produces the error.

    I don't know what is causing this problem or how to solve the problem. Anyone have any ideas?

    Versions:
    RoboHelp 8.0.2
    Windows XP
    IE 8.0.6001.18702CO
    Chrome 18.0.1025.168 m


    JavaScript error
    -------------------------
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0 .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729;. MS - RTC LM 8; InfoPath.2;. NET4.0C;. NET4.0E)
    Timestamp: Sun, may 2, 2012 16:32 UTC


    Message: Object EXPECTED
    Online: 344
    Char: 2
    Code: 0
    URI: http://server1/robohelp/whphost.js


    Message: 'this.maCom...' is null or not an object
    Online: 171
    Char: 3
    Code: 0
    URI: http://server1/robohelp/whphost.js
    --------------------------

    After further research and testing, I found the update of security for RoboHelp 8 and 9 (http://www.adobe.com/support/security/bulletins/apsb11-23.html) posted as an ad that I had not seen before. I used the feature updates of the product, but that said I was informed and did not include this update.

    Both javascript in this update files solve the problem. The table of contents, index and search now appear.

    Update:
    As I studied the problem further (when writing this reply), I found files that are newer than the latest security patches, I was aware of that. In addition, I discovered that my security organization decided to patch with APSB12-04 I don't know. This patch is why my 8.0.0 installation magically stop working. I see the announcement of the security, the bulletin was not all the required components for specific, that the patch can be applied to 8.0.1 and 8.0.2). (8.0.0, Adobe, please give more information on the ballots of so that organizations that deploy auto will be forced to find out what is running before the update. Information such as whether they apply to all versions of Robohelp 8 or simply a specific version. If APSB12-04 was supposed to apply to all versions of 8, then it did not work. In fact, he broke my installation of 8.0.0 for the generation of webhelp, but a later installation of 8.0.1 and 8.0.2. It seems that they have done a better job for APSB11-23. Maybe the security updates should be a kind of service pack that has a plant and a cancellation process. Right now, my security organization has replaced the files based on the specification in the security bulletin.

    I'll try to patch with APSB12-04 new since I've updated version 8.0.2 database to see if I still have the webhelp. If I can't view the table of contents, I have to take off once more and be 'in non-compliance."

  • What is the best way to have an indicator that scrolls the content of a table that is updated during the execution of a program?

    I have a program that runs continuously. During this time the errors are produced and I store them in a table. What is the best way to display the table in a window that the user can scroll upwards or downwards, while the program is running?

    Thank you.

    Hi chuck,

    If allowing you to feed two tables to the table you will see also all of these channels in the table

  • ADF table selected displayRow does not display the selected line

    Hello

    JDev 11.1.2.4

    I have a table with selection enabled and displayRow property the value selected. In the workflow, I have an ExecuteWithParams activity, and then a method activity that restores the current iterator of the line. Finally the activity view that displays the table.

    Restore the current line with key

    Iterator DCIteratorBinding = ADFUtils.findIterator ("MyIterator");

    iterator.setCurrentRowWithKey (currentKey); currentKey is a string

    The question I have is that the current line is properly restored, but the table does not display the page of "range" of the current line while the displayRow is the selected value. My table has 500 rows, the table displays the top 25 while the current line is the 500th line. I expect the table to display the line 475 to 500 line.

    What I am doing wrong?

    Thank you

    You can save the index lines before executing your method and then set the iterator to this index.

    The technique is described in this blog https://tompeez.wordpress.com/2016/02/12/naviagting-an-aftable-in-pagination-mode-from-a-bean/

    Timo

  • Write to the table, adding additional rows in the csv file

    Hi all

    I created a program that measure current over time.  It works well, but when I write to the spreadsheet, there are additional lines between the row of data.

    I've created a header file, which is passed into the while loop where the data entered in a table and then entered in the worksheet.  If I simply display the table, there is no additional lines, but when I open the file csv in excel, there are more lines.  I'm pretty new to labview, but everything works the way I want to (it's a simple program) apart from that.

    There is a trolley or jump back in your chain of row data.  You can get rid of that by adding a "trim whitespace" function between the function of "visa read" and "replace the subset of the table.

  • Count when the boolean function is true / complete the table

    Hi all

    I think that this is a task fairly easy, but for some reason, I can't get it to work.

    The problem is explained below:

    I have 3 slider that gives either 0,1,2. I have a button "next" which is actually a Boolean button. Every time I click on the 'next' button, I want the values of the scabbard 3 (0,1,2) to go into a table. The array index is decided by how many times I clicked on the button "next". Basically if I click Next the first time, the values should go to the 0th row, when I clicked on the second time, he should go to the first line, etc... This should continue to happen until I click on the button stop, when it should display the table populated with its index corresponding to me.

    I tried to use a program for a Boolean County who continually keeps count how many times I pressed the next button. But this loop continues indefinitely. Otherwise, it starts from 0. I don't know how to do it well.

    The program is presented here with comments.

    Help, please

    Gayatri

    You should really use a structure of the event.  Keep the table in a shift register and simply use table build to y to add whenever the next value change event will occur.  Have another event for the stop button.

  • Need help to insert rows in the table to a custom table area

    Hi all

    I have a requirement as below.

    I have a page of the i invoke a popup search page and displaying the table data in the area of the table, this table I select lines and pressing the button and given in the basic page in the region of the table being filled, of data, I need to insert these lines into a custom table. Please help me how to achieve this. Basically, I need to insert rows from one table to a custom table region.

    Thnaks

    Hello

    Review the link, below, may be it will help you:

    https://forums.Oracle.com/thread/953885

    https://forums.Oracle.com/thread/2151775

    Please share your solution here, it will help others.

    Concerning

    Mahesh

  • Rank of coloring in the table - small helps

    Hi, I tried ti Display the table in two colours alternately.

    There is a group of straight. After the grouping clause... I put a condition that says:

    < xsl: choose >

    < xsl: When test = "position () mod 2 = 0" >

    < xsl: attribute name = 'background-color' xdofo:ctx = 'incontext' > Rose < / xsl: attribute >

    < / xsl: When >

    < xsl: otherwise >

    < xsl: attribute name = 'background-color' xdofo:ctx = 'incontext' > orange < / xsl: attribute >

    < / xsl: otherwise >

    < / xsl: choose >


    But, I could see only this particular cell where I put the condition, this cell unique coloring alternately (first cell) instead of the whole line.

    You can use several if conditions like this.

    Red
    Yellow

    Or you can have a default background color and under certain conditions apply other color.

Maybe you are looking for