Funcionallity "Add Drilldown to characteristic in new Worksheets" crashes

Hello comunnity,
in BEx 7 Analyzer I opened a query. In the filter section you have the characteristics to do your OLAP-activities and filtering.
In the context menu of the characteristics there's the funcionallity "Add Drilldown to characteristic in new Worksheets".
Some of our users discovered that this funcionallity crashes/is very slow (more than 30 minutes) with some characteristics. Beside aggregates that should not be happening.
For example with "0calyear" which has about 7 different values it's working within 45 seconds. I can live with that. But taking "0INFOPROV" which should only have 3 different values in that query, it is crashing or taking more than 30 Minutes.
I have absolutely no idea what's the background to that. I have tried out different queries and the behaviour is more or less the same.
Got someone an idea how to get that working? Any help is welcome.
Bye Harry

Hi,
As also mentioned by Leszek I also would start with testing if the same problem occurs as well in transaction RSRT when running the underlying query.
You may also check where the query is "hanging" that long while the problem is actually happning (via transaction SM50/SM66). In case that it is reading from the database (SQL-statement execution) then this indicates a database related problem (see SAP note 1681396).
BR Bernhard

Similar Messages

  • How do I add a new worksheet to an excell file utilizing a template with the report generation toolkit?

    Hello,
    My vi is gathering data from a piece of machinery. At varrious points durring the process, my vi must create printable reports. I am using the report generation tool kit to do this. What I want to do is for every report generated durring the run, add it as a new worksheet in an Excell workbook. My excell template works fine for the initial master report and I can add new data to new worksheets. What I am having a problem figuring out is how do I add the new data to a new worksheet using an excel template? I have 5 different reports that need to be generated at different times with some more often than others. I would like all these reports to be in the
    same master excel file. Thanks in advance
    -Greg
    Gregory Osenbach, CLA
    Fluke

    Hi Greg,
    There is no built-in support in LabVIEW to add a new worksheet to an existing Excel report simply because this functionality does not exist in the Excel application itself.
    My suggestion would be to open up the template you wish to use for the new worksheet. Copy the cells from the template and paste them into your new worksheet that you've created. Then close the original template and you have another copy of the template in which you can populate with data values.
    I have attached an example program of how to Copy and Paste a Cell in Microsoft 97 Using ActiveX in LabVIEW to this post. Hope this helps!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    XL_cell_copy_and_paste.llb ‏76 KB

  • HOW CAN I ADD NEW WORKSHEET(TAB) TO EXCEL USING ABAP pROGRAM?

    i want to add new tabs to my excel file using abap.... can someone help me on this?

    hi,
    PERFORM add_worksheet USING 'Test 1'.
    *& Form ADD_WORKSHEET
    FORM add_worksheet USING i_name.
    Add new worksheet
      IF g_first_ws <> 'N'.
        g_first_ws = 'N'.
        GET PROPERTY OF g_excel 'ACTIVESHEET' = g_worksheet.
      ELSE.
        CALL METHOD OF g_worksheets 'Add' = g_worksheet.
      ENDIF.
      SET PROPERTY OF g_worksheet 'NAME' = i_name.
      g_row = 1.
      g_col = 1.
    ENDFORM. " ADD_WORKSHEET

  • How to add the required characterists and key figures to drill down report?

    hi,
    i am creating a drill down report using t.code FKI4. however i noticed that some of the characteristics and key figures required by me is not listed in the report catalog. how can i add the required characteristis and key figures to the report catalog?

    Hi Inna,
    Based on my research, a drilldown report is a layout design that at first hides complexity and enables the user to toggle conditionally hidden report items to control how much detail data they want to see. Drilldown reports are used to change the report
    layout interactively. So it wouldn’t affect the rows displayed in the outmost group. Though some rows are hidden when the report is initially run, it will still count them. This is by design.
    Furthermore, if I understand correctly, you also expect the outmost group is a dynamic group depends on the drilldown action, right? As per my understanding, this function still cannot be achieved at this moment.
    Thanks for your understanding.
    Regards,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • How can I create a new worksheet every time that one cell it´s filled

    I was looking in the references formulas and I find the formula "Direcction".
    My goal it´s to create a new worksheet everytime that some cells are filled.
    So I need one formula that alows me to put this reference and open automaticaly a new worksheet and this new table inside of this worksheet.
    It is clair the question?
    Someone can help me wiht that?

    Hi Wayne, Not really, the smaller table it´s not really important, I was trying to do the new sheet with it in that case.
    What I want is to use the dates in the row with the items markeds to create a new worksheet.
    I made an example donw here.
    I have the first table, than from it, I want to do 4 new tables
    I mean, everytime that I finish with one column I want to have a new table (in a new work sheet) with that items markeds.
    Do you think that script it´s possible to solve this?
    How can I do it?

  • Applescript - coping columns in a new worksheet in Excel 2004

    Dear all,
    I’m new to Applescript and would appreciate a help on the following:
    I'm trying to copy in different worksheets of a new Excel 2004 workbook(New _WB.xls) different columns (blocs of text + data) in the same worksheet (lest’s call it file1 of a workbook named Old_WB.xls). The columns are separated by 2 empty rows.
    I've searched solutions online with no luck.  Can anyone show me how to code the solution of this problem in Applescript?
    Thanks in advance.
    Ghan

    well, then you want something like so:
    tell application "Microsoft Excel"
              open alias "path:to:workbook"
              set x to value of used range of worksheet 1 of workbook 1
    end tell
    set block to {}
    set idx to 1
    repeat with thisLine in x
              if thisLine as list = {"*", "", ""} or thisLine as list = {"", "", ""} then
      -- empty line means end of block; make sure some block has been collected then process
                        if block is not {} then
                                  set rowCount to count of block
                                  tell application "Microsoft Excel"
                                            tell workbook 1
                                                      set nws to make new worksheet at end
                                                      tell nws
                                                                set name to "file" & idx
                                                                set value of range ("A1:C" & rowCount) to block
                                                      end tell
                                            end tell
                                  end tell
                                  set idx to idx + 1
                                  set block to {}
                        end if
                        if thisLine as list = {"*", "", ""} then
      --all done
                                  exit repeat
                        end if
              else
                        copy thisLine to end of block
              end if
    end repeat
    I've used a "*" character o signify the end of data - you'll need to change that to what you use in lines 9 and 25. Be careful that there's nothing else written outside of the data range because the used range command will pick up on it and goof things up.

  • How do I add more ports to my new Airport Extreme?

    How do I add more ports to my new Airport Extreme?  What do I need to buy?

    Thinking to leave as is for now-  one 2013 extreme.
    That would certainly keep things a lot simpler.
    Does it seem right that using speed test I'm getting similar speeds, no matter if I'm connected via wi-fi, or Ethernet?
    A very good sign assuming those speeds are reasonably close to the your plan offered by your ISP. The Extreme itself is capable of much faster speeds than your ISP can ever hope to provide.
    I'm thinking that all the speed in the world is not going to change Time Warner Cable, the provider for earthlink cable
    Not sure what you mean here. Time Warner provides various plans, some up to 50 Mbps. I get 60+ consistently with this plan.  I had a 30 Mpbs plan before that consistently delivered about 35-36 Mbps.
    The math is simple. If you download a lot of files from the Internet, a 50 Mbps connection is going to take half as long to download a file as a 25 Mbps connection, for example.
    One word of caution though....if you try a higher speed plan...plan to stay, as you will never go back to slower speeds once you have sampled higher speeds. Comcast now owns Time Warner by the way. I don't know whether that will be a good thing or a bad thing.

  • HT5621 I changed my Apple ID but on my iPhone when I go into settings iCloud it still shows the old Apple ID. How do I change this? I was going to delete the iCloud account from my phone then add it back with the new Apple ID, but I'm not sure...help!

    I changed my Apple ID but on my iPhone 4S w/ iOS 7.0.4, when I go into settings > iCloud it still shows the old Apple ID. How do I change this? I was going to delete the iCloud account from my phone then add it back with the new Apple ID, but I'm not sure...help!

    http://support.apple.com/kb/TS5223?viewlocale=en_US
    Peace, Clyde

  • I'm looking for an add on that opens a new web page. In prior versions it looked similar to a "+" sign. It is not the "Open a new Window Button" Thank you.

    The add on opens a blank new web page. For example, when on a web page, you can open a new page, with all bookmarks on the sidebar.

    The add on opens a blank new web page. For example, when on a web page, you can open a new page, with all bookmarks on the sidebar.

  • How can i add custom attributes to a new Class Object using the API ?

    Hello everyone,
    Here is my problem. I just created a subclass of Document using the API (not XML), by creating a ClassObjectDefinition and a ClassObject. Here is the code :
    // doc is an instance of Document
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("MYDocument");
    ClassObject c = (ClassObject)ifsSession.createSchemaObject(cod);
    Everything seems to be OK since i can see the new class when i use ifsmgr. But my question is : how can i add custom attributes to this new class ? Here is what i tried :
    AttributeDefinition value = new AttributeDefinition(ifsSession);
    value.setAttribute("FOO", AttributeValue.newAttributeValue("bar"));
    c.addAttribute(value);
    But i got the following error message :
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01400: impossible d'insirer NULL dans ("IFSSYS"."ODM_ATTRIBUTE"."DATATYPE")
    oracle.ifs.server.S_LibraryObjectData oracle.ifs.beans.LibrarySession.DMNewSchemaObject(oracle.ifs.server.S_LibraryObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.NewSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.createSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    void fr.sword.ifs.GestionDocument.IFSDocument.createDocument(java.lang.String)
    void fr.sword.ifs.GestionDocument.IFSDocument.main(java.lang.String[])
    So, what am i doing wrong ?
    More generally, are we restricted in the types of the attributes ? (for example, would it be possible to add an attribute that would be an inputStream ? Or an object that i have already created ?).
    Any help would be appreciated. Thanks in advance.
    Guillaume
    PS : i'm using Oracle iFS 1.1.9 on NT4 SP6 and Oracle 8.1.7
    null

    Hi Guillaume,
    you're welcome. Don't know exactly, but assume that ATTRIBUTEDATATYPE_UNKNOWN
    is used to check for erronous cases only
    and it shouldn't be used otherwise.
    Creating your own objects could be simply done via
    ClassObject ifsClassObject;
    DocumentDefinition ifsDocDef = new DocumentDefinition(ifsSession);
    // get class object for my very own document
    ifsClassObject = ClassObject.getClassObjectFromLabel(ifsSession, "MYDOCUMENT");
    // set the class for the document i'd like to create
    ifsDocDef.setClassObject(ifsClassObject);
    // set attributes and content for the document...
    ifsDocDef.setAttribute("MYFOO_ATTRIBUTE",....);
    ifsDocDef.setContent("This is the content of my document");
    // create the document...
    PublicObject doc = ifsSession.createPublicObject(ifsDocDef);
    null

  • The KitKat upgrade has been a disaster. home wireless is no longer recognized, even going through the set-up process.  It does not connect to the car through Bluetooth seamlessly--I have to add my phone as a new device each time I get in the car.  In atte

    My home wireless is no longer recognized, even going through the set-up process.  It does not connect to the car through Bluetooth seamlessly--I have to add my phone as a new device each time I get in the car.  In attempting to solve these problems I have gone to settings-phone-upgrade and it states that the upgrade is available-select to continue-(which I do)- it checks -please wait and it then states that update not available - try later.

    Maybe not too late to help you.
    For specifically fixing the Bluetooth, un-pair your phone with the car, and go through the process of repairing the two.
    In general, the KK update requires many of us (different phones) to perform a Factory Data Reset after we back up our personal content (pictures, music, movies, or other downloaded files) to a PC or MAC. This will result in you having to do a bit of work to setup icons for the programs you use, and maybe putting in the specifics again for email accounts and other specialized apps. So if you are going to do this sort of thing... copy important information/settings down on paper.
    HTH.

  • Itunes wi-fi sync; how do I add a name for my new computer on the ipad 4?

    RE: itunes wi-fi sync;
    How do I add a name for my new macbook pro computer on the ipad 4?

    You cannot add a name for Mac on the iPad. I assume that you mean in the WiFi sync setting - not possible.

  • HT2495 I have a wirless network. I connect all my computers to it and a printer. I can print wirelessly from all computers. I tried to add the printer to my new Macbook, but can't find the printer on the add printer and scan icon on preferences.

    I have a wirless network. I connect all my computers to it and a printer. I can print wirelessly from all computers. I tried to add the printer to my new Macbook, which is connecte to the network, but can't find the printer on the add printer and scan icon on preferences. I downloaded a installation printer utility from the Manufacturer (lexmark), but it didn't work. Any sugestions?
    Thanks,
    Ivette

    You would need to get the IP address of your printer then manually add a network print queue.
    To get the IP address, on the control panel of your printer, press on Setup > Network Setup > TCP/IP > View/Set IP address.

  • How can I add a signature to a New Messages within 'Cases' in CRM?

    How can I add a signature to a New Messages within 'Cases' in CRM?

    That option is not available, only for emails.

  • I am unable to update any add-ons at all. Every time I try and install an add-on or even the new "show hidden add-ons" add-on, I get a server error. How do I fix this?

    I am unable to update any add-ons at all. Every time I try and install an add-on or even the new "show hidden add-ons" add-on, I get a server error. How do I fix this?

    You may have triggered some intermittent database issues but it should be running smooth by now. Let us know if you still see server errors.
    Also, if your addons appear to go missing after updating there is a workaround http://blog.mozilla.com/addons/2011/09/28/issue-discovered-with-firefox-add-on-upgrades/ And there is a 7.0.1 fix on its way.

Maybe you are looking for

  • VMDK to VHDX conversion causes errors described in KB 2470478

    Hi all, this is the situation: We are converting multiple VMs (Windows 2008 - not R2) from ESXi 5.1 to Hyper-V 2012 R2. The conversation itself is always successful but when we check the event log in the migrated servers we see errors like: ESENT ...

  • For some unaparent reason opening a new tab does not open my home page google. Been ok for years

    Now on Firefox 28.0. I got an update for Divx and installed. Following this new tabs were direct to search.conduit. I uninstalled this but now when I open new tabs I get a blank page and have to manually direct to my homepage. Previously a new tab op

  • Too many warmings from -Xlint

    I compile with -Xlint to be sure to catch warnings about potential problems in my code. Unfortunately, -Xlint spews out so much spam, it's difficult to pluck the few important warnings from the vast majority of unimportant ones. About 60-70% of my wa

  • Adding multiple songs to iTunes from the Finder

    The way I usually add songs to iTunes is to select multiple songs at once from the Finder and then add them all to iTunes. Now in Lion when I have two or more items selected it only adds and opens one of them instead of copying all of them to the iTu

  • Configuring rman settings with enterprise manager

    I am learning about RMAN and I want to use EM. (absolutely new to Oracle -) is there a way to access EM through http://?