Can't snyc, can't find file error

I keep geting this error msg when syncing. Doesn't tell me what file is missing or it can't find.
I reset and restored OS on ipad, syncing with other ipods not a problem.
any ideas?

If you have tried both 1 & 2 below, next thing I'd try is call Apple support at this link: http://www.apple.com/support/expert/
Or you can take it to an Apple store to see an expert.
1) Hold sleep and home buttons until the shutdown screen appears. Slide to power off. Then press the sleep button to restart the ipad.
2) If that doesn't work, try a reset, but make sure you have sync'ed just prior to the reset. To reset go to Settings, General, Reset, Erase All Content and Settings. Warning: This will delete all data on the ipad.

Similar Messages

  • " Can not interpret the data in file " error while uploading the data in DB

    Dear All ,
    After running the below report I am getting the " Can not interpret the data in file " error.
    Need to upload the data in DB through excel or .txt file.
    Kindly advise to resolve the issue.
    REPORT  ZTEST_4.
    data : it like ZPRINT_LOC occurs 0 with header line,
    FILETABLE type table of FILE_TABLE,
    wa_filetable like line of filetable,
    wa_filename type string,
    rc type i.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
    CHANGING
    FILE_TABLE = filetable
    RC = rc.
    IF SY-SUBRC = 0.
    read table filetable into wa_filetable index 1.
    move wa_filetable-FILENAME to wa_filename.
    Else.
    Write: / 'HI'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    start-of-selection.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    FILENAME = wa_filename
    FILETYPE = 'ASC'
    HAS_FIELD_SEPARATOR = 'X'
    TABLES
    DATA_TAB = it.
    IF SY-SUBRC = 0.
    Write: / 'HI'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    insert ZPRINT_LOC from table it.
    if sy-subrc = 0.
    commit work.
    else.
    rollback work.
    endif.
    Regards
    Machindra Patade
    Edited by: Machindra Patade on Apr 9, 2010 1:34 PM

    Dear dedeepya reddy,
    Not able to upload the excel but have sucess to upload the .csv file to db through the below code. Thanks for your advise.
    REPORT  ZTEST_3.
             internal table declaration
    DATA: itab TYPE STANDARD TABLE OF ZPRINT_LOC,
          wa LIKE LINE OF itab,
          wa1 like line of itab.
                       variable  declaration
    DATA: v_excel_string(2000) TYPE c,
           v_file LIKE v_excel_string VALUE    'C:\Documents and Settings\devadm\Desktop\test.csv',  " name of the file
            delimiter TYPE c VALUE ' '.         " delimiter with default value space
         read the file from the application server
      OPEN DATASET v_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    write:/ 'error opening file'.
      ELSE.
        WHILE ( sy-subrc EQ 0 ).
          READ DATASET v_file INTO wa.
          IF NOT wa IS INITIAL.
            append wa TO itab.
          ENDIF.
          CLEAR wa.
        ENDWHILE.
      ENDIF.
    CLOSE DATASET v_file.
    EXEC SQL.
         TRUNCATE TABLE "ZPRINT_LOC"
    ENDEXEC.
    *------display the data from the internal table
    LOOP AT itab into wa1.
    WRITE:/ wa1-mandt,wa1-zloc_code,wa1-zloc_desc,wa1-zloc,wa1-zstate.
    ENDLOOP.
    insert ZPRINT_LOC from table itab.

  • CS2 Unable to find file errors

    Hi
    We are having trouble with photoshop cs2.  We can not open most files.  Tiff, PSD, some PDF files will give an "unable to find file error".  Jpg files, and certain PDF files and TIFF files that use jpg compression work.  I have tried resetting all the settings, changing scratch disks / memory usage, uninstalling all fonts, and reinstalling the application and the problem persists.
    Also i do not know if this is related but the same time we started having errors in photoshop we also have problems in Microsoft Word.  The font list shows a lot of fonts as just a white box.  Other apps can use the fonts fine.  Just not in word.
    I have attatched a JPG file with screen caps of the errors.

    I reset the options by doing the hold shift alt ctrl while starting up photoshop.  Also i deleted all the preference files out of the application data\adobe\photoshop folder.  Same problem persists.
    Also another issue i have noticed.  Say you perform an action like erasing somthing, or changing the brightness/contrast.  You can not see the changes until you click on a different tool.  Then it updates the display.
    I will try and locate the faq and see what it says.

  • Windows can not find ' FILE ': error.

    I have downloaded and installed the production version of SQL Developer. (1.0.0.14.67)
    Windows XP SP 2.
    When I started it for the first time I checked all the file association check boxes.
    If I double click on a .sql file the following windows error occurs:
    Windows can not find '<file>'. Make sure you typed the name correctly, and then try again. To Search for a file, click the Start button, and then click search.
    SQL Developer does startup. The error message is closed when the OK button is selected.
    Any Ideas?
    Regards;
    Robert

    Hi Robert,
    Just to confirm, SQL Developer does actually open the file. The only issue is the error message displayed. I have logged a bug for that.
    There is a work around until that is sorted. If you use explorer to associate the file types with SQL Developer, they open without this error.
    Regards
    Sue

  • Could not find file ERROR while connecting to access (mdb) file

    I am getting the following error while connecting to the database:
    javax.servlet.ServletException: [Microsoft][ODBC Microsoft Access Driver] Could not find file 'C:\WINNT\system32\Database1.mdb'.
    Following is my code:
    <%
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         String database="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
         String filename="D://BeaTemp//Database1";
         database+= filename.trim() + ";DriverID=22;READONLY=true}";
         Connection con=DriverManager.getConnection(database, "", "");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select * from Database1.Employee");
         ResultSetMetaData rsmd=rs.getMetaData();
         while(rs.next()){
              for(int i=1;i<=rsmd.getColumnCount();i++) {
                   out.println(rs.getString(i));
    %>
    What could be the problem..??
    Thankx in advance..
    Satish.

    Got the solution.
    The statement:
    ResultSet rs=st.executeQuery("select * from Database1.Employee");
    should be changed as:
    ResultSet rs=st.executeQuery("select * from Employee");
    Now, it is working fine.
    Regards,
    Satish.

  • Can't get past a "locked file" error, ie can't Publish?

    This software is very very very difficult to configure -- but
    I'd suppose you've heard that before re: Contribute C3. This is
    trying to get a new client (we're a web hosting co, who just got
    them from their previous web hosting firm who sold them on
    Contribute....idiots!) Anyways, I've had NOTHING but troubles with
    this app.....
    I learned how to operate the app, and how to generate a KEY
    to send to the new client, and made them an Admin and sent same and
    then went over there to their offices. My client rec'd the CONN KEY
    that I made. We ran it on their computer when prompted to by
    Contribute. we then restarted with them now as an Admin. Working at
    their offices, I was able to connect, then edit a page on their
    website no problem -- BUT -- as soon as I tried to PUBLISH same,
    you get a yellow bar up top that says "You can't edit this page now
    becuase you are already editing it on another computer. Click here
    to make this page editable" WTF???????????
    This statement is wrong. No one else (other than me and my
    computer is OFF) has the abiltiy to edit that page. No one else has
    the credentials to enable Con to work on that client site
    either...so....?????
    I then click the 'here' and I get the notice that Contribute
    must unlock the page (stupid non professional app!!!) and I then
    try YES, and I get the dialog that says "no, access is denied or
    there may be a permission problem."
    This too is not correct. I personally made the perms for the
    whole website folder structure read/write and they work fine. I can
    use my own CMS system to login and make a change that works
    perfectly.. But not using Contribute....sigh....and that client
    WANTS to use Contribute....sigh....
    Could someone offer help here? Adobe Tech support in some
    other country doesn't seem able to understand my problem, let alone
    help, let alone feel any sense of urgency as this is a CLIENT for
    christsakes.....anyways...here's my questions...
    Is there a way to totally CLEAR all the settings on the
    client machine Contribute, then re-use the KEY to begin a new Admin
    role? I'm a bit fearful of deleting that website but if someone
    here who's NON adobe personnel says okay, that'd be my next step.
    Or do I need to uninstall from my own box too?
    Or, is there a way to fix this, without that deletion? I'd
    feel better about another way....but no matter. My client only has
    one eyebrow raised up at me right now, but if I don't come up with
    an answer tomorrow, that client will most likely be gone!
    Help here someone?
    Jim

    Hi, try clearing the Contribute Preferences once and try the
    same scenario. Check any .LCK file is created for that particular
    page. Delete that file manually and make it editable.
    To Clear the preference, quit Contribute, and then delete the
    Contribute CS3 folder in C:\Documents and
    Settings\<user>\Local Settings\Application Data\Adobe\ and
    also run the following command " reg delete
    "HKCU\Software\Adobe\Contribute 4.1" /f " if you are using
    Contribute CS3. Reconnect to the site and try the same scenario.
    Note that, if you clear the preferences then no connection
    will be listed in Contribute, you need to recreate the connections.
    It will be like a fresh installation.

  • Can't open dreamweaver CS6 dmg file - error 4960

    I have downloaded dreamweaver CS6 file "Dreamweaver_12_LS16.dmg" file (432.2MB) but get error 4960 when I try to run it

    See http://forums.adobe.com/message/4302947#4302947.

  • X200: Windows cannot find file error (& cygwin problem)

    Often (about half the time) when I double click an icon (.docx files typically) to open I get a error reading"Windows cannot find ‘C\Users\username\Desktop\filename.docx’. Make sure you typed the name correctly, and then try again."   I can *always* resolve this by simply double clicking again.   I ran  a complete disk check (the thing that runs on reboot) and it passed with no errors.  OS: Vista with all updates, Apps: Office 2007 with all updates.  Disk: Solid state (128GB) SAMSUNG MMCQE28G8MUP-0VA
    Any suggestions for troubleshooting tips? 
     I also wonder if this might be related to the following problem.  I have CYGWIN installed, and once I have changed a file in emacs and saved it, emacs can no longer find it (no matter what I do).  These days I get the message within emacs "file is not readable", although in the past the error has said something about a fork.
    Message Edited by andy402 on 04-25-2009 07:27 PM

    There is a primitive called 'Request Deallocation' that is suppose to free up resources in a VI after it is called.  You could try using this.
    Paul <--Always Learning!!!
    sense and simplicity.
    Browse my sample VIs?

  • Unable to find file error while loading data from text file to Oracle

    Hi,
    I am having a interface where i am loading a data of Text file to Oracle.
    But when i am trying to do this i am getting following error.
    ODI-1227: Task SrcSet0 (Loading) fails on the source FILE connection SAPMM.
    Caused By: java.sql.SQLException: File not found: d:/mdb/#General.get_filename
         at com.sunopsis.jdbc.driver.file.FileResultSet.<init>(FileResultSet.java:160)
         at com.sunopsis.jdbc.driver.file.impl.commands.CommandSelect.execute(CommandSelect.java:57)
         at com.sunopsis.jdbc.driver.file.CommandExecutor.executeCommand(CommandExecutor.java:33)
    SAPMM is connection name.
    I am using get_filename to get the filename and it is fetching correct value as the this variable refreshes in previous step of this interface.
    KM used for loading is File to SQL
    What would be cause of this error?
    Thanks,
    Mahesh

    Hi,
    Did a testing and following are the result
    I have
    A> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Execution of Interface which gets the file name from v_filename and load into target table
    Package executes successfully.
    B> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Scenario of Interface which gets the file name from v_filename and load into target table
    Package executes with erre as it is not able to find the file
    C> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Execution of Interface which gets the file name from v_filename and load into target table
    4. Now create a scenario of the package , use the generated scenario in another package say main_package
    Execution of main_package is successful.
    Thanks,
    Sutirtha

  • How can I open my file after 'cannot find -filename-' error message?

    OK, the bottom line is, InDesign crashes and I cannot recover my file. I get a 'Cannot find file' error message when I try to open the file.
    I am using CS6 on a MacBookAir, OS X Yosemite.
    I have tried finding the 'InDesignFileRecovery' folder, I cannot find it anywhere, it's not in my Library or Caches folder.
    However, I do work in dropbox, so I just headed over to dropbox to recover from their 'previous versions'. It starts to get weird. There are lots of previous versions (I save very regularly) but when I download a previous version (that I know was fine) it downloads with a indd.txt extension. So I remove the txt extension and keep the indd and everything looks fine, but then that recovered file gives the same message. I tried renaming the recovered file and opening that, same 'cannot find file' error message.
    I can open InDesign and open the file from the day before, but none of the dropbox earlier versions of that day's work. I am SO sick of this happening. It happened to me last week to, so far I have lost 20 hours work :-(
    I have tried quitting InDesign and restarting the Mac, doesn't help. The only thing I can think of is to 'save as' every couple of hours, at least then hopefully I only lose 2 hours work.

    Thanks, when you say 'hidden by default' then how does one find it? I have already tried the path you mention and there is no sign of a cache folder with Adobe files. Spotlight doesn't reveal anything either.

  • Can't burn due to missing file

    I'm working on a project that I started quite a while ago and I must have deleted a video clip. Anyway I want to burn, but I can't because of the "missing file" error box. I've tried doing a "Save as", repaired permissions and restarted. I'm fairly new at this, so I'm looking for a simple solution. I really don't need the missing file, so how can I just go ahead and burn without it?
    eMac   Mac OS X (10.4.4)   iDVD 5

    Hello Elizabeth - I think you'll need to address the basic problem, ie., find the missing video and move it back so iMovie can find it, or re-edit the video in iMovie so the missing piece isn't needed. One strategy is to delete the video from iDVD, then go back to iMovie and repair that part of your production that is missing (or move it back so iMovie can find it). When you re-import the video back in to iDVD, it should work better. You may also want to look around in the forums here for hints about making the burn smoother (maintenance tasks, good quality disks, slow burning, etc.). John
    G5 2.0, G4 400, IIGS   Mac OS X (10.4.5)  

  • The Finder can't complete the operation because some data in "FILE NAME" can't be read or writen. (Error code -36)

    I have a RAID that my Mac says is damaged. It does mount, so I want to copy as much of the data as I can. I tried SuperDuper!, but it crashed (or gave me error and stopped).  I tried copying and pasting entire drive (1.75TB) but it stopped with this error, and same error happens with some of the files when I try to copy and paste (Drag and Drop) them individually.
    I get this error: The Finder can't complete the operation because some data in "FILE NAME" can't be read or writen. (Error code -36)

    Well, in pure Apple File System talk... -36            ioErr            I/O error (bummers)
    Not very helpful, but generally means a Drive quit being Readable or Writable since starting the operation...
    http://fuzzy.wordpress.com/2006/12/10/ioerror-36/
    If Disk Utility or fsck should fail to repair it, your best bet is DiskWarrior from Alsoft, you'll need the CD to boot from if you don't have another boot drive...
    http://www.alsoft.com/DiskWarrior/
    Might try the free trial of my favorite, Tri-Backup, it does a better copy/clone job in that it usually doesn't quit copying at every error, & has a nice log afterwards to try certain files agin if you wish....
    http://www.tri-edre.com/english/products/tribackup.html

  • Can't Find File/Dir info  Error 3 :: 30 and (-43)

    Please help me with this issue. There's very little previous mention anywhere about this sort of problem.
    I'm trying to open an After Effects file that I haven't opened in a while, and the footage I used in the project has since been deleted. When I click it to open it it gives me the message:
    After Effects Error: finding file/dir info for file "C://user// yada yada yada....Segment2.aep" file not found (-43) 
    3 :: 30
    All my plugins are still intact and I've tried everything mentioned on the one other thread about 3::30 (which only contained one suggestion).
    I really need to access this file as I did a lot of work in there that I can use again and save days of work, even though the footage the file used is gone.
    Thank you in advance!
    -Raphi

    Oh, well it looked from your initial description that you had possibly imported an After Effects project into another After Effects project.
    That being said, you may want to try the very same thing to see if you can salvage you seemingly corrupt project file. Try to create a brand new After Effects project, and import the file that you're trying to open (Segment2.aep) into the new project. If the file isn't corrupted, it should import.
    Aside from that, if you have a backup of your old project, I'd suggest trying to restore it.

  • Firefox won't open, error message"can't find file at jar:file" etc.

    "Firefox cannot find file@jar:file:///program files/Mozilla Firefox/omni jar!/browser config. properties." I tried to download firefox and refreshed the desktop link and still no go. Cannot get firefox to browse.

    Se also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Crystal Server 2013: How to troubleshoot "Can not create temp file---- Error code:-2147215357"

    We have a Java7 web app, which generate PDF report by calling Crystal Server 2013 SP4.
    The app is being deployed on many different servers. We sometimes got the error below when generating report:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.controllerExportInternal(PrintOutputController.java:280)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(PrintOutputController.java:152)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(PrintOutputController.java:130)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(PrintOutputController.java:113)
    Problem is, this seems to be  a pretty generic exception. It could be caused by many different reasons.
    e.g. network connection problem, wrong DB login, wrong folder path, lack of folder access right, etc.
    Each time we could only guess what's wrong.
    We are running into it again, and this time everything seems correctly configured so far.
    We wonder if there are more info we can get to troubleshoot? For example, any log file of Crystal Server we should look into? Or does Crystal Server has debug mode which prints more details to tell us what goes wrong?

    Prithviraj Shekhawat wrote:
    Hi Henry,
    I believe you are using RAS SDKs to export the reports to PDF.
    Apply trace on RAS server and check what you find in RAS logs.
    Check whether you can see timeout error is RAS logs. Usually if connection is lost and the RAS server no more have the session to write to the temp directory, we do see these errors.
    Also, does the account that runs RAS have permissions to create a file in RAS's default temp directory? Are you getting any out of memory or out of disk space exceptions on App server or RAS, tracing RAS server is the way to move forward.
    Thanks,
    Prithvi
    >>I believe you are using RAS SDKs to export the reports to PDF.
    Yes
    >>Apply trace on RAS server and check what you find in RAS logs.
    >>Check whether you can see timeout error is RAS logs.
    How to configure tracing, and where are RAS logs? Is it configured in CMC --> Servers --> Crystal Report Services?
    >>Also, does the account that runs RAS have permissions to create
    >>a file in RAS's default temp directory?
    Pretty sure yes.
    >> Are you getting any out of memory or out of disk space exceptions
    >>on App server or RAS, tracing RAS server is the way to move forward.
    Not on App server.
    For RAS, that's the problem, I am not sure where to look.......

Maybe you are looking for

  • How to add Java Web Start MIME type to Sun Java SYstem Application Server?

    Hi, In the process of learning about Java Web Start, I read in the document that I had to add "application/x-java-jnlp-file JNLP " to a configuration file. Does anyone know where that file is for Sun Application web server( vesion 8, on WIndows)? Tha

  • Zen Stone Plus Battery Life Test -Summ

    Battery Life/ Playtime: Up to 9.5 hours for continuous audio playback Battery Type: Rechargeable Li-Ion Polymer (Embedded) *CREATIVE specifications. I had tested on my zen stone plus battery life... I used uni'versal travel adapter for zen micro to f

  • Tried restoring iPad to prepare it to sell, encountered error now iTunes won't recognize.  The iPad just shows the connect to iTunes even after restarting.

    I tried restoring iPad1 to prepare it to sell, encountered error during the restore.  iTunes dispalyed a message that there had been an error.  My iPad1 is just showing the image to connect to iTunes, even after i try restarting the iPad1.  I've also

  • Hardware error on my iMac

    Hello. I was having problems w/ my iMac and so I ran the Apple Hardware Test. It immediately came back with an error: 4MEM/2/40000000:3CBE8054 Does anyone know how to figure out what this means? It certainly looks like a memory problem, but I'd like

  • I'm pi$$ed off!

    If you count the replacement ipods ive had the total ive had is 5, after sending back my last one back because it doesnt connect to either my laptop or pc they have told me there is no problem, i just bought it in december. Any ideas on what i should