Charts corrupted at runtime

Hi,
I have a dashboard which have charts using dynamic visibility and some combo boxes. When i preview the dashboard and make some selections in combo boxes charts are getting corrupted (there background is not visible, data dont change etc)          . Though they work fine during fist two or three selections. But when i make selections for more times they get corrupted
Pls help if any one have encountered same problem          .
thanks..

Hi,
Are you using the latest Service Pack as well as the Fix pack of Xcelsius.  If not then try installing them and preview your dashboard again.
Else check if there is any issues with the logic or formula you are using or with the Dynamic Visibility logic you have used. Try Debugging them using spreadsheet component and see if they are working as desired.
Thanks & Regards,
Arjun.C.T

Similar Messages

  • Free Form Template and Combining Chart Values during Runtim

    Hi Guys,
    Need your expertise on this.  We received some unreasonable request for the following:
    1. Free Form Template DURING Runtime
    - moving charts from one place to another by dragging them from one place to another during runtime
    2. Combining of Chart values during Runtime
    -to be able to mash-up 2 different charts during runtime.  For example, dragging a chart to another chart
    would result to a combined-value of chart.  For instance, you have a Sales Chart and a Production Chart,
    if and when Sales Chart is dragged and placed on top of Production Chart then it would mash-up the values
    and will produce only one chart.
    Is this even possible?
    Hope you guys can help.
    Kind Regards and Many Thanks,
    Mark

    Hi Mark
    1. Free form template is not possible with current version of Dashboard Designer.  You may use the option of Dynamic Visibility to simulate this.  But this might not serve your requirement 100 %.
    2. Your requirement of mixing up chart just by dragging and droping on another is coming under Designing part.  For designing we need software, in my point of view.  Xcelsius is a Tool to generate required output in various formats.  Here we need to finalise the output such as chart type/ data to be displayed/ format to be displayed, etc and while viewing we may play with data but not with objects other than dynamic visibility.
    Hope this clarifies.
    With best wishes
    BaaRaa.

  • Can you change chart options at runtime?

    Howdy All:
        I'm trying to display charts in English and Japanese.  The lables on the charts (i.e., X-Axis, Y-Axis, Legend, etc.) are set in the properties window inside Visual Studio.  I would like to change these to Japanese at runtime if a user requests a Japanese version of the report instead of an English version of the report.  However, I have been unable to find a way to access the properties for the chart programatically.  Is this even possible and how?  If not, are there any suggestions on how I can accomplish this task in a different way?  Any feedback would be greatly appreciated.  Thanks!

    Hello,
    a possible workaround is to use a report library (report in english, report in japanese, different charts etc ) where you just download the needed report at runtime.
    Please also see the .NET chart class for useful properties :
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm

  • Reg:Creation of chart during query runtime

    Dear all,
    I want to display a Pie-Chart during my query execution
    dynamically. I am working only in query designer not in WAD.
    For example :  I have created a query in query designer based on Zonewise Sales Value. And i have designed the chart also based on these values. But i am facing the problem when i am executing the query i couldnt able to see the Pie-Chart desinged by me.
    Is it possible to save the Pie-Chart as saved view in my query  designer?
    Kindly do the needful. Helpful answers will be rewarded.
    Thanks,
    Harikrishna N

    hai expert's,
    is there any option to save and execute the chart during  query execution. i am asking in query designer?.....
    please through a ligh on it........
    Regards
    Harikrishna N

  • How i can change bar chart color in runtime??

    i have a bar chart with red as a default color.
    <mx:BarSeries
    id="progressBar"
    yField="Task_Name"
    minField="Start_Date"
    xField="Progress_Date"
    displayName="Progress"
    >
    <mx:fill>
    <mx:SolidColor id="progressColor" color="red"/>
    </mx:fill>
    i want to give the user the option to change the color. i
    used the following code:
    progressColor.color = colorChooser.selectedColor;
    colorChooser is color picker components.
    but that doesn't work. it doesn't change the color. it just
    changes the tooltip border color of the bar chart.
    please help
    thanks

    hi Shafr
    beleive it or not, i got it using trial and error. i keep
    trying words in the function setStyle until the color changed. i
    dont know why it is not documented.
    var periodBarColor:SolidColor = new
    SolidColor(taskSchedColorChooser.selectedColor, 1);
    periodBar.setStyle("fill",periodBarColor);
    //where taskSchedColorChooser is colorPicker component. you
    can replace it by any color you want

  • How to change chart type at runtime

    hi
    this application uses forms 6i client server environment, graph control is being used with og.interept libray,
    passing parameters run times thru forms to charts.
    issue is that, i want to change chart type at run time, when user changes list item like 'pie' and 'bar' value instead of creating two different charts i.e pie and bar.
    below is the code is being used to run charts.
    begin
    declare
    pl_id ParamList;
    query0 varchar2(256);
    begin
    query0 := 'select deptno, sum(sal) from emp where deptno in( '||:dept1||','||:dept2||') group by deptno;';
    pl_id := Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List(pl_id);
    END IF;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id,'dept1',text_PARAMETER,:dept1);
    Add_Parameter(pl_id,'dept2',text_PARAMETER,:dept2);
    if :ch_type = 'pie' then
    og.interpret('e:\mas\emp2.ogd','g1',query0,true,pl_id);
    og.close('e:\mas\emp2.ogd','g1');
    elsif :ch_type = 'bar' then
    og.interpret('e:\mas\emp3.ogd','g1',query0,true,pl_id);
    og.close('e:\mas\emp3.ogd','g1');
    end if;
    END;
    end;
    thanks
    i'd be appreciated on early reply.
    ali

    hi
    this application uses forms 6i client server environment, graph control is being used with og.interept libray,
    passing parameters run times thru forms to charts.
    issue is that, i want to change chart type at run time, when user changes list item like 'pie' and 'bar' value instead of creating two different charts i.e pie and bar.
    below is the code is being used to run charts.
    begin
    declare
    pl_id ParamList;
    query0 varchar2(256);
    begin
    query0 := 'select deptno, sum(sal) from emp where deptno in( '||:dept1||','||:dept2||') group by deptno;';
    pl_id := Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List(pl_id);
    END IF;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id,'dept1',text_PARAMETER,:dept1);
    Add_Parameter(pl_id,'dept2',text_PARAMETER,:dept2);
    if :ch_type = 'pie' then
    og.interpret('e:\mas\emp2.ogd','g1',query0,true,pl_id);
    og.close('e:\mas\emp2.ogd','g1');
    elsif :ch_type = 'bar' then
    og.interpret('e:\mas\emp3.ogd','g1',query0,true,pl_id);
    og.close('e:\mas\emp3.ogd','g1');
    end if;
    END;
    end;
    thanks
    i'd be appreciated on early reply.
    ali

  • Fixed Line in Bar Chart

    Hi,
    I have a Chart that shows monthly values. Now, I would like to add a fixed line that shows the average of all values.
    How can I do that?
    Thanks, Johannes

    Hello Johannes!
    Please have a look into Kai Gutenkunst's blog: [/people/kai.gutenkunst/blog/2008/10/22/bi-chart-item-modifying-chart-settings-at-runtime|/people/kai.gutenkunst/blog/2008/10/22/bi-chart-item-modifying-chart-settings-at-runtime].
    There is only one disadvantage: you need BI 7.01 (EhP1).
    By default, you can only add a second line with a fix value.
    Yours,
       Tobias

  • Runtime Error - Suddenly From Nowhere

    Running Windows XP SP2 - 2GBS RAM - AMD Dual Core 64X2 - Roomy drive.
    I've been running 1.2, since it was first offered as an upgrade to 1.1. I never upgraded to 1.3, because it didn't seem to offer me much, and I was fearful of some of the upgrade problems I had read about..
    SUDDENLY, after using LR frequently, until around three weeks ago, I tried to open it today, and I got the same RUNTIME error which has been reported by other users.
    So, I thought it might have been a glitch in 1.2, and to test it, I upgraded to 1.4. NO DICE, same error.
    I opened LR by holding down the CTRL button, and was offered 2 of my backup catalogs, older ones, on my external drive, and my original catalog. I couldn't open up my original one - same Runtime Error, but could open up the backup. I eventually found all of my backup cataloges in the backup folder on my external drive, and the most recent contains around 97% of my work -- not much work that had been unbacked up.
    What can I, or should I do? It seems to me that my original catalogue must have somehow become corrupt -- obviously an Adobe Bug, or else I wouldn't be reading about so many others with the same problem. I guess I could open up the most recent backup, but what do I do with it then? Ideally, LR opens up with a regular catalogue on my internal drive and the backups are where they belong, on my external drive. Is it possible to resurrect my original catalouge? If so, how? If not, how do I convert my backup catalouge to my main one?

    You mean I've been able to zip files all these years and never knew it? WOW! And, I thought I was so smart.
    LEE: Do you have any opinion on whether or not LR would be more stable on a MAC? This corrupt file/Runtime error, is pecular to Windows, isn't it? I'm getting tired of having to troubleshoot various programs, operating systems, browsers, etc. I think the MAC commercials may be getting to me. I went to the Apple Store today. The IMACS are really neat, and if they're more stable than a PC, I may make the move. If I do, I'll be back here asking you how to migrate my catalogue.

  • CR2008 - Set chart titles during run time

    Hello community!
    Is there a way to change the chart titles during runtime with the fullversion?
    I have the following code to change the text of the "FieldHeadingObject" and "TextObject" and this is working.
    foreach (CrystalDecisions.CrystalReports.Engine.ReportObject repObject in sec.ReportObjects)
       if (repObject.Kind == ReportObjectKind.TextObject ||
           repObject.Kind == ReportObjectKind.FieldHeadingObject)
            ((CrystalDecisions.CrystalReports.Engine.TextObject)repObject).Text = "my new Text";
    How can I change the titles of the chart object?
    I know already that there is the class "ChartTextOptionsClass"
    Does someone know how I could access the TextOptions in the ChartObject so that the new Titles are displayed in the report?
    Thank you
    Alex

    Hello Ludek!
    Thank you for the example code. I modified them to meet my requirements.
    void LoadReportLanguageResources(ReportClass report)
       foreach ( CrystalDecisions.CrystalReports.Engine.Section sec in report.ReportDefinition.Sections)
          foreach (CrystalDecisions.CrystalReports.Engine.ReportObject repObject in sec.ReportObjects)
             if (repObject.Kind == ReportObjectKind.TextObject ||
                  repObject.Kind == ReportObjectKind.FieldHeadingObject)
                ((CrystalDecisions.CrystalReports.Engine.TextObject)repObject).Text = "test";
       CrystalDecisions.CrystalReports.Engine.ReportDocument rptDoc = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
       CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rptClientDoc;
       report.Load();
       rptClientDoc = report.ReportClientDocument;
       CrystalDecisions.ReportAppServer.ReportDefModel.ReportObjects myCharts;
       myCharts = rptClientDoc.ReportDefController.ReportObjectController.GetReportObjectsByKind(CrReportObjectKindEnum.crReportObjectKindChart);
       foreach (CrystalDecisions.ReportAppServer.ReportDefModel.ReportObject oldObject in myCharts)
          if (oldObject.Kind == CrReportObjectKindEnum.crReportObjectKindChart)
             CrystalDecisions.ReportAppServer.ReportDefModel.ChartObject oldChart;
             CrystalDecisions.ReportAppServer.ReportDefModel.ChartObject newChart;
             oldChart = (CrystalDecisions.ReportAppServer.ReportDefModel.ChartObject)oldObject;
             newChart = (CrystalDecisions.ReportAppServer.ReportDefModel.ChartObject)oldChart.Clone(true);
             newChart.ChartStyle.TextOptions.Title = "My new Title";
             newChart.ChartStyle.TextOptions.DataTitle = "My new data Title";
             newChart.ChartStyle.TextOptions.SeriesTitle = "My new series Title";
             rptClientDoc.ReportDefController.ModifyChartObject(oldChart, newChart);
    But I am hvaing problems with the method modifyChartObject(oldChart, newChart). When the method is called i get an COMException with a message like "The data fields of the diagramm are not valid" (German message: "Die Datenfelder des Diagramms sind ungültig"); ErrorCode -2147213287;
    LoadReportLanguageResources is called via the following functions - I left out the outermost functions where the reportingList is loaded and the parameter is built.
    //Checks the list with the report items and call the main load method
    void IReportView.LoadHusReport(IList<HusRepItem> reportingList, BDEA01RangeParameter parameter)
       if ( reportingList.Count > 0)
          reportClass = new repHusReport();
          reportClass.SetDataSource(reportingList);
          LoadReport(reportClass, "Hus Station Report", parameter);
    void LoadReport(CrystalDecisions.CrystalReports.Engine.ReportClass myReport, string title, BDEA01Parameter parameter)
       //check the parameters
       //set the parameters for the report (start and end time of the displayed report range)
       myReport.SummaryInfo.ReportTitle = title;
       if(reportViewer == null)
          crCrystalReportViewer = new CrystalReportViewer();
          reportViewer.Child = crCrystalReportViewer;
       LoadReportLanguageResources(myReport);
       crCrystalReportViewer.ReportSource = myReport;
    Is there something I have forgotten?
    I checked the datafields of the old and the new chart and both have 0 entries before the ModifyChartObject method is called.
    If the method is not called, the report is functioning and all values/diagrams are displayed correctly.
    Thank you Ludek for your help.
    Alex
    Edited by: Alexander Frwirth on Jul 7, 2010 10:13 AM

  • I moonlight as a crash test dummy.

    Right now, I have total sympathy for Buster the Crash Test dummy on Mythbusters.
    If you wander by the AE forums, you'll see the saga I just finished over there. 20 hour long renders with AE and Media Encoder on tiny, tiny files. BUT I got it worked and was just getting to the point where I was almost done with my project.
    Then the strangest thing happened - Media Encoder suddenly started working, all mysterious like. It not only started working but I was getting large renders done in under an hour (well, for me - my system isn't that great but I muddle through - my projects aren't really that huge either.
    Then this afternoon everything went to #$^#* again!
    QuickTime and iTunes stopped, AE stopped and Premiere Pro stopped. As in start loadng and immediately crash.
    I'm running an AMD Windows 7 64 system and me and AMD are going to go to war here in a bit. Everytime they give me a new driver CPU or GPU things go freaking nuts.
    So, wen't back to the old drivers but had a heck of a time getting QuickTime to install correctly again, along with iTunes and their Bonjour serrvice. Then I tackled Adobe stuffs. I got AE and Media Encoder working again bugt Premiere Pro is still freaking out. I uninstalled, reinstalled, and had to fix my CC account like others have posted on here. Got the new EULA and thought I was doing okay (after a bazillion hours).
    But Premiere is still being stubborn. So I tried Photoshop - that worked. AE fired up too but then wigged and said Quicktime was no longer installed on my system.
    And it looks like I spoke too soon - Encoder just crapped out on me again..
    Oh for the long lost wealthy  uncle to appear so I can get a decent system. That would definetely help. But like I said, I don't do a lot of major stuff. I'm an indie author, so my stuff is book trailers and short marketing stuffs. But this is nuts.
    I've updated all of my CC programs - AE is 12.2.1.5 - like I said, I've reinstalled them about three times now. I primarily only use AE, Premiere, and Photoshop - for right now. I'm keeping the d/l to a minimum until I get this worked out.
    I'm running Windows 7 64bt Home Premium - that just did a big ole update too. I had to go put things back the way I had them. I'm doing short, small renders, lots of pre-renders but my stuff is really light in comparision to what y'all deal with. I try to keep it in H264, mov or avi, or sometimes I'll strip the footage down to bare bones just to hunt down the problem. I'm trying to render 56mg video footage right now.
    Basically Premiere won't eve start. Media Encoder has been starting but is now locking up. And believe it or not, AE seems to be the most cooperative.
    I've scrubbed the caches repeatedly, and not long ago, I used the Adobe cleaner, so this is basically new installs.
    Since I've got 100% AMD I have no choie but to run the Mercury engine. Since this all started in the beginning of the week, I've been running this stuff lean and mean. Like I said, I thought I had it - then.
    Hit the brick wall and went through the windshield.
    Cheers,
    Kath

    Runtime errors can be common. They usually stem from a bad, outdated, or otherwise corrupt C++ Runtime.dll.
    I would address that issue first and foremost. Google "runtime error," and begin reading. There will be many hits, but if you refine your search with words like Adobe, Premiere, etc., you'll narrow things down. There will be links to the MS site for updated runtime.dll's. Note: make sure that you get the one that perfectly matches your version of the OS. Do NOT get one for any other version, than yours. Check this carefully.
    Good luck,
    Hunt

  • How to display the Data labels in Chartobject Dynamically?

    Hi
    i am using Crystal Report Server XI R2 -  ReportClientDocument to generate reports dynamically.
    i want to display the data labels on the chart object in runtime. how it is possible?
    is there any way to achieve this? since it is possible in designer, i hope that there must be WAY.....
    Regards,
    Padmanaban V

    The chart analyzer is a third party tool that Crystal is licensed to use in the designer. That means in the Crystal Designer you have a lot of chart functionality, but at runtime the chart exists as part of the report object and the analyzer is not present. Therefore you have a few formatting options but not as many as in the designer.
    For details of what options you have with the chart at runtime, see these links:
    [1|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEngineChartObject_MembersTopic.htm]
    [2|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEngineChartObject_PropertiesTopic.htm]
    [3|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEngineChartObjectClassTopic.htm]
    Ludek

  • Problem in Configuring the Object Editor User Interface

    Hi,
         I m using NetWeaver 7.0.11 & facing the problem in Configuring the Object Editor User Interface.In the Configuration Browser ,when i click on Object Editor & choose New Configuration & try to select service,it shows the flollowing error:
    com.sap.caf.rt.exception.CAFBaseRuntimeException: Service manager initialization failed Illegal argument exception: Unable to create javax.ejb.EJBObject.
         at com.sap.caf.rt.ui.cool.generic.ServiceFacade.init(ServiceFacade.java:121)
         at com.sap.caf.rt.ui.cool.generic.ServiceFacade.<init>(ServiceFacade.java:50)
         at com.sap.caf.rt.ui.cool.generic.ServiceFacadeFactory.getFacadeInstance(ServiceFacadeFactory.java:51)
         at com.sap.caf.ui.utils.cool.CoolUtils.getServiceFacade(CoolUtils.java:123)
         at com.sap.caf.ui.ptn.objecteditor.ObjectEditorCC.getServiceFacade(ObjectEditorCC.java:505)
         at com.sap.caf.ui.ptn.objecteditor.wdp.InternalObjectEditorCC.getServiceFacade(InternalObjectEditorCC.java:245)
         at com.sap.caf.ui.ptn.objecteditor.config.OEconfiguratorLayout.onActionSelectModule(OEconfiguratorLayout.java:322)
         at com.sap.caf.ui.ptn.objecteditor.config.wdp.InternalOEconfiguratorLayout.wdInvokeEventHandler(InternalOEconfiguratorLayout.java:300)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:759)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Can anybody please tell,what can be the problem?
    regards
    Sumit

    Hello Sumit
    This is most probably the result of metadata corruption on runtime.
    A possible workaround for this situation is:
    Undeploy all the metadata DCs of all the CAF applications you have
    deployed (these are the components which names end on "/metadata", excl.
    caf/core/metadata and caf/tc/metadata (which are part of CAF itself)).
    And then deploy the CAF applications again.
    Regards,
    Désiré

  • [SOLVDED]makepkg not wokking and [error: failed to commit transaction]

    I had some problems with the liblzma.so.5, so I update the xz library, and it worked -the problem was with R, the statistic program-
    pacman -S xz
    After that, I tried to install some AUR programs, and got this error with the libzma.so.0. I read  this thread and did:
    sudo mv /usr/lib/liblzma.so /usr/lib/liblzma.so.0
    AND
    sudo ln -s /usr/lib/liblzma.so /usr/lib/liblzma.so.0
    With this, the problem with that library did not appear, but when doing the makepkg with every package I tried, I got:
    error: 'xbindkeys_config-0.1.3-2-x86_64.pkg.tar.xz': cannot open package file
    After that, I did a total update of the system, but got this errors:
    checking package integrity...
    error: failed to commit transaction (invalid or corrupted package)
    tzdata-2010n-1-x86_64.pkg.tar.xz is invalid or corrupted
    glibc-2.12.1-3-x86_64.pkg.tar.xz is invalid or corrupted
    alsa-lib-1.0.23-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxml2-2.7.7-2-x86_64.pkg.tar.xz is invalid or corrupted
    glib2-2.26.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    shared-mime-info-0.80-1-x86_64.pkg.tar.xz is invalid or corrupted
    exiv2-0.20-1-x86_64.pkg.tar.xz is invalid or corrupted
    strigi-0.7.2-3-x86_64.pkg.tar.xz is invalid or corrupted
    libxext-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    recordproto-1.14.1-1-any.pkg.tar.xz is invalid or corrupted
    libxtst-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    scrnsaverproto-1.2.1-1-any.pkg.tar.xz is invalid or corrupted
    libxss-1.2.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxcursor-1.1.11-1-x86_64.pkg.tar.xz is invalid or corrupted
    kdelibs-4.5.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    oxygen-icons-4.5.3-1-any.pkg.tar.xz is invalid or corrupted
    kdebase-runtime-4.5.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    amarok-2.3.2-3-x86_64.pkg.tar.xz is invalid or corrupted
    audacious-plugins-2.4.0-3-x86_64.pkg.tar.xz is invalid or corrupted
    avahi-0.6.27-7-x86_64.pkg.tar.xz is invalid or corrupted
    bash-4.1.009-1-x86_64.pkg.tar.xz is invalid or corrupted
    bluez-4.77-1-x86_64.pkg.tar.xz is invalid or corrupted
    libevent-1.4.14b-2-x86_64.pkg.tar.xz is invalid or corrupted
    chromium-7.0.517.44-1-x86_64.pkg.tar.xz is invalid or corrupted
    fixesproto-4.1.2-1-any.pkg.tar.xz is invalid or corrupted
    compositeproto-0.4.2-1-any.pkg.tar.xz is invalid or corrupted
    db-5.1.19-2-x86_64.pkg.tar.xz is invalid or corrupted
    pam-1.1.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    coreutils-8.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    curl-7.21.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    damageproto-1.2.1-1-any.pkg.tar.xz is invalid or corrupted
    python2-2.7-3-x86_64.pkg.tar.xz is invalid or corrupted
    dbus-python-0.83.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    udev-163-1-x86_64.pkg.tar.xz is invalid or corrupted
    device-mapper-2.02.75-1-x86_64.pkg.tar.xz is invalid or corrupted
    dhcpcd-5.2.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    dialog-1.1_20100428-2-x86_64.pkg.tar.xz is invalid or corrupted
    elfutils-0.149-2-x86_64.pkg.tar.xz is invalid or corrupted
    heimdal-1.3.3-2-x86_64.pkg.tar.xz is invalid or corrupted
    evolution-data-server-2.32.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxinerama-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    randrproto-1.3.2-1-any.pkg.tar.xz is invalid or corrupted
    libxrandr-1.3.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxcomposite-0.4.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    gdk-pixbuf2-2.22.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    gtk2-2.22.0-5-x86_64.pkg.tar.xz is invalid or corrupted
    exo-0.3.107-2-x86_64.pkg.tar.xz is invalid or corrupted
    pycairo-1.8.10-2-x86_64.pkg.tar.xz is invalid or corrupted
    gobject-introspection-0.9.12-1-x86_64.pkg.tar.xz is invalid or corrupted
    pygobject-2.26.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    gstreamer0.10-python-0.10.18-3-x86_64.pkg.tar.xz is invalid or corrupted
    farsight2-0.0.22-1-x86_64.pkg.tar.xz is invalid or corrupted
    x264-20101013-1-x86_64.pkg.tar.xz is invalid or corrupted
    libvpx-0.9.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    libva-1.0.5-2-x86_64.pkg.tar.xz is invalid or corrupted
    ffmpeg-25679-1-x86_64.pkg.tar.xz is invalid or corrupted
    filesystem-2010.10-1-any.pkg.tar.xz is invalid or corrupted
    libice-1.0.7-1-x86_64.pkg.tar.xz is invalid or corrupted
    libsm-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxt-1.0.9-1-x86_64.pkg.tar.xz is invalid or corrupted
    xulrunner-1.9.2.12-1-x86_64.pkg.tar.xz is invalid or corrupted
    firefox-3.6.12-1-x86_64.pkg.tar.xz is invalid or corrupted
    fluidsynth-1.1.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    fontsproto-2.1.1-1-any.pkg.tar.xz is invalid or corrupted
    gamin-0.1.10-4-x86_64.pkg.tar.xz is invalid or corrupted
    ghostscript-9.00-1-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-desktop-2.32.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxslt-1.1.26-2-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-doc-utils-0.20.2-2-any.pkg.tar.xz is invalid or corrupted
    gnome-keyring-2.32.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libglade-2.6.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    pygtk-2.22.0-3-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-menus-2.30.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-panel-2.32.0.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    perl-5.12.1-3-x86_64.pkg.tar.xz is invalid or corrupted
    gtk-doc-1.15-2-any.pkg.tar.xz is invalid or corrupted
    gvfs-1.6.5-2-x86_64.pkg.tar.xz is invalid or corrupted
    imagemagick-6.6.4.10-1-x86_64.pkg.tar.xz is invalid or corrupted
    iproute2-2.6.35-4-x86_64.pkg.tar.xz is invalid or corrupted
    kernel26-2.6.35.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    kernel26-headers-2.6.35.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    libburn-0.8.8.pl00-1-x86_64.pkg.tar.xz is invalid or corrupted
    djvulibre-3.5.23-1-x86_64.pkg.tar.xz is invalid or corrupted
    libdmx-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libfontenc-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libgphoto2-2.4.10-1-x86_64.pkg.tar.xz is invalid or corrupted
    mutagen-1.20-3-any.pkg.tar.xz is invalid or corrupted
    libplist-1.3-2-x86_64.pkg.tar.xz is invalid or corrupted
    libimobiledevice-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    libgpod-0.8.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libgsf-1.14.18-2-x86_64.pkg.tar.xz is invalid or corrupted
    libisofs-0.6.38-1-x86_64.pkg.tar.xz is invalid or corrupted
    libproxy-0.4.6-2-x86_64.pkg.tar.xz is invalid or corrupted
    libsasl-2.1.23-5-x86_64.pkg.tar.xz is invalid or corrupted
    libpurple-2.7.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    libspectre-0.2.6-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxmu-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxpm-3.5.9-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxaw-1.0.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxdmcp-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxfont-1.4.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxft-2.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxkbfile-1.0.7-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxres-1.0.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxv-1.0.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxxf86dga-1.1.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxxf86vm-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    lvm2-2.02.75-1-x86_64.pkg.tar.xz is invalid or corrupted
    man-pages-3.30-1-any.pkg.tar.xz is invalid or corrupted
    mlocate-0.23.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    mpfr-3.0.0.p4-1-x86_64.pkg.tar.xz is invalid or corrupted
    postgresql-libs-9.0.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    redland-1.0.12-2-x86_64.pkg.tar.xz is invalid or corrupted
    openoffice-base-3.2.1-3-x86_64.pkg.tar.xz is invalid or corrupted
    pidgin-2.7.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    python-3.1.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    python-urwid-0.9.9.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    rrdtool-1.4.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    ruby-1.9.2_p0-4-x86_64.pkg.tar.xz is invalid or corrupted
    tdb-1.2.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    vte-0.26.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    terminator-0.95-2-x86_64.pkg.tar.xz is invalid or corrupted
    vigra-1.7.0-4-x86_64.pkg.tar.xz is invalid or corrupted
    vlc-1.1.4.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    wicd-1.7.0-6-any.pkg.tar.xz is invalid or corrupted
    wireshark-cli-1.4.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    wireshark-gtk-1.4.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    xcb-proto-1.6-2-any.pkg.tar.xz is invalid or corrupted
    xorg-iceauth-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-sessreg-1.0.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xcmsdb-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xbacklight-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xgamma-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xhost-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xinput-1.5.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xmodmap-1.0.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    nickle-2.70-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xrandr-1.3.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xrdb-1.0.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xrefresh-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xset-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xsetroot-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-server-utils-7.6-1-any.pkg.tar.xz is invalid or corrupted
    xfce4-session-4.6.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-luit-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xpr-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xwd-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xwud-1.0.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-x11perf-1.5.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xcursorgen-1.0.4-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xkill-1.0.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-apps-7.6-1-any.pkg.tar.xz is invalid or corrupted
    xorg-server-common-1.9.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-server-1.9.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-utils-7.6-5-x86_64.pkg.tar.xz is invalid or corrupted
    xterm-266-1-x86_64.pkg.tar.xz is invalid or corrupted
    Errors occurred, no packages were upgraded.
    What could i do?
    Last edited by gromlok (2010-11-09 01:07:40)

    Well, I found this solution:
    Reading this thread, when I did:
    pacman -S libarchive
    and after that a:
    pacman -Syu
    Everything worked again. I don't know why, and why with that particular library. Is someone could expand the information we would be grateful.
    Thank you.

  • Small desciptions and no axis description

    Hello all,
    1. In design time I have added desciptions to my value axis of all charts. In runtime I do not see the description for line charts. Is this a bug?
    2. The lettertype / font in charts are different from the ones used in tables / drop down boxes etc. Also in some charts the texts are very small, such that the user cannot read the text anymore. Where can I change these settings?
    Thanks in advance,
    Ralph

    Deployed with option 'enable styling of flex controls in portal theme'. After unchecking this option the normal layout is displayed again.

  • Wow! I feel like a "Crash-Test" Dummy!

    First of all - I wabt to like Premiere CS4 - I really do. However, I started a new project with it, captured clips, started working........
    ..........and that is where the trouble began.
    This program is crashing upon virtually EVERY save or auto-save. I suffered through it for a few weeks (it is totally random when it crashes) and after this purgatorius experience(I have sent 411 crash reports to Adobe) - I exported my edited clips to CS3, set up a new project with the exact same settings as the old (NTSC DV, 48 KHZ 16 bit audio) and.............
    ...........I have been able to work and actually edit AND auto-save with NO crashes sice yesterday. Thank God I did not uninstall CS3.
    My system:
    Dual core Dual processor Woodcrest
    6 GB RAM
    6 TB HD Space (programs on C drive only)
    NVidia FX 3800 1 GB VRAM
    Any ideas as to where to go to troubleshoot - or should I just wait for an update? Any other crash experiences or problems? Thanks for any and all help. I really want to like CS4..............

    Runtime errors can be common. They usually stem from a bad, outdated, or otherwise corrupt C++ Runtime.dll.
    I would address that issue first and foremost. Google "runtime error," and begin reading. There will be many hits, but if you refine your search with words like Adobe, Premiere, etc., you'll narrow things down. There will be links to the MS site for updated runtime.dll's. Note: make sure that you get the one that perfectly matches your version of the OS. Do NOT get one for any other version, than yours. Check this carefully.
    Good luck,
    Hunt

Maybe you are looking for