Removed Records: PivotTable report from /xl/pivotTables/pivotTable1.xml part (PivotTable view)

I keep getting an error in Excel 2013 when using PowerPivot. Can someone please explain to me what this error means? I can't see that there is anything wrong with the underlying data, and the list of "removed data" is empty too...
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recoveryLog xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><logFileName>error085600_01.xml</logFileName><summary>Errors were detected in file 'E:\SkyDrive\Documents\Forex\Greenzone_Stats\Greenzone_2013_v2.xlsx'</summary><removedRecords summary="Following is a list of removed records:"><removedRecord>Removed Records: PivotTable report from /xl/pivotTables/pivotTable1.xml part (PivotTable view)</removedRecord></removedRecords></recoveryLog>
TIA!
Dennis

Turns out it's a resource limitation in Excels chart rendering engine. If I filter the data model so that less rows are included in the PivotChart, the error goes away.
Re
Dennis

Similar Messages

  • Slicers Removed from Template: "Removed Records: Slicer Cache from /xl/slicerCaches/slicerCache3.xml part (Slicer Cache)"

    Product: Microsoft Office Professional Plus 2010
    I have created a template file with a data table, 2 pivot tables, and each of those 2 pivot tables has a pivotchart and 2 slicers.  I have some code that updates the pivot table ranges.  When that occurs the pivot tables, pivotcharts and slicers
    all update successfully.  
    The problem comes after saving the .xlsm file.  Upon opening the file I receive a message saying "Excel found unreadable content in 'myTemplate.xlsm'. Do you want to recover the contents of this workbook? If you trus the source of this workbook,
    click Yes."
    I then get a list or removed records and the repair that was done.
    Removed Records: Slicer Cache from /xl/slicerCaches/slicerCache3.xml part (Slicer Cache)
    Removed Records: Slicer Cache from /xl/slicerCaches/slicerCache4.xml part (Slicer Cache)
    Removed Records: Slicers from /xl/slicers/slicer2.xml part (Slicer)
    Removed Records: Drawing from /xl/drawings/drawing4.xml part (Drawing shape)
    Repaired Records: Named range from /xl/workbook.xml part (Workbook)
    Most of the file is OK with the exception of my last worksheet.  The pivot table and chart get updated, but the slicers are gone.  Any idea why this is happening?  Can something be done to prevent this?
    Thanks,
    Rich

    Hi Rich,
    Based on your description, my understanding is that slicers are removed after you get the error messages and repair it. You wonder to know why slicers are lost after repairing, it seems that the corrupted file caused the issue.
    Please try to update the  pivot table ranges manually without macros. According to my test, the slicers won’t be lost without macros. Please test this method in your own environment. If it
    works fine after disable macros, please check your code.
    If my understanding is incorrect, could you upload a sample via OneDrive and be at bit more precise explain your problem, so that we can get more accurate solutions to this problem. I am glad to help and forward to your reply.
    Hope it’s helpful.
    Regards,

  • How to remove the a report from Transport

    Hi Have CR in transport and the CR contains many reports.
    a) If  i want to remove one report from that, plese tell wht are the steps do i need to follow.
    b)  if i want to remove entire transport request,Plese tell how to remove  the transport
    c) also give me steps if i want to remove the entire CR  from the transport.
    thanks in advance
    d) also please give me steps to release it to Quality.
    Thanks in advance.
    kp

    Hello KP,
    a) If i want to remove one report from that, plese tell wht are the steps do i need to follow.
    Go to SE09
    Find out the TR where u have added the report.
    Select the report and click delete button. A Popup will apprear for confirmation.Press YES.
    b) if i want to remove entire transport request,Plese tell how to remove the transport
    Then remove all objects from the TR and Delete the TR.
    Please reward points if it helps.
    Vasanth

  • Is it possible to remove a crash report from the server?

    I clicked on the Crash Reporter button thinking that it would let me review the report before it was sent out. Unfortunately, all it did was send the report. I do not want that report on the server and I would like to have it removed but I do not know how to go about this.
    OS: Windows 7 Ultimate 64-bit (SP1)
    FF: 17.0.1

    There is no personal Information on a crash Report unless you put something personally identifiable in the comment field. For example, here is a crash report I had on my machine awhile back: https://crash-stats.mozilla.com/report/index/bp-1de8924f-7068-4702-a410-89c492121220.
    You can go to about:crashes in your address bar, and click on the report to view the info there to satisfy yourself that there is nothing in the report. But submitting crash reports is very useful because it gives us the ability to view what crashes are plaguing our users and what we need to fix.

  • Remove record in database from Jtable?

    I want to delete row in databse, but don't know how to add field to primary key Jtable like hidden field,
    Can you show me or any difference way to solve this?

    There are two ways to hide a column (that I know of):
    1) Set the columns widths to 0. I don't like this approach because because the 'hidden' column still requires a tab.
    2) Remove the TableColumn from the TableColumnModel. This is my preferred approach.
    Here is a simple example using both approaches, You determine which approach you like best:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class TableColumnHide extends JFrame
         public TableColumnHide()
              String[] columnNames = {"Identifier", "Student#", "Student Name", "Gender", "Grade", "Average"};
              Object[][] data =
                   {new Integer(1), "Bob",   "M", "A", new Double(85.5) },
                   {new Integer(2), "Carol", "F", "B", new Double(77.7) },
                   {new Integer(3), "Ted",   "M", "C", new Double(66.6) },
                   {new Integer(4), "Alice", "F", "D", new Double(55.5) }
              DefaultTableModel model = new DefaultTableModel(data, columnNames);
              //  Hide column by setting minimum width
              JTable table1 = new JTable(model);
              table1.getColumnModel().getColumn(0).setMinWidth(0);
              table1.getColumnModel().getColumn(0).setPreferredWidth(0);
              table1.setPreferredScrollableViewportSize(table1.getPreferredSize());
              JScrollPane scrollPane1= new JScrollPane( table1 );
              getContentPane().add( scrollPane1, BorderLayout.WEST );
              //  Remove columns from TableColumnModel
              JTable table2 = new JTable(model);
              TableColumnModel columnModel2 = table2.getColumnModel();
              columnModel2.removeColumn( columnModel2.getColumn( 0 ) );
              table2.setPreferredScrollableViewportSize(table2.getPreferredSize());
              JScrollPane scrollPane2 = new JScrollPane( table2 );
              getContentPane().add( scrollPane2, BorderLayout.EAST );
              JPanel north = new JPanel( new GridLayout(1, 2) );
              north.add( new JLabel("Width = 0") );
              north.add( new JLabel("Remove Table Column") );
              getContentPane().add(north, BorderLayout.NORTH );
         public static void main(String[] args)
              TableColumnHide frame = new TableColumnHide();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setVisible(true);
    }Since we 'hid' the first column, try tabbing from the last column to the first. Notice which approach requires 2 tabs before the appropriate cell gets highlighted.

  • How to run report from context menu using XML Extensions?

    I have found an example how to run SQL command from context menu:
    <items>
    <folder type="TABLE">
    <name>UserDefined ContextMenus</name>
    <item TYPE="TABLE" reloadparent="true">
    <title>Create SYNONYM</title>
    <prompt type="check">
    <label>PUBLIC</label>
    <value>PUBLIC</value>
    </prompt>
    <prompt>
    <label>NEW SYNONYM NAME</label>
    </prompt>
    <sql>
    <![CDATA[CREATE #0# SYNONYM  #1# for "#OBJECT_OWNER#"."#OBJECT_NAME#"]]>
    </sql>
    <help>
    This action create a SYNONYM (optionally public) for the selected table.</help>
    <confirmation>
    <title>Confirmation</title>
    <prompt>SYNONYM "#1#" for "#OBJECT_NAME#" has been created.</prompt>
    </confirmation>
    </item>
    </folder>
    </items>
    </prompt>
    But instead of executing SQL command I need to show result page of report based on SELECT statement.

    Hi dz_r-
    Not sure exactly what you mean by "result page of report", but extensive documentation on the xml schema defining context menu actions is available at the schema location.
    &lt;items xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://xmlns.oracle.com/sqldeveloper/3_1/dialogs"
      xmlns="http://xmlns.oracle.com/sqldeveloper/3_1/dialogs">
        &lt;!-- your declarations here -->
    &lt;/items>
    Brian Jeffries
    SQL Developer Team

  • Is there anyway I can remove the MAC formatting from my hard drive so I can view it on a PC?

    I bought an external hard drive for all of my pictures and videos. While it was plugged into my computer, I was asked if I wanted to use this hard drive for Time Machine (To back-up my stuff). I said yes. Now, I am not able to share any of the photos and videos I have on there unless I bring my laptop with, or remove them and put them on a flash drive, then take the flash drive. Is there anyway to fix this without removing everything off of my hard drive or buying a new one? I am even considering either using a flash drive to back up, or not backing up at all. Thanks!

    Are you sure all those files that were on that drive are still on that drive. Any time you format a drive, especially when you change the format, everything is erased from the drive.
    to answer your question, No there isn't a way to remove the Mac fomatting and retain files on the drive. you would need to copy all of them to some other drive first then reformat the drive.

  • Can't view Crystal Reports from BW

    Hi,
    I'm installing SAP Integration Kit XI 3.1 SP3 with IIS.  I am able to publish reports from BW to BOE but not able view them from BW.  I followed the documentation to use report/report_view.aspx to define the viewer application in Content Administration Workbench.  But it is giving me a "The page cannot be found" error when I try to view Crystal Reports from BW.  I tried looking for the file report/report.aspx but cannot find it.  I was able to locate the file in SAP_CrystalReport_View/report_view.aspx.  I repointed the system to this path but it still giving me the same error. 
    Anybody here encountered this before?
    Thanks,
    Elijah

    Hi Ingo,
    - has the report being saved to BW and then published to BusinessObjects enterprise ?
        Yes, the report is being published from BW to BOE successfully.
    - did you import the ABAP Transports to the BW system ?
        I imported all the transports that came with the Integration Kit.  I'm not sure if the ABAP transport is one of them.
    - has the viewing service in transaction SICF been configured ?
        Yes, the top entry in the handler list is /CRYSTAL/CL_BW_HTTP_HANDLER.
    I did notice that the BW system is on a different subdomain than the web application server.  For example,
       BW system        -  bw01.us.mydomain.com
       BOE web server -   boweb.mydomain.com
    Would that affect the single sign on?

  • How to delete the all records in Ztable from report program

    Hi Guys,
    Good Day!
    How to delete all records in Ztable from report program(Means I want to clean Ztable records from report program) .  Please send me the code.
    Thanks & Regards,
    Reddy

    Use this.
    DELETE { {FROM target [WHERE sql_cond]}
           | {target FROM source} }.
    *But before deleting the rows please check if this Ztable is being used in any other programs or used by others.
    Check "where-used-list"
    in se11 give the table name
    utilities- where-used list.
    I hope this helps.
    thanks.

  • MSS 60.1.20: My Staff - Reporting: Trying to remove reports from tree list

    I am trying to remove (or I should say HIDE rather than remove) several of the SAP provided reports from the selection tree in the <b>MSS business package 60.1.20</b>. I checked the par file, and it appears that it relies on a function module, <b>HRWPC_RPT_FCODES_READ</b> which in turn calls <b>RH_MWB_FCODES_READ</b>, to build the tree structure based on function codes with scenario MSS0. I checked the IMG, and did not see any way of "hiding" these report/function codes through configuration. I assume I can delete the entries, but I do not want to do that. I would like to hide them. I noticed in the function module, that it refers to a hidden SAP structure <b>HRUSMWBFCH</b> that will exclude codes from the report tree.
    <b>Can anyone tell me how I should be hiding reports from the report tree?</b>

    I think I may have found the answer. In the IMG, you can go to Personnel Management -> Manager's Desktop -> Enhancement of Function Codes -> Define Structure of Function codes -> Change Arrangement of Function Codes.
    From here enter the scenario, higher level function code, and level number in the table. Be sure to check the box "function code hidden" to hide the item from the list.
    I had done this before, but the change did not appear within the portal. I had to actually refresh my browser cache by logging off and back on to the portal in order to see the changes.

  • Remove Reports from MSS

    Hello,
    I am working with the SAP MSS Business Package on the Portal. We have a functional requirement to remove all the "Time Management" reports that show up under the 'Reports' tab for the MSS role. I looked at the Reports iView and there is no option for me to select the reports that should/should not be shown on the portal.
    How can I prevent some of the reports from being displayed on the Portal?
    Thanks you for all the help...
    Guy

    Hi James,
    Try doing this
    Go to  Personnel Management -> Manager's Desktop -> Enhancement of Function Codes -> Define Structure of Function codes -> Change Arrangement of Function Codes.
    From here enter the scenario, higher level function code, and level number in the table. Be sure to check the box "function code hidden" to hide the item from the list.
    also check link
    MSS Reporting iview (remove certain reports)
    Thanks N Regards
    Santosh
    Reward if helpful !!!

  • Removing Report from launchpad

    I'm trying to remove a report from the MSS Launchpad and I'm not seeing exactly how to do it.  I'm not sure if that is done from the backend through SPRO, or if I can just hide it via the portal from content administration.  We are on ECC6 and ERP2005 I believe.
    Thanks.

    Ok, with help locating the right documentation area, this problem is solved.  For anyone else who is having trouble with this, I went to:
    IMG: Integration with Other MySAP.com Components --> Business Packages / Functional Packages --> Manager Self-Service (mySAP ERP) --> Reporting --> Set Up LaunchPad
    From here (transaction: FPB_LP_MSS_REP_CUST) I simply removed the line that corresponded to the report I wanted to remove from the LaunchPad.
    Thanks for the responses.

  • How to remove the Failure Chain from report header?

    I want to remove the Failure Chain from the report header. Failure chain displays only the 1st test which is failed rather than displaying all failed teststeps. so i want to remove this failure chain section from the report header.
    Please can anyone suggest me how to remove that. ?
    thanks & regards
    sameer kulkarni

    Hi Sameer,
    I am an Application Engineer at National Instruments and will try and help you with your enquiry.
    Am I right in thinking you want to be able to display all the failed steps displayed in the failure chain and you are using a Test Stand version 2 or later?
    As default Test Stand only reports the first test that failed in the failure chain. However, it is possible to expand the failure chain to show all failed steps. Below is included a KnowledgeBase article that will highlight the process for doing this:
    http://zone.ni.com/devzone/cda/tut/p/id/4563
    Please try the above steps and let me know if this solves your problem. If you require any further assistance please get in touch,
    Regards,
    Aaron. E
    Applications Engineer Team Lead
    National Instruments
    ni.com/support

  • Crystal Report Alerts not firing when no records are fetched from the DB

    Hello,
    The crystal report alert i have created in the report in the event of no records being fetched from the query is not firing.  The condition used is isnull ( count(DB Field ) ).
    Is there a limitation with alerts that they would be fired only when some records are fetched in the report.
    Appreciate any pointers
    -Jayakrishnan

    hi Jayakrishnan,
    as alerts require records to be returned here's what you will need to do:
    1) delete your current alert
    2) create a new formula with syntax like
                  isnull(DistinctCount ()) or DistinctCount () = 0
    3) create a new Subreport (which you will put in a report header)
    4) the subreport can be based off of any table
    5) have the subreport record selection always return only 1 record...for performance reasons
    6) change the subreport link to be based on the new formula
    7) the link will be a one way link in that you will not use the "Select data in subreport based on field" option
    8) now in the subreport, create the Alert based on the parameter created by the subreport link
    i have tested this and it works great.
    jamie

  • Remove a report from CUCM Cisco Unified Reporting

    Hello,
    I did a Unified CM Cluster Overview report in CUCM 8.6 (a cluster with 2 nodes, replication is good) but it took a long time. So I stopped the process.
    But when I enter the Unified CM Cluster Overview in Unified Reporting, it shows that generated report. And when I click it, it shows
    "ERROR : Fatal error encountered while validating report XML with schema".
    My question is : How can I delete a report from Cisco Unified Reporting ?
    I searched in Cisco Unified Reporting Administration Guide and I didn't found a way to do it.
    EDIT : Well the report was being generated, and the report can finally be displayed. But the question remains open. How can I delete this report ?
    Thank you for your answers.

    Hi Mohamed,
    Generate a new report, it will overwrite the old one. There is no option to delete it from cucm admin page. If you are concerned about the time it took to generate the report the first time then restart the Database Layer Monitor and Tomcat services before running a fresh report. Tomcat needs to be restarted from CLI of the Pub ( utils service restart Cisco Tomcat ), it is case sensitive.
    HTH
    Manish

Maybe you are looking for

  • Include XML payload as URL query string

    Hello Gurus - I have a business requirement that I'm hoping you all can help me with: Scenario: Send XML message from SAP XI to a third party system via the Receiver Plain HTTP Adapter I need to include the actual XML message as a query string in the

  • Render Queue in AME won't start, tried everything and the client needs the footage! Can anyone Help?

    Hi, I am exporting a quicktime file H.264 at 720p but cant seem to render the video.  I have read through heaps of forums and have tried the following: -Added black video (from premiere) to the video track 1 for entire length of work bar. - ticked us

  • Survey Application

    I am looking for an App to administer surveys and then upload the data to a website. The only one I have found is touchmetric and they do not answer their support. Any information would be appreciated. I need the survey to do rating scales. Thanks, R

  • HT201272 can i get my music when i backup

    I backup my iphone 4s and update to iSO 6.0.1 and  i open the backup but i can't find my music. Does the icloud backup the music or not?

  • SAPScript Form for Production order Pick List

    Hi gurus We need to make a small change on printout of production pick list and I can see the form name in transaction OPK8, which is the same one as printout of production order paper. But when I read the form with SE71, I cannot see section to do w