VB Runtime error timeouts. Could not fetch terms from table: TPW6

VB Runtime error timeouts are occurring repeatedly for multiple users on the terminal server.
Event Type:         Warning
Event Source:     VBRuntime
Event Category:  None
Event ID:              1
Description: The VB Application identified by the event source logged this Application XL Reporter: Thread ID: 13508 ,Logged: Could not fetch terms from table: TPW6
It looks like bad table reference in XL reports? This is causing significant lag as they wait to time-out. Is there a way to identify source(s) and correct  it/them? Unfortunately the error does not say what report. Is there any way of identifying exactly what the SAP equivalent is to the tables it is having issues finding?
thanks

This error may not cause big problems.  We have to live with it for a long time.  It only show XLR with highlight icon on the task bar.  It shouldn't have much bigger impacts.
Thanks,
Gordon

Similar Messages

  • 2G Shuffle error "disk could not be read from or written to"

    Just recieved a 2G as a gift. First sync went fine. Songs transferred without issue. Wanted to change some settings and re-sync with new songs and got the error message "disk could not be read from or written to".
    Have tried on an XP64 and a Windows 2000 machine with same error. I can sync from an XP Pro Laptop fine. All three are using the same driver (USBSTOR.sys).
    Need some help trouble shooting this issue. The XP64 is my main computer and is the one I would like to solve this issue on. I also have a 30GB iPod that syncs on the XP64 machine with no problems.

    I don't think the Apple store folks will be able to do anything because the issue is not with every computer.
    The fact that I have a computer that can sync with the Shuffle without errors tells me there is an issue with the other 2 machines. As I cannot use the Laptop as my primary library I would like to solve the issue.
    I still suspect either iTunes itself or the driver. If anyone else has any suggestions please share them.

  • Receiving error "disk could not be read from or written to" during synch.

    When I try to synchronize my iPod to iTunes, I get the following error:
    "Attempting to copy to the disk [ipod name] failed. That disk could not be read from or written to."
    This error occurs only when I have put about 0.5 GB onto my 4.0 GB model, so there's plenty of disk space. I have completely reloaded/reformated the iPod & iTunes software on both my computer and iPod on numerous occassions, but I have had no additional luck.
    I fear that this might be an issue with the actual hard drive on the iPod.
    Can someone help?

    http://docs.info.apple.com/article.html?artnum=301267
    Same answer as in your other post. : )

  • IPod Error - Disk could not be read from/to

    I just got an iPod 20G, but when I try to update it with iTunes, I get an error message "Attempting to copy to the disk "(name)" failed. The disk could not be read from or written to". Some songs, however, do get copied before I get the error. I am using Windows XP, iTunes 5, and iPod 20G color display. I have updated the software on both the iPod and iTunes. Any ideas on what I'm doing wrong?

    Sounds like an iTunes issue.
    Uninstall iTunes.
    Reboot the computer.
    Just to be safe, run the newest "Updater" (download if you have to), wait for it to say to connect your iPod, connect your iPod, then select "Restore" (WARNING: this will erase the contents of your IPOD). But since you haven't been able to use iTunes, there shouldn't be anything on it. Follow the instructions (it might say to plug it into the wall charger when it's done restoring).
    NOW reinstall iTunes (again download the newest one)
    Reboot your computer, again.
    Start iTunes
    Connect your iPod
    Follow the screen messages (you should register, just incase you have warrenty issues).
    Hopefully it will work. If not, come back and give an update.

  • Disk could not be read from or written to? Why won't my show download?

    Everytime I try to download the latest episode of Grey's Anatomy, the show starts to download and gets toward the end, but then says Error: Disk could not be read from or written to. Other short movies and music have downloaded fine; it's just this one episode. Am I doing something wrong or is it the store?
    Thanks for you help!
    Anna

    also worth noting I deleted a load of stuff on my mac to make space but no luck

  • Could not execute 'IMPORT FROM '/dropbox/S0008356087/NASDAQ.ctl''

    Hi All,
    when i am trying to execute the following SQL command in Hana 7 server i am getting the following error message.
    Error message:
    Could not execute 'IMPORT FROM '/dropbox/S0008356087/NASDAQ.ctl''
    SAP DBTech JDBC: [2]: general error: Cannot open Control file, /dropbox/S0008356087/NASDAQ.ctl
    I have checked all the syntax and all are fine.
    my doubt is first i have assigned to hana 5 server.after that due to some outage they have migrated me to hana 7 server.
    due to this do am i getting or i don't have access to that directory.
    Here is folder that i have created the hana dev center.
    Folder name : S0008356087
    and last is for all the hana servers is  FTP folder is same or it will change from server to server

    Hi Jagan,
    Please try again now - your suspicion was absolutely right: you didn't have access to the folder from the new server. Should be fixed now...
    --Juergen

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • Error: Page Metadata could not be obtained from the Portal database.

    Hi,
    Maybe some one can help me with this.
    After my installation (oas portal 10.1.4) I changed my URL in portal and sso.
    modplsql : http://<webserver>:<port>/pls/portal/htp.p?cbuf=test --> its working fine. I got test
    Parallel Page Engine (PPE) : http://<webserver>:<port>/portal/page --> its working fine. I got PPE is working.
    http://login.hostname:port/oiddas --> It`s working fine
    http://login.hostname:port/sso --> It`s working fine
    http://hostname:port/portal/page/portal/TOPLEVELSITE --> It's not working I got in firefox Error: Page Metadata could not be obtained from the Portal database. In explorer i got HTTP 500 error.
    I checked my application.log and I got this:
    **portal: id=45342345678,1 ContentFetcher Unexpected Exception Request Failed:oracle.webdb.dispatcher.DispatcherException: I/O Error dispatching request name=content-fetcher19 label=pageMeta url=http://<webserver>:port/portal/pls/portal/!PORTAL.wwpob_page.show/TOPLEVELSITE time=1ms timeout=60000ms process=Dispatching**
    Maybe some one can help me to solve this threat.
    Thank you.

    C@rlitos wrote:Edited by: C@rlitos on Sep 30, 2009 6:14 PM
    Hi!!
    To register the url in portal I used this doc 434795.1 - 558634.1 from metalink.
    http://download-west.oracle.com/docs/cd/B14099_17/core.1012/b13998/variants.htm#CBDBDJHD
    I verified and i got this:
    LSNR_TOKEN
    SITE_TOKEN
    SITE_ID
    LS_LOGIN_URL
    URLCOOKIE_VERSION
    ENCRYPTION_KEY
    ENCRYPTION_MASK_PRE
    ENCRYPTION_MASK_POST
    U
    oldurl.com:7781
    XY776FQWDCY4EFF
    8AC54EFF
    http://oldurl.com:7780/pls/orasso/orasso.wwsso_app_admin.ls_login
    v1.2
    2FWERFW768767866
    6B4DEERWF87W87897E89WRF897W3FC9
    F0FEC6AREW76786WEFWER76F8968695
    N
    newurl.com
    1RG8IYA4F9D2E30A
    F9D2E233A
    http://newurl.com/pls/orasso/orasso.wwsso_app_admin.ls_login
    v1.2
    B32852345661513F0
    1A5DTR546EYEYEHEHSVSGFB44C
    A33RTWERGERGERGREFWERF8
    N
    I havent create new token values.
    Edited by: C@rlitos on Sep 30, 2009 6:14 PMHave you configured your Infra with a new hostname on a different port ?
    Unless, you had installed your OAS with custom ports, and have not used the default ports for the components, your lsnr_token for the newurl has a problem. orasso and sso should be configured at 7777, and by default they configure at that port. That means that your newURL should be pointing to http://newurl.com:7777/pls/orasso/orasso.wwsso_app_admin.ls_login for the ls_login_url.
    This might have happened due to some error in registering your portal with the SSO. Have you used custom ports for your installations?
    Additionally, did you configure your newurl on port 80?

  • Intermittent errors - Invoke() could not find the Service name

    Users are getting intermittent error : Invoke() could not find the Service name, when opening the Xcelsius dashboards in PRODUCTION. The dashboard has several QAAW queries .These errors are poping up intermittently.
    The dashboards are hosted utside the BO environment.
    BOXIR3.1
    Crystal Xcelsius 2008 Enterprise

    As I continue to look into it, the only thing that I see differently when I am prompted for login is that I can specify the system to log into. I am now wondering if somehow this information is being lost and that is what is causing these issues. Given that the specified name cannot be found and that it does in fact recognize the correct name, I'm not entirely sure what the problem is.
    Further information:
    If I disable the use of hard-coded logins and I am prompted, I can display results for the onLoad run. Yet the query is also set to refresh on 30 second intervals. On every subsequent interval I am getting this error.
    I think this has something to do with sessions. How do I check which sessions exist on my box? CmcApp somewhere?
    Edited by: Brian Comeau on Jun 4, 2009 12:24 AM
    Checking in CmcApp I found some sessions. Here is what happens:
    Login to CmcApp Sessions tab
    -Administrator: 1 session at 5:45pm
    Launch browser to Xcelsius .swf
    Prompted for login information: Administrator/password
    -Administrator: 2 sessions at 6:30pm
    I had previously set the timeout for sessions in QaaWS to 120 seconds
    After 2 minutes
    -Administrator: 1 session at 5:45pm
    Yet throughout this time, I am still given this "invoke() could not find the service name" error. The name provided "qaawsIncidents" is the same name that I can see if I launch QaaWS.
    Ideas?
    Edited by: Brian Comeau on Jun 4, 2009 12:30 AM

  • ERROR [MainDeployer] Could not create deployment: file:/root/jboss-4.2.0.GA

    15:50:52,307 ERROR [MainDeployer] Could not create deployment: file:/root/jboss-4.2.0.GA/server/default/conf/jboss-service.xml
    org.jboss.deployment.DeploymentException: - nested throwable: (java.lang.reflect.InvocationTargetException)
    at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:196)
    at org.jboss.system.ServiceController.install(ServiceController.java:226)
    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:585)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    at $Proxy4.install(Unknown Source)
    at org.jboss.deployment.SARDeployer.create(SARDeployer.java:249)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
    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:585)
    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    at $Proxy5.deploy(Unknown Source)
    at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
    at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
    at org.jboss.Main.boot(Main.java:200)
    at org.jboss.Main$1.run(Main.java:508)
    at java.lang.Thread.run(Thread.java:595)
    15:50:52,326 INFO [Server] Runtime shutdown hook called, forceHalt: true
    15:50:52,326 INFO [Server] JBoss SHUTDOWN: Undeploying all packages
    15:50:52,335 INFO [Server] Shutdown complete
    Shutdown complete
    Halting VM
    Please help me with this issue.
    Thanks in advance

    There's a bug or a configuration fault in your JBoss AS. That's all what I can tell based on the given information. Try posting it at their own website/forum. This isn't the JBoss support forum or so.

  • Error: File could not be opened.

    When managing the following and clicking on "Export To Excel", the following error occurs:
    "Error: File could not be opened."
    The same error occurs when doing the following:
    - Trying to export Control Tables
    - Trying to export Import Formats
    - Trying to export Import Groups
    - Trying to export Logic Accounts
    - Trying to export Logic Groups
    Does anyone please have any suggestions on how to fix this? The odd thing is that these files are actually created and can be opened fine!
    The error log is as follows:
    ** Begin FDM Runtime Error Log Entry [2012-03-27 14:14:25] **
    ERROR:
    Code............................................. 3002
    Description...................................... File could not be opened.
    \\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\Periods99008.xlsx
    Procedure........................................ clsAppServer.fFileGetStream
    Component........................................ upsAppSv
    Version.......................................... 1112
    Thread........................................... 14368
    IDENTIFICATION:
    User............................................. xxxxxxx
    Computer Name.................................... xxxxxxx
    App Name......................................... xxxxxxx
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... xxxxxxx
    Database Name.................................... xxxxxxx
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... Sample
    Location ID...................................... 748
    Location Seg..................................... 2
    Category......................................... WLCat
    Category ID...................................... 12
    Period........................................... Jan - 2012
    Period ID........................................ 31/01/2012
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2012-03-27 14:19:30] **
    ERROR:
    Code............................................. 3002
    Description...................................... File could not be opened.
    \\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\ImportGroups43950.xlsx
    Procedure........................................ clsAppServer.fFileGetStream
    Component........................................ upsAppSv
    Version.......................................... 1112
    Thread........................................... 11884
    IDENTIFICATION:
    User............................................. xxxxxxx
    Computer Name.................................... xxxxxxx
    App Name......................................... xxxxxxx
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... xxxxxxx
    Database Name.................................... xxxxxxx
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... Sample
    Location ID...................................... 748
    Location Seg..................................... 2
    Category......................................... WLCat
    Category ID...................................... 12
    Period........................................... Jan - 2012
    Period ID........................................ 31/01/2012
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2012-03-27 14:30:20] **
    ERROR:
    Code............................................. 3002
    Description...................................... File could not be opened.
    \\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\ImportFields79048.xlsx
    Procedure........................................ clsAppServer.fFileGetStream
    Component........................................ upsAppSv
    Version.......................................... 1112
    Thread........................................... 15604
    IDENTIFICATION:
    User............................................. xxxxxxx
    Computer Name.................................... xxxxxxx
    App Name......................................... xxxxxxx
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... xxxxxxx
    Database Name.................................... xxxxxxx
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... Sample
    Location ID...................................... 748
    Location Seg..................................... 2
    Category......................................... WLCat
    Category ID...................................... 12
    Period........................................... Jan - 2012
    Period ID........................................ 31/01/2012
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2012-03-27 14:32:51] **
    ERROR:
    Code............................................. 3002
    Description...................................... File could not be opened.
    \\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\LogicGroups92995.xlsx
    Procedure........................................ clsAppServer.fFileGetStream
    Component........................................ upsAppSv
    Version.......................................... 1112
    Thread........................................... 13052
    IDENTIFICATION:
    User............................................. xxxxxxx
    Computer Name.................................... xxxxxxx
    App Name......................................... xxxxxxx
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... xxxxxxx
    Database Name.................................... xxxxxxx
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... Sample
    Location ID...................................... 748
    Location Seg..................................... 2
    Category......................................... WLCat
    Category ID...................................... 12
    Period........................................... Jan - 2012
    Period ID........................................ 31/01/2012
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    ** Begin FDM Runtime Error Log Entry [2012-03-27 14:33:05] **
    ERROR:
    Code............................................. 3002
    Description...................................... File could not be opened.
    \\xxxxxxx\c$\fdmdata\xxxxxxx\Outbox\ExcelFiles\LogicAccounts70086.xlsx
    Procedure........................................ clsAppServer.fFileGetStream
    Component........................................ upsAppSv
    Version.......................................... 1112
    Thread........................................... 15980
    IDENTIFICATION:
    User............................................. xxxxxxx
    Computer Name.................................... xxxxxxx
    App Name......................................... xxxxxxx
    Client App....................................... WebClient
    CONNECTION:
    Provider......................................... SQLOLEDB
    Data Server...................................... xxxxxxx
    Database Name.................................... xxxxxxx
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... Sample
    Location ID...................................... 748
    Location Seg..................................... 2
    Category......................................... WLCat
    Category ID...................................... 12
    Period........................................... Jan - 2012
    Period ID........................................ 31/01/2012
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False

    Many thanks for your suggestions.
    - MS Office Excel 2007 SP3 is installed on the server. The Excel files are created and can be opened manually fine on the server (by going to C:\FDMData\Outbox\ExcelFiles). But FDM raises the above error whenever one clicks on the "Export To Excel" button and does nothing more.
    - The admins here have apparently now added the C:\Windows\SysWOW64\config\systemprofile\Desktop folder (the FDM app server is 64-bit) but it does not appear to have made a difference. Will the FDM service account need privileges to this location?
    - Apparently the FDM service account has privileges to the FDMData\Outbox\ExcelFiles location, but I will double check this...

  • IPod Error Message: "The disk could not be read from or written to."

    Hello!
    I was syncing my sister's video iPod (30GB) and this error message pops up "Attempting to copy to the disk. "SARAH'S IPO" failed. The disk could not be read from or written to."
    I have restored it three times already, but once it starts putting the music and files back onto the iPod it pops up with that error message. I have updated to the latest version of iTunes and iPod software available. My OS is Windows XP.
    Is this something serious? Will I be able to fix it myself or will I need to send it in to be fixed by Apple? Will that be expensive? We didn’t get the Apple replacement plan. D=
    Any help would be greatly appreciated. Thank you in advance. ^_^
    PowerBook G4   Mac OS X (10.4.3)   15" PowerBook 1.5 GHz PowerPC G4, 1.5GB RAM - Windows XP with iPod 5 Generation

    Okay I went thru that entire list and here's what I got...
    (1) My OS is XP and is running fine.
    (2) I've updated my windows
    (3) I don't know of any software that might be interfering.
    (4) There are no damaged files.
    (5) My Windows hard-drive is not damaged and I've tried restoring my iPod's disk thru iTunes but it still doesn't work.
    (6) I don't have an iPod photo and I can't find the folder to delete the cache if if I did.
    (7) The USB cord is firmly connected into my USB port and my iPod
    (8) My music is on my external hard-drive so I need to keep 3rd-party hardware connected
    (9) I will try another USB cord to see if that works.
    Is there anything else that I can do? Can Apple fix this?
    Please let me know.

  • Error Message: "Disk could not be read from or written to".

    New 5th Gen. was downloading CD's I loaded into iTunes just fine; when uploading tunes into iPod yesterday this error message appeared: "Attempting to copy to the disk (iPod name) failed. Disk could not be read from or written to". Restored iPod with 1/10/06 update of iPod Install; using iTunes 6.0.2; operating system 10.3.9. Frustrated. iPod useless at this point. Anyone found a fix to this vexing problem?
    Thanks,
    John

    Thanks Jeff. Only thing that rings true is updating OS; when I tried to downoad 10.4 message said I 'could not on this computer'. Since I purchased and installed 10.3 a year ago I don't understand. Also, iPod was downloading perfectly until two days ago when -36 appeared. Bummer. I am not a techie, Apple tech support does not have a clue, and iPod is useless. Ideas?

  • Error:the ipod cannot be updated. the disc could not be read from or writte

    May sound silly I am sorry, new to this. Just got an ipod shuffle and have gone through all troubleshooting suggestions ie: restore ipod, reinstall software etc. Am getting an error: "The ipod "administrator's ipod" cannot be updated. The disc could not be read from or written to". This occurs when I click and drag a playlist from the source section to my ipod in the source section. Getting a wee bit discouraged by reading all the problems associated with this ipod and am hoping for an easy fix to slide past further frustration. Please help. Thank you muchly.
      Windows XP  

    Go to the iPod Shuffle Support Page, look around in there, and follow the troubleshooting steps in the article entitled "Can't be written to" or words to that effect.

  • Error "codepage could not be determined for the receiver-system"

    Hi,
    we use the idoc-adapter to send message from mySAP ERP to PI.
    All worked fine.
    So, this morning I have changed the datatype of the messageId from "char" to "int" in mySAP ERP in the customizing menue (install param). So, no message received in SAP PI.
    When I start transction "we05" in mySAPERP" I get the following error:
    "codepage could not be determined for the receiver-system" status 02.
    I have changed the datatyp to "char" but the same probleme
    Can anybody help me please?
    Regards
    Stefan

    This error shouldn't occur unless there is some modification at the OS level codepages.
    Please check the entried in the RFC destination for connecting to the XI system. Unicode settings.
    Regards,
    Prateek

Maybe you are looking for

  • How do I hide time stamp in iCAL month view for Mavericks 10.9?

    I want to hide the time in Month View like I could before in 10.8.  Please help!  Calendar is too cluttered in month view for me to read.  In 10.8 you could select or deselect "Show time in month view".  Is there a way to do this in Maveriks 10.9?

  • Email attachments not exporting from outlook 2013 with Acrobat XI standard

    I can't get my email attachments in Outlook 2013 to export along with the message.   I've got the option checked in the settings to include attachments, and I don't get an error message when the PDF is created.  But it includes the message only, rega

  • Function in myfuncs.as not firing

    Hello Forum members, I am suffering thinking - broken, etc. I have an include file, "myfuncs.as" where I have written some functions. some run, some do not(?). I have a function like this in the include file: function ShowObjects(show:Boolean) { //th

  • ANN: Setting up PHP in Mac OS X Leopard - tutorial

    The Mac PHP package created by Marc Liyanage that I recommend in my books is not yet compatible with Mac OS X 10.5 (Leopard). The new version of Mac OS X comes with Apache 2.2.6 and PHP 5.2.4 preinstalled, but not enabled. Getting them up and running

  • Tab A10-70 A7600-F firmware

    Ok, so here's my story; after two weeks using the tablet went up and got bricked. I tried literally everything, but factory resetting and clearing the chache doesn't work, it just stays stuck on the Lenovo logo in somekind of boot freeze or boot loop