Getting unknown error while changing pixels in export to wmv

If I am exporting a wmv whit standard settings, no problems. But when I am changing the pixels in, for example, the height I am getting a unknown error????

Hi Prakash,
Try 
stsadm -o  execadmsvcjobs
and then run the last command
stsadm.exe -o osearch -farmserviceaccount DomainName\UserName -farmservicepassword NewPassword
if that doesn't help 
stop and start search using command line below and run last command
stsadm -o osearch -action stop
then
stsadm -o osearch -action start
Let us know your results, thanks

Similar Messages

  • I keep getting "Unknown Error while saving"

    I keep getting "Unknown Error while saving"
    Using APE-11 on Windows 7- This error is a first for me, after many years of using Premiere. The product is a mix of photos (jpg and png), video clips (mpg-2 and mp4), and audio clips (all mp3). When I try to publish as Standard DVD- MPEG-2. I get the error. Error repeats saving as MP4.  Error gives no location on the timeline where it is running into an obstacle to saving, so I do not know where to begin looking to remove repair or replace the item causing the 'unknown error'. The prel runs fine, start to finish, giving no indication that the save may run into a problem on final rendering.
    I have tried many different options like rendering the entire timeline prior to saving, converting the clips to all be the same format, with no resolution to the problem.
    I have worked many long hours for many weeks on this project, and I am not going to give it up, especially when the majority of the clips were created on APE in the first place, and the images are all Photoshop edited images
    HELP PLEASE!!
    DougN

    Screenshot of error message for above issue
    Also: Since first report, I have attempted render with all sound clips removed (easiest to to with hundreds of clips/photos), with no help. Same error appears.
    I will continue removing aspects of the project until I get a completed save, or until I get an answer here!
    After removing the sound and video clips, video saved ok, with blank spots where the missing video clips were. So I reopened the original prel file, and began checking them individually.
    When I checked the clip properties, it correctly identified the path to the source video, but when I asked it to 'reveal in project', I got this error
    So I assume this is where the SAVE error is happening, but as I am not an Adobe coder, I have no idea what it is telling me.
    I did check to insure that the source video from which this clip originates, is in the project assets. I checked all the other clips as well, and any clip from this source video, generates the same error.
    The source video runs fine on its own and is an mpeg-2 file.
    Properties of the source video are:

  • I get an error while changing modules pop up when opening Lr. There is no import button to use and if I try to load the default catalog I get the error message again essentially making Lr completely unusable for me! please help

    When launching Lr i get the initial screen to come up followed by an "error while changing modules" pop up. I have uninstalled and re-downloaded, followed all the suggested trouble shooting fixes and still nothing. When the app starts it has the basic info boxes but without any options in them (i.e. no import button or any buttons at all for that matter).All my other creative cloud apps seem to be working fine but Lr won't. Please help

    Ah, see, you said you had done it differently before.
    > and I tried to add a toolbox button by navigating to AcroPDF.dll.
    You'll need to reinstall Reader if the libraries aren't registered. You can't register them manually.
    Perhaps if you posted some of your code (where it creates the objects, etc.) we might be able to give you some more advice. You're sure you aren't trying to use anything outside of the AxAcroPDFLib.AxAcroPDF class?

  • Getting an error while changing a tag in an XML file

    Hi,
    When I am trying to replace the existing XML tag with other one I am getting the following exception:
    org.w3c.dom.DOMException: NOT_FOUND_ERR: An attempt is made to reference a node in a context where it does not exist.
    at org.apache.xerces.dom.ParentNode.internalInsertBefore(Unknown Source)
    at org.apache.xerces.dom.ParentNode.replaceChild(Unknown Source)
    at org.apache.xerces.dom.CoreDocumentImpl.replaceChild(Unknown Source)
    at com.Replace_Tag.replaceNode(Replace_Tag.java:97)
    at com.Replace_Tag.processRequest(Replace_Tag.java:39)
    at com.Replace_Tag.doGet(Replace_Tag.java:56)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:619)
    The following is the code I am using :
    public void replaceNode() throws Exception{
            DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
            DocumentBuilder db = dbf.newDocumentBuilder();
            Document doc = db.parse("file:/C:/Documents and Settings/srikanth.d.KNOAHSOFT/Desktop/Linechart.jrxml");
            Element root = doc.getDocumentElement();
            Element newElement = doc.createElement("stackedBarchart");
            NodeList oldList = root.getElementsByTagName("lineChart");
            int length = oldList.getLength();
            System.out.println("length::"+length);
            for(int i=0;i<length;i++)
                Node oldNode = oldList.item(i);
                NodeList nl = doc.getChildNodes();
    newElement.getTagName().toString());                   
    (i).getNodeName().toString());
                doc.replaceChild((Node)newElement, oldNode);           
    Can anybody help me in this regard...
    Thanks and Regards
    DNV Srikanth

    i am posting the xml file also :
    <?xml version="1.0" encoding="UTF-8"  ?>
    <!-- Created with iReport - A designer for JasperReports -->
    <!DOCTYPE jasperReport PUBLIC "//JasperReports//DTD Report Design//EN" "http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
    <jasperReport
               name="Line chart"
               columnCount="1"
               printOrder="Vertical"
               orientation="Portrait"
               pageWidth="396"
               pageHeight="842"
               columnWidth="396"
               columnSpacing="0"
               leftMargin="0"
               rightMargin="0"
               topMargin="0"
               bottomMargin="0"
               whenNoDataType="NoPages"
               isTitleNewPage="false"
               isSummaryNewPage="false">
         <property name="ireport.scriptlethandling" value="2" />
         <property name="ireport.encoding" value="UTF-8" />
         <import value="java.util.*" />
         <import value="net.sf.jasperreports.engine.*" />
         <import value="net.sf.jasperreports.engine.data.*" />
         <queryString><![CDATA[select * from evalsubcomparison where qacount1 between 70.0 and 75.0]]></queryString>
         <field name="EmpId" class="java.lang.Double"/>
         <field name="Empname" class="java.lang.String"/>
         <field name="BaseEmpId" class="java.lang.Double"/>
         <field name="QACount1" class="java.lang.Double"/>
         <field name="WeekId1" class="java.lang.String"/>
         <field name="QACount2" class="java.lang.Double"/>
         <field name="WeekId" class="java.lang.String"/>
         <field name="QACount3" class="java.lang.Double"/>
         <field name="WeekId3" class="java.lang.String"/>
         <field name="QACount4" class="java.lang.Double"/>
         <field name="WeekId4" class="java.lang.String"/>
         <field name="level" class="java.lang.Double"/>
              <background>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </background>
              <title>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </title>
              <pageHeader>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </pageHeader>
              <columnHeader>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </columnHeader>
              <detail>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </detail>
              <columnFooter>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </columnFooter>
              <pageFooter>
                   <band height="0"  isSplitAllowed="true" >
                   </band>
              </pageFooter>
              <summary>
                   <band height="301"  isSplitAllowed="true" >
                        <lineChart>
                             <chart  hyperlinkTarget="Self" >
                             <reportElement
                                  mode="Opaque"
                                  x="0"
                                  y="0"
                                  width="390"
                                  height="300"
                                  backcolor="#FFFFFF"
                                  key="element-1"/>
                             <box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
                                  <chartLegend textColor="#000000" backgroundColor="#FFFFFF" >
                             <font fontName="Times New Roman" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" isPdfEmbedded="false" pdfEncoding="Cp1252"/>
                             </chartLegend>
                             </chart>
                             <categoryDataset>
                                  <dataset >
                                  </dataset>
                                  <categorySeries>
                                       <seriesExpression><![CDATA["WE "+$F{WeekId1}]]></seriesExpression>
                                       <categoryExpression><![CDATA[$F{Empname}]]></categoryExpression>
                                       <valueExpression><![CDATA[$F{QACount1}]]></valueExpression>
                        <itemHyperlink >
                        </itemHyperlink>
                                  </categorySeries>
                                  <categorySeries>
                                       <seriesExpression><![CDATA["WE "+$F{WeekId}]]></seriesExpression>
                                       <categoryExpression><![CDATA[$F{Empname}]]></categoryExpression>
                                       <valueExpression><![CDATA[$F{QACount2}]]></valueExpression>
                        <itemHyperlink >
                        </itemHyperlink>
                                  </categorySeries>
                                  <categorySeries>
                                       <seriesExpression><![CDATA["WE "+$F{WeekId3}]]></seriesExpression>
                                       <categoryExpression><![CDATA[$F{Empname}]]></categoryExpression>
                                       <valueExpression><![CDATA[$F{QACount3}]]></valueExpression>
                        <itemHyperlink >
                        </itemHyperlink>
                                  </categorySeries>
                                  <categorySeries>
                                       <seriesExpression><![CDATA["WE "+$F{WeekId4}]]></seriesExpression>
                                       <categoryExpression><![CDATA[$F{Empname}]]></categoryExpression>
                                       <valueExpression><![CDATA[$F{QACount4}]]></valueExpression>
                        <itemHyperlink >
                        </itemHyperlink>
                                  </categorySeries>
                             </categoryDataset>
                             <linePlot >
                                  <plot backcolor="#FFFFFF" />
                                  <categoryAxisFormat>
                                       <axisFormat >
                                       </axisFormat>
                                  </categoryAxisFormat>
                             <valueAxisLabelExpression><![CDATA["No. of Evaluations"]]></valueAxisLabelExpression>
                                  <valueAxisFormat>
                                       <axisFormat >
                                            <labelFont>
                             <font fontName="Serif" pdfFontName="Helvetica" size="14" isBold="false" isItalic="true" isUnderline="false" isStrikeThrough="false" isPdfEmbedded="false" pdfEncoding="Cp1252"/>
                                            </labelFont>
                                            <tickLabelFont>
                                            </tickLabelFont>
                                       </axisFormat>
                                  </valueAxisFormat>
                             </linePlot>
                        </lineChart>
                   </band>
              </summary>
    </jasperReport>can anybody pls help me in this regard......

  • Getting Dump error while changeing ODS.

    Hi BW Experts,
    I am using Custom ODs.And i am trying to change. It throws me a DUMP.When i am trying to delete the ODS, it is not deleting. I have already deleted the data from Active data and Change log table.
    Can you pls help on this issue.
    Thanks,
    Ram.

    Hi
    Attached the short dump :
    An SQL error occurred when accessing a table "/BIC/B0000908000 "
    Database error text........: "ORA-01502: index 'SAPGTA./BIC/B0000908000~0' or
      partition of such index is in unusable state"
    Internal call code.........: "[RSQL/COUN//BIC/B0000908000 ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "SAPLRSDU_UTIL" or "LRSDU_UTILU09"
    "RSDU_DATA_EXISTS_TABLE"
    Regards
    RaM

  • Getting Runtiime error while exporting to Excel 97-2000 format (URGENT)

    Post Author: net_us2001
    CA Forum: Exporting
    Hello Everyone,
    This is my first time in this forum.
    I am getting runtime error while exporting the report in EXCEL 97-2000, but exporting perfactly in MS-EXCEL (Data only) format.
    I found the reason is, using expression (formula) for formatting phone number as shown below.
    On table field "abPhone",
       used  "formula = PhoneFormat() " expression on format field -> common tab -> display string .
    Intead that i have used fumula e.g. test1 and used same expression, then it was exporting perfactly..
    Having above problem if i use expression to supress group header and report header. 
    So let me know if anyone can help, why it was giving error in first case.
    Thanks in advance
    Thanks,
    Nitin

    Hi,
    This is the Technical limitation of ABAP list export to local file.
    ALV grid greater than 1023 characters per line will be split into 2 lines.
    To prevent a line break occuring when you download the list as a local spreadsheet file, you must reduce the width of the list in ALV. You can do this either by hiding columns or by changing the column widths in the ALV. Take care that the column heading characters also dont exceed 1023 characters. This will work.
    Thanks
    LG

  • HT4009 Hi, Getting an error while trying to download updates. Err Msg "Account Not in this store' Your account is not valis for use in the US store. You must switch store before purchasing' Have tried to change the store bu not successful. kindly advice

    Hi, Getting an error while trying to download updates. Err Msg "Account Not in this store' Your account is not valis for use in the US store. You must switch store before purchasing' Have tried to change the store bu not successful. kindly advice

    http://support.apple.com/kb/HT1311

  • TS3694 I get an error while restoring, error unknown (1015) someone can help me with this problem?

    I get an error while restoring, error unknown (1015) someone can help me with this problem?

    is there a way to restore to the original? it is a fiends I phone and it was jailbroken, and it is giving her many problems, I look over the apple information but there is no steps to follow to fix this. do you have any idea

  • Skipped or bad frames causes "Unknown error" while trying to fuse or export as...

    Hi. So, I'm trying to fuse footage from my Canon xf305 -to- an H.264 Youtube HD 29.97. I've successfully done this many times before, but this, one, particular clip has some problems. WithIn the roughly 10 minutes of this clip there are 4 small sections that the footage (video portion) seems to stall onto a still frame. This lasts literally for mabe 5 frames or so, and then the video continues. other than that the clip plays fine on the timeline, It's almost undetectable, but when I try and export out to any other format, Premiere gives me an "Unknown Error" about halfway through the export/fuse.  What's Up With That?
    I's there a way to "Force" Primiere to ignore those bad frames and export as best as possible?
    Thanks in Advance for any answeres.   Rich

    First thing I'd recommend is deleting the Cache files.  Go to Edit>Preferences>Media... and take note of their location on the hard drive.  Then close down PP and use Windows Explorer or Finder to delete those files.  When you reopen your project, PP will rebuild those files.
    Second thing I recommend is adding your voice to the following feature request to make this process easier.
    http://forums.adobe.com/thread/1369263?tstart=60

  • Recent Rendering Issues? Getting "Unknown Error" on Multiple Computers and OSs

    Premiere CS3 3.2.0 (374)
    Windows XP 32 bit
    2 Xeon 3.0 Ghz Dualcore processors
    4 GB RAM (3.5 Usuable)
    So last week at work I started getting an "unknown error" while exporting a video, which is something I've never gotten before. It was a video with multiple formats of clips (probably more than I use on a normal week), and though they weren't really anything out of the ordinary, I figured it was one of them causing the error.
    After a TON of troubleshooting on the project (deleteing this clip and that, removing effects), I was somewhat randomly able to export it. With only a slight tweak to the length of one clip (and without shutting down the program), I tried to export it again, and it failed once again. I undid the change, it still failed.
    So I open up a project I had finished from the week before and exported fine. It fails with an unknown error.
    Each time exporting a simple DV clip in widescreen format from a 1080i HDV project, which I've done hundreds of times.
    So, I'm thinking this is a weird error, but it gets weirder when a week later I'm working at home on a completely unrelated project. I open up a finished project that I had had no problems exporting 5 weeks ago to export again (as I had since deleted the final export and a client was asking for another copy as they had apparently lost it too.) and what do you know, it failed with the exact same "unknown error". Completely different system, completely different project. A project I had exported the exact same as it was and had worked 5 weeks ago. (This time as a 1440x1080 1.33 AR Quicktime H.264 Clip). Every time, part way through (and at different times from one export to the next) this 15 minute video, it stops with an unknown error.
    This system is a:
    Premiere CS3
    Windows XP Home edition.
    P42.8 Ghz HT
    2GB RAM
    My Final Cut buddies are just laughing at me and my rendering struggles, then I talk to one of my friends who also uses Premiere. But he uses Premiere CS3 on the Mac, and who would have thunk it, he's been having these "unknown errors" pop up on innocent videos in the past two weeks as well, and has never seen them before.
    Now I know it's not a coincidence, and I know it's not something with Windows Updates like I thought after my work and home computer had the errors.
    Sometimes videos will export correctly, but they usually fail. I can open up projects that were long ago completed and working and they will sometimes fail, sometimes not. So, there again, I know it's not a problem with clips or Projects, because two successive exports will yield different results.
    Who else is getting this error recently. I know it can't be just me. Anyone know what is going on?

    Perhaps this will help:
    Error:Unknown error
    Cheers
    Eddie
    PremiereProPedia   
    RSS feed)
    - Over 350 frequently answered questions
    - Over 300 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Error VLD-0917 (unknown error)  while deploying FACT table

    Hi,
    I keep getting this error while trying to deploy a FACT table:
    VLD-0917: An unknown error occured while generating <fact table name>.
    An unknown error occurred while generating <fact table name>. Error details: java.lang.NullPointerException.
    Do yo know what can it be? This fact table was linked to a Dimension that I modified (added one more level to its hierarchy). Since I did this change, the fact table cannot be validated.
    This happens to all fact tables that use this dimension. I created a new cube with the new definition of the dimension and had no trouble at all. I disassociate the dimension from existing cubes and they validate OK. What could be happening?
    I would appreciate any help you could provide.
    Regards,
    --oswaldo.
    [osantos]

    Hi,
    I realized that I'm getting this error for all fact tables. I cannot deploy any of them. What could be happening? I have a dimension that is linked to all facts which I changed recently: had to redefine its default hierarchy as a value-based one. I don't know if this affected my cubes.
    Any idea what might be happening here?
    Best Regards,
    --oswaldo.
    [osantos]

  • I keep getting an error while trying to reinstall itunes?

    I am trying to reinstall itunes and i am having an issue. I keep getting an error while trying to install and I keep getting very far but I always seem to end up with this.
    "Could not open key
    UNKNOWN\Components\DA42BC89BF25F5BD0AF…
    \b25099274a207264182f8181add555d0.
    Verify that you have sufficient access to that key, or contact your support personnel"
    I was attempting to reinstall due to an error message appearing when I opened itunes
    "Itunes requires a newer version of Apple Mobile Device Support Please uninstall
    both Apple Mobile Device Support and iTunes, then install iTunes again."
    I have tried a few solutions and for the first error when installing one was an attempt at editing a registry file which I do not think succeeded because I am running windows 8 and was being directed for windows 7.

    "Could not open key
    UNKNOWN\Components\DA42BC89BF25F5BD0AF…
    \b25099274a207264182f8181add555d0.
    Doublechecking. Have you tried the following user tip?
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\[LongStringOfLettersAndNumbe rs]" error messages when installing iTunes for Windows

  • Windows App developer account and .aetx file, Unknown error while generating AET

    Hi Everyone,
    firstly, sorry for my not perfect english, but I hope that somehow understand what i  want to say.
    So, I am a student (I do not know if it makes a difference but inform you), and I wanted to write a universal windows app for company (This would be the first application WP and Windows this company, previously did app on Android and IOS, and websites).
    I wrote a little bit and I wanted to throw the first version on hockeyapp.net to the head of the company and the customers can test it and i have problem. I upload .appx file bu i have problem with generate .aetx file. When I run this command AETGenerator.exe
    PFXFilepath PFXFilePassword it gives me an error in command prompt
    Unknown error while generating AET
    startIndex cannot be larger than length of string.
    Parameter name: startIndex
    I've read about these certificates but did not find a specific answer (a very specific answer). So what I need to do, What do I need,  what to buy and etc.
    What are my solutions?
    What should I do?
    Is it enough that I register and I buy individual developer account?
    I hope someone answer me, 
    thank you :)

    Try sending it to store anyway… I have the similar issue, the kit hangs when saving result and never complete it.
    Another member has same question.
    https://social.technet.microsoft.com/Forums/en-US/11910167-75e1-47d8-a0fb-fb8046c57f89/windows-app-certification-kit-31-reports-failure-due-to-crash-or-hang?forum=projectsiena.
    If you want to test your app, you can also send to beta store and you can get response from the testers.

  • I am getting an error while doing Remove From Client action in inactive dc'

    Hi,
    I am getting an error while i am unlocking the DC from my system.
    i selected option remove from client from context menu of DC in inactive dc's
    then a popup came asking delete contents or donot delete contents.
    i select donot delete contents.....
    now i ts throwing an error ...as shown below
    Some files have been edited/changed.
    Look over your open activities.
    com.sap.tc.devconf.SyncException: Cannot unsync component. There are files checked out.
         at com.sap.tc.devconf.impl.DCProxy.doUnsyncSources(DCProxy.java:4187)
         at com.sap.tc.devconf.impl.DCProxy.unsync(DCProxy.java:1322)
         at com.sap.tc.devconf.impl.DevelopmentConfiguration.unsync(DevelopmentConfiguration.java:4897)
         at com.sap.tc.devconf.impl.DevelopmentConfiguration.unsync(DevelopmentConfiguration.java:5045)
         at com.sap.ide.eclipse.component.provider.actions.dc.DCUnsyncAction$1.execute(DCUnsyncAction.java:127)
         at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:71)
         at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
         at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:85)
         at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:302)
         at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252)
         at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:357)
         at com.sap.ide.eclipse.component.provider.actions.dc.DCUnsyncAction.run(DCUnsyncAction.java:212)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:229)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1391)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Regards,
    Rajesh

    Hi Rajesh,
    er, what kind of answer do you expect here?
    "Some files have been edited/changed.
    Look over your open activities.
    com.sap.tc.devconf.SyncException: Cannot unsync component. There are files checked out."
    Do you have file checked out? If yes, you should probably check in your changes or revert them and remove the configuration afterwards.
    If you don't have files checked out maybe there are some files that were made writable without DTRs knowledge.
    Regards,
    Marc

  • Getting an error while retrieving ASO through Excel-Addin

    I am getting an error while retrieving ASO cube via Excel-Addin. when i try to expand dimension, i am getting the following msg box,
    "No message for message #1270041 in message database"
    Can somebody help me out, your help will be greatly appreciated.
    I am also making sure that the members does not exceed the 65XXXX limit even than i m getting this error.
    Secondly, how can i increas the cache value and on what parameters i should be looking for changing the cache value.
    Thanks in advance

    From the message.txt for 9.3.1:
    ##1270041 For better performance, increase the size of aggregate storage cache
    Tim Tow
    Oracle ACE
    Applied OLAP, Inc.

Maybe you are looking for

  • Mail Quits Immedately when trying to open

    Whe I try to open Mail I immeiately get a dialogue box with "The application mail quit unexpectedly" Any suggestions will be appreciated. OS 10.4.1 Machine Name: Power Mac G4 Machine Model: PowerMac3,6 CPU Type: PowerPC G4 (3.3) Number Of CPUs: 1 CPU

  • This Connection is Untrusted and few websites layout is broken

    I have tried almost all the solution to get rid of the issues but could not find a solution. My Chrome and IE is working fine as its expected in same machine but not firefox. Issues - 1 Website layout is disorted eg. https://support.mozilla.org/en-US

  • HT1369 i bought a new computer & my ipod device is not being recognized

    I bought a new computer & need to set up my i-pod & iphone since they are not being recognized

  • Built-in camera inoperative

    Is there a way to troubleshoot/repair/bring back online the built-in camera on my intel Mac? In Photobooth and other applications, the left light next to the camera does not come on, and there is no camera activity.

  • Adobe Form Logo Edit(Modify) Problem

    Dear Experts We have the ESS working in which travel Request form has got the logo of IDES (Adobe Form). My query is to remove that logo and print our company's logo on the same. After doing many effort to change that logo, I am not able to make chan