Do we need pivot table to get this out put??

Experts-
I have a hierarchy to implement.with 7 levels.
At present I am dragging those 7 columns in my report sie by side and getting this output
http://img510.imageshack.us/img510/5194/pic1wp.jpg
But I need this output.
http://img10.imageshack.us/img10/9929/pic2cs.jpg
What should I be using?

MiniDisplayPort-to-? adapter, available at Apple stores and Best Buy and antplace selling Apple.  Plugs into the Thunderbolt or "lightning bolt" port.
Replace ? with HDMI or VGA or DVI.
Know that TVs spave pixels further apart, for viewing at 10-15 ft instead of close as monitors do.  Makes viewing small text at 10 ft difficult sometimes.
Another poster also recently reported that using the mouse on the external display is "laggy".  Some models of Mac have only a graphics card integrated into the CPU (which can be challenged by running a big external TV) and some have a "discrete" or "second" graphics card that handles TVs better.

Similar Messages

  • Error code: MobileMe Services has encountered a problem and needs to close - I get this message everytime i open Outlook and it slows down opening?  This problem started when itunes updated

    Error code: MobileMe Services has encountered a problem and needs to close
    I get this mesage everytime i open Outlook and it slows down opening. This problem started when itunes updated. What do I do to solve this?

    Hi turingtest2 (you pass, BTW):  Thanks for the speedy reply.  MobileMe doesn't appear in the list of programs which can be uninstalled.  I tried the link you suggest: http://support.microsoft.com/mats/Program_Install_and_Uninstall but when I tried to "Run Now", I get the error message:  " Troubleshooting cannot continue because an error has occurred... etc.... [code 80072F8F]"  So googled this error & found a tool called (80072f8f) Repair Tool   -  I'm leery to download yet more stuff from non-microsoft sites -- any recommendations?

  • HT5167 When I try to install the update"MAC OS X Update Combined, I get a message that says it cannot be saved & connection reset by peer.  What do I need to do to get this update installed.  I just purchased my first iMAC and don't know anything about it

    When I try to install the update"MAC OS X Update Combined, I get a message that says it cannot be saved & connection reset by peer.  What do I need to do to get this update installed.  I just purchased my first iMAC and don't know anything about it.

    Try here:
    http://support.apple.com/kb/DL1524

  • Why do I get this Out of memory, how can I prevent it?

    Hello
    I have an annoying problem that never has occured before....
    I use JSP with Beans, I know that the problem lies in my method "setIntotable()"
    because its just that method that is called in current JSP-page when I get this Out of Memory error.
    All information regarding matches+players are stored in a mysql-database
    When I'm about to summerize everything and create a new "table" with fresh data+ranking I get this Out of memory error. I havent made any changes so I think its strange that I suddenly get this error. Below is my syntax:
    ......................syntax for method "setIntotable()".........................................
    public void setIntotable(){
    int noOfRows;
    String fnamn1 = "";
    String enamn1 = "";
    String fnamn2 = "";
    String enamn2 = "";
    Vector matcher = new Vector();
    matcher = readTider();
    Vector players = getPlayers();
    Player player1 = new Player();
    Player player2 = new Player();
    try {
    Connection con2 = DriverManager.getConnection(fileURL, "", "");
    Statement u = con2.createStatement();
    String s = "TRUNCATE TABLE totaltiddiv";
    u.execute(s);
    u.close();
    con2.close();
    int q = 1;
    Connection con = DriverManager.getConnection(fileURL, "", "");
    Statement updateStatement = con.createStatement();
    for (int i = 0; i < matcher.size(); i++) { //matcher  has a 200<size
    Totaltid t = (Totaltid) matcher.elementAt(i); //Se below which parameters Totaltiddiv has
    String query1 = "INSERT INTO totaltiddiv VALUES('" + t.tidnr + "','" +
    t.tidnrinv + "','" + q + "','" + t.bana + "','" + t.tid + "','" +
    t.datum + "','" + Integer.toString(Integer.parseInt(t.division)) +
    "','" + t.matchindex + "','" + Integer.parseInt(t.division) + "','" +
    0 + "','" + "','','" + "','" + "','','" + "','" + "','" + "div" +
    Integer.toString(Integer.parseInt(t.division)) + "rank" +
    t.matchindex.substring(0, 1) + "','" + "div" +
    Integer.toString(Integer.parseInt(t.division)) + "rank" +
    t.matchindex.substring(1, 2) + "','" + "','" + "','" + "','" +
    "','" + "','" + "','" + "','" + "','" + "','" + "','" + "')";
    noOfRows = updateStatement.executeUpdate(query1);
    q++;
    updateStatement.close();
    Statement selectStatement = con.createStatement();
    for (int i = 0; i < matcher.size(); i++) {
    Totaltid t = (Totaltid) matcher.elementAt(i);
    String query2 = "SELECT * FROM playerdiv WHERE totalkey='" + t.p1key +
    ResultSet rs2 = selectStatement.executeQuery(query2);
    while (rs2.next()) {
    fnamn1 = rs2.getString("fnamn");
    enamn1 = rs2.getString("enamn");
    rs2.close();
    String query3 = "SELECT * FROM playerdiv WHERE totalkey='" + t.p2key +
    ResultSet rs3 = selectStatement.executeQuery(query3);
    while (rs3.next()) {
    fnamn2 = rs3.getString("fnamn");
    enamn2 = rs3.getString("enamn");
    rs3.close();
    selectStatement.close();
    String update = "UPDATE totaltiddiv SET p1fnamn='" + fnamn1 +
    "', p1enamn='" + enamn1 + "', p2fnamn='" + fnamn2 + "', p2enamn='" +
    enamn2 + "' WHERE p1key='" + t.p1key + "' AND p2key='" + t.p2key +
    System.out.println(update);
    noOfRows = updateStatement.executeUpdate(update);
    updateStatement.close();
    con.close();
    catch (SQLException sqe) {
    System.out.println(sqe);
    ------------------------------Tottaltiddiv-----------------------------------------------
    public String tidnr;
    public String tidnrinv;
    public String idnr;
    public int bana;
    public String tid;
    public String datum;
    public String division;
    public String matchindex;
    public int tiddiv;
    public boolean ledig;
    public int rank;
    public String p1fnamn;
    public String p1enamn;
    public String p2fnamn;
    public String p2enamn;
    public String p1key;
    public String p2key;
    public int set11;
    public int set12;
    public int set21;
    public int set22;
    public int tie1;
    public int tie2;
    public boolean wo1;
    public boolean wo2;
    public boolean spelad;
    public String wonevenloss;
    public int diff;
    Every parameter above is in range of 1-50 charachters
    I cant see what should bee "eating" all the memory?
    Would be very glad if anyone could help me.....
    Thanks in advance /D_S

    That's some ugly procedural code you've written there. What is this, VB?
    Well-decomposed code would say write short methods that each do one thing well.
    If I were you, I'd decompose this method into several and test each one individually.
    One advantage of this will be narrower scope. The garbage collector will have a chance to clean up some of your mess that way.
    I don't know what all those declared variables at the bottom are about. Are those class members or something? Why are they all public?
    Please don't tell me this is scriptlet code in a JSP...
    %

  • Rice in headphone jack - any way to get this out?

    So after drying out my phone in rice after it fell into a glass of water, my misfortune has continued and I have a grain of rice stuck in the headphone jack.
    Are there any tips for getting this out? I tried using a compressed air can thing, it dislodged it a little but it's not out...

    Try using tweezers or a paperclip?

  • How should we get the out put file-name same as in put file-name in file to

    Hi frnds,
    having hundreds of files in the sender system with different names, how should we get the out put file-name  in the receiver system same as the in put file-name in file to file scenario ?
    Thanks in advance.
    truly,
    snrvakiti.

    Hi,
    In Receiver File Adapter you can set under 'Adapter-Specific Message Properties'
    check Use Adapter-Specific Message Properties
    check Fail on Missing Adapter Message Properties
    Check File Name
    Have a look at this link,  [File_to_File|http://allsapnetweavernotes.blogspot.com/2008/09/how-can-i-access-filename-from-fileftp.html]
    Regards,
    P.Rajesh

  • Getting report out put in another language (other than english).

    Hi all,
    can any one help me out in getting report out put in proper language (english).
    actually i am running my layout through wizard.it show in english at report level but when i publish with oracle application it showing the out in another fassion.
    please kindly help me out in this issue.

    In the language preference panel of the system preferences?
    LN

  • Can I get stepped out put voltage signal for controls from the BNC with Labview?

    Hi!
    I am new user to NI Labview. I am working in controls applied in Combustion sciences. I want control the Solenoid valve ( Jefferson made,230 V, 11 W) in stepped manner. BNC (2110) is used for the input signal (Piezoelectric pressure transducers) and output signal. The maximum out put voltage from BNC is 5 V. Can I get the out put voltage in stepped and increasing order to ensure the better controls of the solenoid valve?
    Also I would like to know, is it possible for me to control the working frequency ( Injecting) of the solenoid valve with the help of Lab view?
    Thanks.
    With Regards,
    Ganesh

    Just having the same issue there, which is real not fun, I have not tried to contact them, but looking at  your experience I am not sure if I should.
    My key comes from the back of a laptop o so I guess that would be a W7
    OEM, and that could explain why you can't download a ISO from their website, would that also your case ?
    Also could it be because we are attempting to get the ISO after the product became EOL ?
    http://windows.microsoft.com/en-us/windows/lifecycle
    Maybe I will give a go with the customer care people and maybe I will get a right answer ;)
    Will keep you posted

  • SSRS matrix click on the count like a pivot table to get details

    Hi,
    I am trying to create a matrix report to work similar to a pivot table, where when a user clicks on the count, the details are displayed. When I add the action to open a sub-report, how do I pass in the parameter values for the group that was selected? meaning
    if in row group- I have company name, and column group I have job title, when the count gets clicked, i need to pass in the company name for the row that was clicked along with the column group. How can I proceed?
    Thanks in advance!

    Hi NewCSharpUser,
    According to your description, you have created a main report which contains company name as row group and job title as column group. And a drill through report which contains company name as a parameter to filter the data. When you click the data region
    in the main report, you want to display corresponding details in the drill through report filtered by the company name, right?
    In your scenario, you could add a “Go to report” action, then specify a parameter to filter the drill through report. Please refer to steps below:
    1. Design the main report like below:
    2. Preview the report.
    Reference:
    Drillthrough Reports (Report Builder and SSRS)
    If the method couldn't meet your requirement, please share you report design and expected results for our analysis.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • I downloaded the accept all request for facebook but when I go to the game requests page there is no accept all button. What do I need to do to get this to work?

    I have closed out of facebook and reentered but there is still no accept all button on game request page. I checked on add-on and it says it is enabled but is not there. I need to know what to do to get this to appear/work on facebook.

    If you have firewall/anti-virus software running turn them off.  With your iPad connected to your computer via USB and with iTunes open, once your iPad is recognized on the left side of the iTunes screen, look to the right and you should see a box that says Check For Software Update.  Click on that and iTunes should start the process of updating your software.  Please note that the process of updating to iOS 5 or higher is not a short process.  It takes time, so make sure you have enough time and you can stay there with your iPad and your computer to guide the process.

  • Need Pivot Table to hide only the rows in the table, now the entire sheet.

    Hello,
    I have an basic pivot table (account type, account number, location, fees assessed) and wish to have a small summary table a couple of columns to the right of the data in the pivot table.  
    Is there a way to be able to have the pivot table only hide the part of the rows that are actually in the table (like A4:D4) and essentially 'lock' my summary table, so parts of it aren't hidden when filtering in the pivot table?

    Hello,
    I have an basic pivot table (account type, account number, location, fees assessed) and wish to have a small summary table a couple of columns to the right of the data in the pivot table.  
    Is there a way to be able to have the pivot table only hide the part of the rows that are actually in the table (like A4:D4) and essentially 'lock' my summary table, so parts of it aren't hidden when filtering in the pivot table?

  • TS3999 Need help! I get this message; The request for account "iCloud" failed.  The server responded with "400" to operation CalDAVUpdateShareesQueuableOperation.

    Why do I get this message? It drives me crazy and I can not find any support in the support pages...
    The request for account “iCloud” failed.
    The server responded with
    “400”
    to operation CalDAVUpdateShareesQueuableOperation.

    Follow the links given in the right panel, under "More Like This", they should provide answers.

  • User temp tables not getting cleaned out from tempdb?

    Im seeing what looks like temp tables that are hanging around in tempdb and not getting cleaned out.
    This is SQL 2008 
    SELECT * FROM tempdb.sys.objects so WHERE name LIKE('#%') AND DATEDIFF(hour,so.create_date,GETDATE()) > 12
    Im seeing about 50 or so objects that get returned and they are user_table and some of them have create dates of several days in the past.  Now I know users do not run processes that take that long, so why are these objects still hanging around?
    TempDB gets reset after a server restart, but other than that, how long are these things going to hang around?

    A local temporary table scope exists only for the duration of a user session or the procedure that created the temporary table. When the user logs off or the procedure that created the table completes, the local temporary table is lost. 
    You can check the below blog for more information
    http://sqlblog.com/blogs/paul_white/archive/2010/08/14/viewing-another-session-s-temporary-table.aspx
    --Prashanth

  • I've tried 5 different scanners and none of them picked up Search fusion! How can I get this out of my computer? It's messing things up badly.

    Search fusion was not detected by 5 different scanners! I reset Firefox, I used the microsoft scanner that took over 2 hours and even that didn't detect it! Please help me get this thing out of my computer. thank you.

    Just chaexk once whether any addons are not working for it. Go to ''' open menu''' > '''add-ons''' > Select '''add-ons''' and search for "searchfusion" . Once it will found , remove it.
    Also try to remove it from '''Add or remove Program/Features '''>under '''Control panel''' .
    Two of softwares are good to solve these type of hijacking named as
    1) Malwarebytes [http://www.malwarebytes.org/antimalware/premium/]
    2)Hitman [http://www.surfright.nl/en/downloads]

  • I want to download trail of Photoshop to see if it will do what I am needing... It made me download Creative Cloud and now it won't even open...... What do I need to do to get this free trial of Photoshop?

    When I downloaded Creative Cloud it made me set up an account, download, verify my email. Now when I go and double click or right click and run, or right click and run as an administrator, Creative Cloud does nothing.................. I just want to download a trial of Photoshop to see if it will let me edit my images the way I need them done... If it works I plan on purchasing it because I will need to edit pictures repeatedly. It is quite frustrating when I try and download Photoshop and it makes me download this other thing to make it more "seemless" but then it doesn't even work. Now when I go to try and download Photoshop it just redirects to the Creative Cloud website and pops up saying it has to open something outside of Google Chrome. If I hit cancel, it does nothing (obviously), if it hit launch, it still does nothing...................... What am I doing wrong here???

    Please provide your operating system details along with the version of PS you are trying to download.
    If possible, paste a screenshot of the error that you get on Creative Cloud desktop app. FAQ: How do I capture and post a screen shot or video?
    ~ Arpit

Maybe you are looking for

  • How do I get Fireworks CS3 to work in Windows 7? After installation my internet would not function.

    I installed Fireworks CS3 in the new Windows 7.  It seemed to function well.  After a reboot I noticed my internet would not work.  I attempted to resolve the matter but was unsuccessful.  Has anybody had this problem?  If so what is the fix.

  • Purchase order rate change after creation of gr.

    In t- code ME22N PO line item Rate change is possible after creation of GR against that line item. We want to restrict the po line item rate change after creation of goods receipt against that line item. Please suggest.

  • How do I turn off the Log In Screen that asks for my Password?

    I recently installed FCP 6 on my MBP, and ever since then when I turn my computer on from being shut down, it ask me for my password before loading up. It used to not do this, but now it does. I don't have a password set, so I just hit enter and it l

  • Much trouble with imports - please help!

    Very frustrated here! When I put a CD into my computer drive, nothing happens at all. It's not recognised, not only in iTunes but in My Computer too. This has happened for a while. When, very occasionally, I find that the CD is recognised by iTunes o

  • Missing Gmail 'Sent' Folder

    Have several times, clicked Manage Folder Subscriptions > Refresh ... and then re-started Thunderbird. Of course, the Sent folder does display on the Gmail site. Sometimes folders come and go, but can't make this one come back. Ideas? Thanks much.