Problem in saving the outline.

Hi
i'm running with a problem.
i have deleted the members of a dimension in my outline and now i'm loading it again by build files. when i am trying to save my outline it displays "Unable to complete reading from outline. Out of memory".
can anyone tell me the reason behind this?

Recommendation: use a default/template outline that has not been edited too much (one that doesn't have the members in that dimension to begin with).
Then, with the data cleared, you can unload the database, copy the outline over, and then perform your dimbuild against this outline, and reload your data.
There are caveats to this approach, but you should be able to test this process out and make it work for you.
The other approach is to save/unload/reload the database between removing members and rebuilding them, although this won't solve the problem of the "ever expanding outline" issue.

Similar Messages

  • Problem when saving the outline

    Hello:
    We're working with Essbase 9.3.1.
    When saving an outline with EAS, the message windows "Starting save of outline" appears and it never close (even if the modification is as simple as adding an alias or an UDA). We've found that If we make Ctrl+Alt+Supr and press cancel in the client machine, the message disappear inmediately. So, it seems a Java problem. Does anyone knows any solution for this issue?
    Thanks in advance and regards,
    Joaquin Castellano

    Hi,
    I take it you are accessing EAS through the web client, if you it will probably down to using the 1.6 JRE.
    You can install the 1.5 JRE and go to control panel > java > Java > disabled the 1.6 versions and keep just the 1.5
    Or you can have a read [here |http://john-goodwin.blogspot.com/2008/09/never-ending-eas-outline-save.html] for futher details
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Problem While saving the Invoice

    Dear Experts,
                      I am facing the Problem while Saving the Invoice, In invoice, We assigne the Output as RD00 and Medium as 6 (EDI).
    When we are saving the Invoice, it getting as ' Updated Terminated'. When i found where the Error is coming in SM13, it showing in as Function Module "RV_MESSAGE_UPDATE' & Error Details is 'EAN11 not found for Material'.
                     But in Invoice whatever we enter the Material number, we maintain the EAN11 code. This EAN11 code is seen in MARM & VBRP Table. Unable to find the what the exact error is.
                   please help me to sort this issue, Its business complicated.
    Thanks in Advance,
    Srini

    Hi Asik,
              Thanks for your valuable Message.... I run as you suggested, but the dispatch time i kept as 1 or 2. because the program RSNAST00 is picking the values only for 1 or 2. so i run manually,, as of now the issue is, in the invoice number, for one material number, the Billed quantity is zero, so the UOM is getting as initial. From those vaues we are picking the EAN11 from maram table.
    So, i modify that and run the EDI manually. As of now its working...
              Thanks for your reply,,,
    Regards,
    Srini

  • Problem in saving the WAD template

    Hi gurus,
    I am getting a probelm while saving the WAD template;   error occurred in the BI components on the SAP J2EE Engine

    Hi Karanam,
    Maybe you should check with your BASIS team on the error. Could be a problem with ABAP - JAVA configuration settings on your BI system. If you are on Netweaver BI 7, below notes on compatibility may help:-
    1013369 - SAP NetWeaver 7.0 BI - intermediate Support Packages
    1163789 - NetWeaver 7.0: BI Java Synchronized Patch Delivery Strategy
    1011241 - Patches for NetWeaver 2004s BI Java Support Package
    1072576 - FAQ: BI Java Support Packages/Patches
    1327345 - Patches for NetWeaver 7.01 BI Java Support Package
    1391286 - BI JAVA corrections for SAP EHP1 for NetWeaver 7.0 (7.01)
    --Priya

  • Problem in saving the workbook as favourite

    Hi,
    I have a issue around saving the BEx reports as favourites.
    One of our user is not able to save his report in his favourites folder. He was able to do the same before,but now he can't do it anymore.He gets a pop up error message'WDTTREE - type mismatch' type....This is a problem with only few users and not all of them.
    I know we can set the object changeability in RSA1 but that should affect all or none of the users as it is set globally.So,is it possible that I can check it somewhere if that user does have the authorisation for saving the reports as his favourite. There is no direct authorisation problem with his userid as I have checked the SU53 dump also with his logon.
    rgrds
    Umesh
    Message was edited by:
            Umesh  Mehra

    Hi Shabar,
       Am on 3.5 and this note points to 3.0,I guess. Also,as I mentioned,it's a problem with only one user and not with all the users. Rest of the users are ok their favourites.
    rgrds
    Umesh

  • Problem in saving the customize infotype data

    Dear All ,
    I created the new infotype with table control, when am going to save data it's only saving the header data means personal no ,begdate and end date my table control data is not going save kindly help me to resolve that question.How i can save data from that  custmize infotype ,And also am not a fully technical guyyy...so help me ....
    It's very important for me ...
    kindly help me .......
    thanks
    sandeep

    Dear Amit ,
                      I don't think that's the issue i craeted two infotype in second infotype i have only fields ,am able to save the data but in other infotypes i have the table control,am not able to save table control data in my PAXXXX table so kindly help or tell me the procedure how we can do.Now hope you understne my problem.
    kindly help me
    sandeep

  • Problem in saving the image into SQL database..

    Hello,
    In my application I have to save image file (say jpg) into the database and retrieve back and display it on the applet. I am through with grabbing the pixels of the image & sending the pixel array to the servlet but I am struck in how to store the image into the database and retrieve the same.
    Can anybody please help me in this regard... its really urgent...
    Thanks in advance
    Swarna

    Hello.
    I've been researching this problem (saving images in a MySQL database) in order to accomplish a task I was assigned to. Finally I was able to do it. I'd be glad if it will be of any use.
    First of all: the original question was related to an applet. So, the post from rkippen should be read. It says almost everything, leaving the code job for us. Since I managed to write some code, I'll put it here, but I'm not dealing with the byte transferring issue.
    To obtain a byte array from a file I'd open the file with FileInputStream and use a loop to read bytes from it and save them into a ByteArrayOutputStream object. The ByteArrayOutputStream class has a method named �toByteArray()� which returns an array of bytes (byte [] b = baos.toByteArray()) that can be transferred in a socket connection, as said by rkippen.
    My problem was to save an image captured by a web camera. I had an Image object, which I converted into a byte array and saved into the database. Eventually I had to read the image and show it to the user.
    The table in the MySQL database could be:
    CREATE TABLE  test (
      id int(11) NOT NULL auto_increment,
      img blob NOT NULL,
      PRIMARY KEY  (id)
    )I had problems trying to use the �setBlob� and �getBlob� methods in the Statement object, so I used the �setBytes� and �getBytes� methods . In the end, I liked these methods most because they where more suitable to my application.
    The database operations are:
        public int insertImage(Image image) throws SQLException {
            int id = -1;
            String sql = "insert into test (img) values (?)\n";
            PreparedStatement ps = this.getStatement(sql);  // this method is trivial
            byte [] bytes = this.getBytes(imagem); // * see below
            ps.setBytes(1, bytes);
            ps.executeUpdate();
            id = ps.getGeneratedKeys().getInt(0); //Actually I couldn't make this line work yet.
            return id;
        public Image selectImage(int id) throws SQLException {
            Image img = null;
            String sql = "select img from test where id = ?\n";
            PreparedStatement ps = getStatement(sql);
            ps.setInt(1, id);
            ResultSet rs = ps.executeQuery();
            if (rs.next()) {
                byte [] bytes = rs.getBytes(1);
                img = this.getImage(bytes); // * see below
            return img;
        }* If the bytes are read directly from a file, I think it is not necessary to convert it into an Image. Just send the bytes to the database method would work. On the other hand, if the image read form the DB will be written directly into files, the bytes obtained from rs.getBytes(1) would be enough.
    The image operations are:
        public byte [] getBytes(Image image) {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            try {
                ImageIO.write(this.getBufferedImage(image), "JPEG", baos);
            } catch (IOException ex) {
                throw new RuntimeException(ex);
            return baos.toByteArray();
        public Image getImage(byte [] bytes)  {
            Image image = null;
            ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
            try {
                image = ImageIO.read(bais);
            } catch (IOException ex) {
                throw new RuntimeException(ex);
            return image;
        public BufferedImage getBufferedImage(Image image) {
            int width = image.getWidth(null);
            int height = image.getHeight(null);
            BufferedImage bi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
            Graphics2D g2d = bi.createGraphics();
            g2d.drawImage(image, 0, 0, null);
            return bi;
        }That's it. I hope it is useful.

  • A problem about saving the picture control'image in a child VI.

    i want to use 'export image' method to get a picture control'image,so ,i have a child VI to use method 'export image',and a main VI to using the child VI,but when i run the main VI,there is no image is saved on the disk ,but if i open the child VI'frontpanel,then,i run the main VI,the image is saved on the disk,i want to know the reason why i can not get the image,when i run the main vi without the child 'frontpanel or blockdiagram is opened.
    Solved!
    Go to Solution.
    Attachments:
    child.vi ‏11 KB
    main.vi ‏7 KB

    The behavior that Simon describes is not a hard and fast rule, and the Export Image method used to be a bit of an exception.  It would supposedly update the controls of unopened FPs that used the method.  Reality never quite matched what was described in the documentation if I recall.
    If you pore over the detailed help you discover that this method works fine in SubVIs with some controls and not others.  Look at the characteristic 'Loads the Front Panel Into Memory', for a Picture control it is 'No', for a Waveform Graph, for instance, it is 'Yes'.  Caveat:  Relying on this level of detail to be correct in the LV help is a bit risky.  Best to try it yourself.  Not loading the FP is a good hint that the method is not going to behave in a SubVI.
    As to the problem at hand, a Picture Indicator is an odd choice to me to use this method.  You have VIs in the Picture palette to convert pictures to image data and then export the image data to a PNG or JPG or BMP file directly.  Anything you would draw and then export could be exported directly without drawing.

  • Problem in saving the Rating and Discussion?

    hi all,
           I am using EP6 SP16.      
    I have enabled Rating service.
    But when I give rating to any document or folder by going to details --> collaboration --> Rate this document.
    Then when I click on Save button to save the Rating, it gives the message <b>"Rating has not been saved"</b>. Although when I again click on details, rating has been saved there.
    So if rating is getting saved there why I am getting the message that "Rating has not been saved"
    2. Same Problem I am facing with discussion also, When I start a discussion on any document or folder, it gives a message that "<b>You do not have access permission</b>".
    If you have any idea please suggest me how can I solve this problem.
    Thanks and Regards,
    Mridul

    please reply me if any body have any idea.
    It is very urgent..

  • Problem While Saving the editable ALV GRID

    Dear Experts,
    I have a scenario in which i am display the ALV(using class) with some data in the custom container of module pool screen in the non-editable mode.Also i have save and edit buttons.If i click the edit button i have written the code to edit the some columns in the ALV grid, it is working fine.After editing it,when i click the save button then ALV has to refreshed with edited data and then it should go to non editable mode but it is not working.I have written the code for changing the editable ALv to non editable mode as follows :
      call method c_alvgd->set_ready_for_input
        exporting
          i_ready_for_input = 0.
    *****Row and column of the alv are refreshed after changing values
      stable-row = 'X'.
      stable-col = 'X'.
    *REfreshed ALV display with the changed values
    *This ALV is non editable and contains new values
      call method c_alvgd->refresh_table_display
        exporting
          is_stable = stable
        exceptions
          finished  = 1
          others    = 2.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    Could you Suggest me solution for this issue ?
    Thanks & Regards,
    R.Dhineshraj.

    Dhinesh,
    I suppose that you are able to get your changes values on screen but not able to get your field in DISPLAY mode from editable mode, let me know if this is not your problem.
    When you press SAVE, after the PAI, again PBO will run and hence the editable code for that field will overwrite which will keep it editable.
    So, do something like this.
    data: gv_edit value 'X'.....  "global variable in TOP include
    PBO....
    loop at ...
    if gv_edit = 'X'.
    CALL METHOD lo_alv->set_ready_for_input
      EXPORTING
        i_ready_for_input = 1.
    else.
    CALL METHOD lo_alv->set_ready_for_input
      EXPORTING
        i_ready_for_input = 0.
    endif.
    endloop.
    PAI.
    when 'SAVE'.
    gv_edit =  space.
    When 'EDIT'.
    gv_edit = 'X'.
    Regards,
    Diwakar

  • Problem while saving the BEx qeueries

    Hi,
    I am facing a strange problem.
    I am trying to copy the old query to a new query. Now when i just change/try to copy by using save as function in query designer the following problem occurs
    1. An unexpected object variable or with block variable not setu2019 error occurred in wdrblog error(s) are logged.
    I am using BEx 3.5 patch 11.
    Note:  I checked the relevant error message in Service marketplace but they are asking us to go thorugh the OSS note 571831,575434. But in these mentioned notes the patch level & Version are lower than what we have.
    Waht might the problem. any clues would be great & appreciated
    Thanks

    Hello Venkatesh,
         I didn't come across this type of problem before, just try to copy the query by using t-code 'RSZC'. Check the query whether everything is correct.
         Let me know if you need more information to copy the query.
    Thanks,
    Umashankar

  • Problem in saving the spool list into Excel file.

    Hello Friends,
                         I run a background process for a report, and storing the resulting list into Excel format file. But the result is column values jumbled, it means columns values are not sitting in the right place in excel sheet.
    I also tried saving as unconverted text file and then open it using excel still the same result.
    Cheers,
    Senthil

    Hi,
      Use the FM 'EXCEL_OLE_STANDARD_DAT'.
    In this FM populate the tables parameter 'fieldnames' to get each cloumn below the heading correctly.

  • Problem in saving the details of 0590 infotype...

    Hi Experts,
    When im trying to save  the  longterm reimbursement amount
    in 590 infotype itis howing the error message that """Hard furnishing scheme is not available  for the employee number ** on 01.04.2007"""
    What could be the problem.Where should we change the details....
    Please advice.
    Regards,
    V ram.

    Hai.
    Pls check 40LTR feature.
    The feature 40LTR is configured to default the end date for long term    
    reimbursements infotype (0590). The defaulted end date for the infotype  
    could be begin date dependent or a fixed end date. The validity period of
    the reimbursement is the block of years specified in the feature. The    
    configuration can be done for the sub types of the infotype like HFS-    
    Hard furnishing scheme or SFS- Other reimbursements. The block of years  
    and fixed end date are separated by a forward slash in the respective    
    order.
    I doubt u didnt configure this feature... for Hard furnishing scheme...
    Edited by: Ram Manohar on Mar 25, 2008 5:20 PM

  • Problem while saving the query

    I have created transport request from solman, and when I try to save the query under the the request it is asking whether to create a new task under a different specific user, if I cancel it the query is not getting saved, please help me.
    thanks

    Hey Sudeer,
    This happens becoz the Query that u are changing is already locked by another transport request which is owned by diffrent user..
    Ask the relevant user to release the corresponding request, so that u dont get the prompt again....
    To avoid it, just create a new Query( totally new query ) and then assign your transport request to it..
    Reward points for usefull answer...
    Regards,
    Anand Rangarajan

  • Problem in saving the ½, ¼, ¾ values in database using xml

    Hi
    I am developing a java swing based application. In which I send data in xml format and save it on a online webstore through API calls.
    When I send the data in following format 3½, 3¼, 3¾. It saves only 3 not the whole value means It is ignoring the values ½, ¼, ¾.
    Here is my xml code which I am sending on network.
    <?xml version="1.0" encoding="UTF-16" standalone="yes"?>
    <product>  
        <product-type>Shirts</product-type>
        <title>testStyle</title>
        <variants type="array">
            <variant>
                <fullfilment-service>manual</fullfilment-service>
                <inventory-management>shopify</inventory-management>
                <inventory-policy>deny</inventory-policy>
                <option1>Black</option1>
                <option2>3¼</option2>
                <option3 nil="true"></option3>
                <price>40.0</price>
                <requires-shipping>true</requires-shipping>
                <sku>1307681713338</sku>
                <taxable>true</taxable>
            </variant>
            <variant>
                <fullfilment-service>manual</fullfilment-service>
                <inventory-management>shopify</inventory-management>
                <inventory-policy>deny</inventory-policy>
                <option1>Black</option1>
                <option2>3½</option2>
                <option3 nil="true"></option3>
                <price>40.0</price>
                <requires-shipping>true</requires-shipping>
                <sku>1307681714634</sku>
                <taxable>true</taxable>
            </variant>      
        </variants>  
    </product>In option2 tag I am passing ½, ¼, ¾.
    Please give me some solutions .
    Thanks
    Edited by: Sonal on 28-Jun-2011 22:28

    hi
    Thanks for your reply.
    I am using JAXB Parser for parsing. Here is my code.
              // Prepare for XML marshalling
              JAXBContext jaxbContext = JAXBContext.newInstance(ProductVariant.class);
              Marshaller marshaller = jaxbContext.createMarshaller();
              marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
              StringWriter stringWriter = new StringWriter();
            // Marshall product variant to XML
              marshaller.marshal(objProductVariant, stringWriter);
            // Prepare request content
              String entityString = stringWriter.toString();             
                    StringEntity entity = new StringEntity(entityString);
              entity.setContentType("application/xml");
              httpPost.setEntity(entity);                     
            // Execute API call
              HttpResponse response = httpClient.execute(httpPost);ProductVariant is a class name and objProductVariant is a name of object.
    When I check the entityString value, 3½ is present there but after saving it, when I check in database it store 3 only.

Maybe you are looking for

  • How can i find my old apple id password to switch of the"find my iPad?

    hi . I am having trouble to use my ipad because i had a apple id and on my ipad i had this "find my ipad" on with the old password . Then i changed the apple id on my macbook and now on my ipad  it keeps on asking for my old apple id password and if

  • Date field in Web Dynpro ABAP

    Hi All, I want to implement the Input Date Field on my WebdynPro Application in the same way as it is availble at "SCN - Contribution Points / filter criteria" . I want to give the user the option to change the year , past or future easily. I have tr

  • Session lost (IE5 & IE6) when opening popup window.

    Ok, I've been struggling with this problems for days and spent countless hours with google without finding any decent solutions. I'm building a ecommerce site and if the user want to see additional information + pictures from a product, he/she can op

  • How to charge an Ipad faster?

    well i have an ipad 2 whose charger is completely broken. I charge my Ipad using my HP computer and the usb cable which seriously takes a lot of time. How can I charge the Ipad faster?

  • Reg:2LIS_11_VAITM

    Business content for the ITM extract has been discussed many times in the forums - pease searh the forums before posting Dear All, what is the standard query for infosource 2LIS_11_VAITM? Thanks, Sankar M Edited by: Arun Varadarajan on Mar 20, 2009 3