Copy dimension and paste in excel

Hello everyone,<BR>I cannot copy a dimension in EAS console and paste in excel which I can do with App Manager. All I want is to see the members in excel with the parent child relationship. I cannot use outline extractor on this cube for some reason, is there any other way?<BR>Thanks for your great help,<BR>Rama

why not do a zoom in to all levels on the dimension using navigate without data. If you indent sub totals or totals, you can see the relationship. You can also write a quick macro to move the members to different columns based on the number of space before the member name. <BR><BR>Aside from that you could use the API to go against the grid api to walk through the hierarchy

Similar Messages

  • Cannot Cut and Paste From Excel

    I am trying to simply cut and paste from Excel into the Xcelsius spreadsheet. Even though the user manual indicates to copy from Excel and right click where you want to paste, the Paste and Paste Special functions are greyed out. It is almost like the cells are locked or protected somehow. I selected Formal Cells -> Protection and unlocked the cells but still nothing. Any ideas? Excel 2007

    Hi,
    It seems your workbook was locked. Try the following... it might help you.
    I know some of you out there have hit this problem in the past and now we have a workaround...
    If you try to add/remove/modify a worksheet in the Xcelsius embedded Excel and you can't do it.
    1. Start to unprotect the workbook:
    Office 2007 (Ribbon menu in Xcelsius or Excel). Select Review > Protect Workbook > Protect Structure and Windows.
    Office 2003 (menu only in Excel). Select Tools > Protection > Unprotect Workbook.
    2. You will be prompted for a password.
    3. This is the password (the O is an uppercase o):
    fazOh1+u
    4. Click OK and the spreadsheet should no longer be locked.
    Let me know if still your problem exists.
    Regards,
    Anjani Kumar C.A.

  • How do i copy, cut and paste on firefox

    How can I copy cut and paste on firefox? I have windows 8! Please Help !!!!!!

    You should just be able to perform these functions as you do in any application by doing one of the following:
    * Select some content, right-click your selection and select 'Copy' or 'Cut' from the menu. To paste, right-click in a text area or input field and select 'Paste'.
    * Select some content and press Ctrl+C to copy or Ctrl+X to cut. To paste, click in an input field or text area and press Ctrl+V.
    In webpages you cannot cut content that is not in a text area or input field, and you cannot paste to somewhere other than a text area or input field. Some sites also use preventative measures to stop (or at least hinder - there is usually some way around it) copying (often to prevent plagiarism).

  • I cannot install a previously purchased version of acrobat 9 pro downloaded from the site.  Returns message at final install steps "invalid serial number." I had copied it and pasted it directly from "My Adobe".  What to do?

    I cannot install a previously purchased version of acrobat 9 pro downloaded from the site.  Returns message at final install steps "invalid serial number." I had copied it and pasted it directly from "My Adobe".  What to do?

    Hi hgratz,
    Considering 'invalid serial number' error for Acrobat 9, I would suggest you to please refer the KB doc link mentioned below:
    Error "Invalid serial number" | Acrobat 9 | CS4
    Let me know if that helps.
    Regards,
    Anubha

  • Copy Cut and Paste problems

    Hi!
    I hace a little app like a notepad.
    It has menubar and some menus.
    Including the Copy menu, cut menu, and paste menu.
    How do i copy, cuy and paste text?
    please if you can send a little example.
    Thanks

    It's an extremely important skill to learn to read the API and become familiar with the tools you will use to program Java. Java has an extensive set of documentation that you can even download for your convenience. These "javadocs" are indexed and categorized so you can quickly look up any class or method. Take the time to consult this resource whenever you have a question - you'll find they typically contain very detailed descriptions and possibly some code examples.
    http://java.sun.com/reference/api/index.html
    http://java.sun.com/j2se/1.5.0/docs/api/

  • Copy/Cut and Paste N95

    I dont have my manual with me and forget how to Copy/cut and paste on my N95, Can someone enlighten me please.
    Thanks.

    Hi needtogetfit
    How about "pencil" key?
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • I need code for copy ,cut and paste

    please help me to find acode for copy,cut and paste .
    from file to another.

    Try playing with this;-
    java.awt.Toolkit.getDefaultToolkit().getSystemClipboard()

  • I can not use copy cut and paste in certain website email

    When using a college web site, I can not copy, cut, and paste.

    See http://kb.mozillazine.org/Clipboard_not_working
    A likely cause is the website email uses a rich text editor, in which case you should be able to enable copy/paste by following the instructions in this article - http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard

  • Does webmail have no copy, cut and paste features?

    The automated agent was of no use.  My old ATT webmail would let me cut and past using IE or Windows controls, but at least had their own cut and paste commands. Not being able to copy, cut and paste when composing e-mails is a MAJOR hassle.
    And if anyone knows how to enable links, HTML, etc, in webmail, please let me know.

    What browser are you using? CTRL + C, CTRL + X, and CTRL + V are all working fine for me, and I would assume their equivalent Edit menu commands work as well...
    Also, which version of webmail are you in?
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Copy and Paste to Excel from another program

    I use vb script to paste data to Excel that has been copied to the clipboard via SAS code. However, my code has now failed for some users. SAS accomplishes the writing to the clipboard task, and then creates and issues a system command to run the VB script.
    Here is an example of the current VB script:
    Dim objExcel
    Dim Newbook
    Dim NewSheet
    Dim inSheetCount
    Set objExcel = CreateObject("Excel.Application")
    Set Newbook = objExcel.Workbooks.Add()
    objExcel.Visible = True
    inSheetCount = Newbook.Application.Worksheets.Count
    set NewSheet = Newbook.Sheets.Add( ,objExcel.WorkSheets(inSheetCount))
    objExcel.DisplayAlerts = False
    i = inSheetCount
    Do Until i = 0
     Newbook.Worksheets(i).Delete
     i = i - 1
     Loop
    Newbook.Sheets(1).Name="N1"
    Newbook.Sheets("N1").Select
    Newbook.Sheets("N1").Range("A2").Activate
    NewBook.Sheets("N1").Range("A2").PasteSpecial
    NewSheet.SaveAs("c:\temp\test\tclass1.xlsx")
    objExcel.Workbooks.Close
    objExcel.DisplayAlerts = True
    objExcel.Quit
    The problem is that for some users, Excel can't access the clipboard unless it is already open before the copy operation occurs.
    How can I convert the above script into multiple scripts that allow me to use SAS to: (1) open Excel; (2) not part of script: accomplish the copy operation via SAS; (3) perform the paste and save operation in Excel and then close Excel?
    TIA,
    Art 

    Your link wasn't there when I originally read your post, so I figured out a way to solve my problem on my own. However, thank you for your help and I will definitely look at the link you provided.
    Regardless of the fact that the following is probably quite sloppy code, I was able to do what I wanted by incorporating running Notepad as a shell within my vbscript. The code simply does everything that my original example does but, just prior to pasting
    from the clipboard, opens the txt file in notepad and copies it to the clipboard:
    Dim objExcel
    Dim Newbook
    Dim NewSheet
    Dim inSheetCount
    Set objExcel = CreateObject("Excel.Application")
    Set Newbook = objExcel.Workbooks.Add()
    objExcel.Visible = True
    inSheetCount = Newbook.Application.Worksheets.Count
    set NewSheet = Newbook.Sheets.Add( ,objExcel.WorkSheets(inSheetCount))
    objExcel.DisplayAlerts = False
    i = inSheetCount
    Do Until i = 0
     Newbook.Worksheets(i).Delete
     i = i - 1
     Loop
    Newbook.Sheets(1).Name="test"
    Newbook.Sheets("test").Select
    Newbook.Sheets("test").Range("A1").Activate
    Dim objShell
    Set objShell = CreateObject("WScript.Shell")
    objShell.Run "notepad.exe c:\temp\test\clip.txt"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "%E"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "A"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "%E"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "C"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "%F"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "X"
    Do Until Success = True
    Success = objShell.AppActivate("Notepad")
    Wscript.Sleep 1000
    Loop
    objShell.SendKeys "{TAB}"
    WScript.Sleep 500
    objShell.SendKeys "{ENTER}"
    Wscript.Sleep 1000
    Newbook.Sheets("test").Paste
    NewSheet.SaveAs("c:\temp\test\server_formatted.xlsx")
    objExcel.Workbooks.Close
    objExcel.DisplayAlerts = True
    objExcel.Quit
    WScript.Quit
    Arthur Tabachneck

  • Copy and paste from Excel to Word, tabs get messed up intermittently

    I use a couple templates I've developed for quoting and have trouble using them since I've switched to Windows 8.1, and Office 2013.  I copy from Excel and paste into windows.  When I first installed the new software it worked fine.  Then
    it started doing crazy things with the tabs.  A column in Excel would be way wider in Word to the point my table would be off the screen.  Then it got better.  Then it got bad again.  The problem seems to be intermittent.  I just re-installed
    Office.  No change.
    I saw one person's note about having the file you are copying to open or closed when copying from Excel.  Tried that but no change.  Any ideas?  So two problems:
    1. pasting doesn't work
    2. the software seems unstable
    Just discovered a work around.  I think, since the problem does seem to come and go.  The template was initially developed in Office 2010.  It works fine in 2013, except for pasting apparently.  When I recreated the template in 2013, it
    seems to paste correctly - so far.    

    This is probably just like what you've discovered, these are old templates created in Office 2010, which might have compatibility issue.
    Re-created them within Office 2013 should fix this.
    Bhanu Tej

  • Copy and Paste from Excel into Xcelsius

    Is it possible to copy data from an excel worksheet and paste it into the Xcelsius worksheet?
    Thanks!
    Tracy

    Hi Anil,
    Yes, this is the way we all learn. I would like to share what i know, so some times we will learn more by doing so. I wonder you are just posting in xcelsius forum, why dont you post in BOBJ forum.
    Thanks,
    SK.
    Edited by: Vallabhaneni SK on Jun 19, 2009 5:05 PM

  • Copy and paste from Excel into Thread

    Is there a copy and paste information from Excel with the column headings into a thread and have all the information line up under the column headings?

    Sean,
    The short answer is No there isn't... but...
    If you wrap the pasted info between code tags you can get close... For example...
    ID     Name     Occupation
    1     Mr. Big Nose     Metal Shop Teacher
    2     Gary Larson     Cartoonist
    3     Bill Waterson     Cartoonist
    4     Calvin     Cartoon Character
    5     Hobbs     Cartoon Character
    But odds are you'll still need to clean it up in note pad first...
    ID     Name          Occupation
    1     Mr. Big Nose     Metal Shop Teacher
    2     Gary Larson     Cartoonist
    3     Bill Waterson     Cartoonist
    4     Calvin          Cartoon Character
    5     Hobbs          Cartoon Character
    HTH,
    Jason

  • Copy and Paste from Excel

    I am trying to copy and paste a two column table in Excel
    into a two column table in Dreamweaver. The data seems to paste
    into the table with different kinds of problems depending on how I
    try to paste... text without formatting, etc. Never pastes
    correctly just one piece of data per cell. Any tips?

    Notice that Alan was using the news server. Back in March of 2008, the Web forum was "powered by FuseTalk" which was a Web interface to an NNTP news server. Edits to messages on the Web forum did not get sent to the news server. Newsgroup_User is how all of us NNTP users were stored in the FuseTalk system (although it did display our names online).
    Just as with today's "powered by Jive" forum, edits are not sent to everybody in the email notifications.
    So ends the mini-history spot invoked by attempting to flame a 15-month old thread (for email users, a winky emoticon was placed here).
    Mark A. Boyd
    Keep-On-Learnin' :-)
    Borg Collective Newsgroup_User #925 of 2006
    This message was processed and edited by Jive.
    It shall not be considered an accurate representation of my words.
    It might not even have been intended as a reply to your message.
    Message was edited by: Mark A. Boyd

  • Copy and paste from excel to adobe form

    Hi everyone,
    a customer in a project based on WDJ + Adobe Interactive Form asks us the ability to copy areas of data (numeric and alphanumeric) from an Excel Spreadsheet (set of contiguous rows and columns), and paste them into a text field free PDF, preserving the formatting (ie the structure of rows and columns, font and size).
    Personally I think it is something not feasible unless a development at hoc.cosa do you think?
    Any advice is very welcome.
    Regards,
    Mirco

    Reading the documentation XFA at http://partners.adobe.com/public/developer/en/xml/xfa_spec_3_1.pdf (richtext reference) we understand that you can make the cut & paste from Word or, better still from a RTF. But in this case from the Excel table information is lost as it is aligned in a single line.
    The only way I think is to define a common layout to Excel and Adobe and use tables dynamically in the form
    I do not think this is a limitation of the SAP solution!
    regards,
    Mirco

Maybe you are looking for