PDF files missing and leaving AA and AAA files???

I'm working from a Mac OSX 10.5.8 and using Adobe Acrobat Pro 9.
I have pdfs on a server that are reviewed by people with Acrobat Reader and every now and then when someone saves changes, the pdf will go missing leaving a file like "aaa01744" or "aab04284" in its place which opens in Terminal when clicked on.
What's the error here, and is there anyway to open the "aa" type of files?

Hi risscand,
Are you still facing this issue or your issue has been resolved?
Regards,
Rahul

Similar Messages

  • Lightroom unable to find photo - Loses pic and leaves ".swp" and ".tmp" on disk

    Hi Guys
    Working Win 7 Professional (64bit), Lightroom 4
    I am finding that while reviewing / rating my pics lightroom will often lose a pic (pics located within a folder on the desktop - move them to a nas drive later as faster to work from hard drive than accross the newtork when importing and exporting and creating previews etc). I will have a pic on my screen and then use the numeric keypad to rate the pic or the arrow keys to progress to the next pic and then out of the blue lightroom announces that the pic is missing. I look at the hard disk and find that there is now a .swp and .tmp file left in the directory where the pic was. eg below
    I can then either rename the tmp file back to a jpg and all is OK but I have just started dragging another copy of the image from the card again. This is not just a lightroom 4 issue I used to have it in Lightroom 3. Its got to the stage where I am now keeping a copy of all images while I do my initial shortlist just incase I lose something which frustrates me somewhat. Anyone got any ideas?
    kind regards
    Darrell

    Thanks for your response and interest
    1.       Files are on the local disk (Windows desktop)
    2.       Yes I am the administrator
    3.       I believe the Windows Recycle Bin would include files deleted from the desktop
    4.       Possibly note sure
    5.       Yes enabled

  • Mapping IDOC to CSV file - Missing blank field values in CSV file

    Hello:
    I am mapping an IDOC to a .csv file, using File Content Conversion.  I specify comma as the value for the parameter 'fieldSeparator'.  I get a .csv file, but blank field values are missing in the .csv file.
    For example, if the .csv file format is <field1>,<field2>,<field3>
    and if <field2> is blank, then the .csv file contains
    <field1>,<field3>

    Hi Bac,
    As long as the XML that goes to your File Receiver Channel contains the elements, even if they don't contain values, it should work fine.
    For example:
    <field1>data</field1>
    <field2></field2>
    <field3>data2</field3>
    I suspect that your XML looks like the following:
    <field1>data</field1>
    <field3>data2</field3>
    If this is the case you can update your map. You shouldn't need to put a space, just make sure the element gets created.
    Thanks,
    Jesse

  • PDF files not saving/missing and leaving "aa12345" and "aaa12345" files??? - Solution

    risscand: I have workers that are unable to save and they are seeing an "aaa04916" type file in their working folder. This is causing us to lose work (because we are unable to save over the original file) or send out incomplete documents.
    Mudassir: As I understand when you try to edit and save a document, it directly opens "Save As", is that correct?
    risscand: No. When the user saves normally. Ctrl+S or the "Save" icon via the disk at the top of the page it appears to save however the PDF does not actually rewrite
    risscand: This results in an aaa12345 file in the folder, but an unchanged PDF.
    Mudassir: Okay.
    Mudassir: Thank you for the information.
    Mudassir: I will be glad to help you with this issue.
    risscand: Excellent
    Mudassir: May I know if you are chatting from the issue facing computer?
    risscand: I am not currently experiencing the issue but many of the employees in this office are.
    risscand: I can review the issue and see the files however, our worked is based off of a server.
    Mudassir: Okay.
    Mudassir: Marissa, this error often occurs due to a confict with Acrobat application and Windows Preview.
    Mudassir: In order to resolve the issue, you need to disable the Windows Preview in the Windows Explorer
    Mudassir: Follow the steps below to fix:
    Mudassir: Go to “Computer” or a windows explorer window, click on the “View” tab and then make sure the “Preview pane” is unselected. Then try saving your PDF document again.
    risscand: This option was not used by the users
    risscand:: I just asked one of the individuals who was experiencing the issue and she has never used that option.
    Mudassir: Just a minute.
    risscand: Thanks
    Mudassir: Thank you for your patience.
    Mudassir: Are all the users using Acrobat or Adobe Reader to save the PDF files?
    risscand: Acrobat
    Mudassir: Is that PDF file saved on network?
    risscand: Yes
    Mudassir: Does that users have the complete access to the network drive and are all the users use that PDF at a time?
    risscand: The PDF's are used one at a time. The individual who combines the reports that the workers probably does not have complete access to the network.
    Mudassir: To re-write the PDF which is saved on network, the users need to have complete access. If not, they will get the save as option and they can save that PDF file on their local drive
    Here are the options I got from Customer Service - Hopefully it will help some of you!
    -Riss

    Hi risscand,
    Are you still facing this issue or your issue has been resolved?
    Regards,
    Rahul

  • Files missing in the ear and client jar

    Hi,
    I'm following the examples to build a web service using ANT servicegen task. My
    web service calls a lot of other java classes, and those java classes in turn
    call other classes. When I used the following taskes to generate the service and
    client code, I found the generated ear, war and client jar files only contain
    the compiled classes which are used directly by the web service class. Those classes
    called indirectly by web service are missing.
    <target name="ear">
    <servicegen
    destEar="${build}/${ear_file}"
    warName="${war_file}">
    <service
    javaClassComponents="com.iit.integration.txlife.txlife28.txlifeProcessor.TxlifeProcessor"
    targetNamespace="${namespace}"
    serviceName="TxlifeWebService"
    serviceURI="/txlifews"
         generateTypes="True"
    expandMethods="True">
    <client
    packageName="com.iit.integration.txlife.txlife28.client"
    clientJarName="${client_jar_file}"
    />
    </service>
    <classpath>
    <pathelement path="${build}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </servicegen>
    </target>
    <!-- generate the client jar and build the client calling class -->
    <target name="client" depends="ear">
    <clientgen
    ear="${build}/${ear_file}"
    warName="${war_file}"
    packageName="com.iit.integration.txlife.txlife28.client"
    clientJar="${client}/${client_jar_file}">
    <classpath>
    <pathelement path="${build}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </clientgen>
    So when I invoked the client code, I always got the class not found exception.
    Not sure if I missed anything here.
    Thanks a lot,
    Henry
    [build.xml]

    Any required support classes have to be in the client's/server's classpath. Or
    at least that's what I do.
    "Henry Niu" <[email protected]> wrote:
    >
    >
    >
    Hi,
    I'm following the examples to build a web service using ANT servicegen
    task. My
    web service calls a lot of other java classes, and those java classes
    in turn
    call other classes. When I used the following taskes to generate the
    service and
    client code, I found the generated ear, war and client jar files only
    contain
    the compiled classes which are used directly by the web service class.
    Those classes
    called indirectly by web service are missing.
    <target name="ear">
    <servicegen
    destEar="${build}/${ear_file}"
    warName="${war_file}">
    <service
    javaClassComponents="com.iit.integration.txlife.txlife28.txlifeProcessor.TxlifeProcessor"
    targetNamespace="${namespace}"
    serviceName="TxlifeWebService"
    serviceURI="/txlifews"
         generateTypes="True"
    expandMethods="True">
    <client
    packageName="com.iit.integration.txlife.txlife28.client"
    clientJarName="${client_jar_file}"
    />
    </service>
    <classpath>
    <pathelement path="${build}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </servicegen>
    </target>
    <!-- generate the client jar and build the client calling class -->
    <target name="client" depends="ear">
    <clientgen
    ear="${build}/${ear_file}"
    warName="${war_file}"
    packageName="com.iit.integration.txlife.txlife28.client"
    clientJar="${client}/${client_jar_file}">
    <classpath>
    <pathelement path="${build}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </clientgen>
    So when I invoked the client code, I always got the class not found exception.
    Not sure if I missed anything here.
    Thanks a lot,
    Henry

  • Song files missing in 7.0 and blank ipod

    I updayed my itunes to 7.0, and after it 'updated' my ipod i can no longer access mot of the songs in my library, which have an '!' next to them and the computer says it cannot find the file for the song, and my ipod no longer has any music on it what so ever. also, itunes freezes everytime i turn it on with the ipod attatched. help!?

    Srikanth,
    Did you apply all pre-req. patches before applying 12.0.6 RUP patch?
    What is the status of this patch? Does it fail or run or those are just warning messages?
    Note: 743368.1 - Oracle E-Business Suite Release Update Pack Readme, Release 12.0.6
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=743368.1
    I would suggest you run adadmin, and check for missing files before you proceed with the patch installation.

  • AS 10G emctl is died and leaves orphan and hung to emagent

    We start infrastructure and middle tier in the following way for each instance:
    opmnctl startall
    emctl startifdown iasconsole
    After a few minutes or hours the emctl died leaving the emagent hung up, impossible to kill them and the service http://host:1810 are not available, the only way is boot the system.
    AS 10g 9.0.4 / Solaris Sparc 8 64bits.
    Pls, any help are welcome!
    Tx in advance,
    Diego.

    ?

  • Imported par file to NWDS, jar file missing. Where find par file structure?

    Hi All,
    We want to implement idle session timeout on the portal.  We found a wiki here on the subject.  In order to implement the solution we need to make adjuestments to com.sap.portal.navigation.masthead.par.bak.  When we import this par file to Netweaver Developer Studio, the libraries and jar files are missing.  So obviously it errors then in portal as files are missing.
    So I could add them manually but I don't know what the file structure is on this par file so don't where to add what.  Does anyone know?
    Also when I export the file after manually adding the missing files, will it export all the files or will it behave the same way as the import and leave out the additional files?
    If anyone could help, I'd really appreciate it,
    Kind regards,
    Liz.

    Hi Bala,
    I thought of that just before you responded and it worked!!  Thanks for the response..
    Regards,
    Liz.

  • Music files missing/hidden in folder on network hdd

    Hi all,
    I have setup my home net work with a iMac (mountain Lion) backed up by a TimeCapsule and at the back of the TimeCapsule I have a 2TB networked external HDD. My iTunes library is located on this HDD, I take care not to start up iTunes before this networked external HDD has propoerly mounted to avoid any conflicts with links to my itunes library files and folders.
    The other day I noticed a few missing files (the dreaded exclamation mark !), not too bad a figured, I located a few manually but reached some that does my head in...... Out of the whole album there are two files "missing", the other ones play as they should. When I try and locate the missing files the folder comes up empty.....
    I have even checked the songs that do play in the same album....they dont show up either, even though they still play in iTunes (yes, they are all located at the same location). The album was originally ripped from a CD and I don't use iTunes Match or Genius.
    I have tried to find the files by:
    1."open in finder" - files missing / whole folder empty
    2."through finder and located the drive and folder" - files missing / folder empty
    3."copy file location from "get info" and paste into "go to folder" - the file temporarily appears in the finder window but dissapears shortly after / folder yet again empty.
    4. I check the folder "get info" from my finder and it says "zero bytes"
    5. I can't use Search because its on an external HDD and there fore not indexed
    6.I have tried to copy the folder to the desktop but still shows empty....
    7. I have tried to "organise" my library, still no change.
    What the..xxx..is happening..?
    From what I can gather, the files are actually there but not visible through the finder window (even though the folder appears to be 0 bytes).
    The problem being that I can't locate my missing files because I cant see them any more......
    Am I missing something (like show hidden folder on a Mac) or has it got to do with anything else...? How can I fix it..? I have found posts that relate to windows users forced their W7 to show hidden folders but nothing yet on Mac.....
    Help.
    //Fred

    I was lucky to be able to use a PC, that after trying numerous times actually read the external hdd, I quickly copied all files over to a backup hdd and recovered all files. After that I ended up in contact with Western Digital about the incident and they recommended to completely erase (7-pass erase) of the hdd, which ended up taking over 5 days to do. They gave me no reason as to "Why" it would have happened but if I erase and reformatted of the hdd and the problem reoccurred they recommended to get the unit replaced.
    I was lucky to recover all my files.....keep trying on different computers if you can, and copy what you can get hold of. The 7-pass erase will delete pretty much every trace of information on the hdd with no chance of recovery.
    So far since the incident its been running ok but I not longer trust the hdd to be stable. Not a simple nor quick process / solution I'm afraid.
    Good luck!
    Once you have recovered your files (or as many as you can get hold of) and ready to erase the hdd:
    (THIS WILL ERASE ALL YOUR DATA, MAKE SURE YOU HAVE A BACKUP BEFORE PROCEEDING)
    Connect the drive directly to the Mac, open Disk Utility.
    Select the drive and click on the "Erase" tab Select the "7-times zeros" to completely erase the drive.
    Once the erase have completed format the drive to your selection.

  • Removed PS CS3; now CS5 says there is a file missing.....

    I used the Adobe CS3 uninstaller to remove PS CS3. When I start PS CS5, I get an error message that there is a file missing from Application Support and telling me to reinstall CS5. Before I go ahead and uninstall CS5 and then reinstall it, I want to be sure that is the right thing to do. Help appreciated!
    Jeff

    Or.... use AppZapper and it will remove the app and relevant files without touching the CS5. files.
    But in all honesty, your better off folowing the advice posted above.
    Remove CS5
    Remove CS4
    Reinstall CS5
    In that order...
    I have CS4 and CS5 running side by side right now, but I just got a new 320 gig HD and space is not at a premium anymore for this MacBook. I still don't have 64 bit filters from Flaming Pear and Alien Skin, and I don't see the point of running PS CS5 (a 64 bit app) in 32 bit mode on a 64 bit OS, so I keep CS4 for quick edits. Otherwise I use CS5 almost exclusively.

  • I have and IPAD 2 and a iMac 10.7.4 the iPad didn't sync the address book

    I have and IPAD 2 and a iMac 10.7.4 the iPad didn't sync the address book

    Download the COMBO Update and try that, that is iof you haven't already.
    If that fails then you could boot to the Recovery HD and do a Reinstall Over the Top of your current install. That will replace all the system files with the current versions, 10.7.4, and leave all your other files alone, programs and data file.

  • Hyperlinks to XLS, DOC, and PDF files that are included in a .chm file work intermittently.

    SUMMARY
    Hyperlinks to XLS, DOC, and PDF files that are included in a
    .chm file (and the Baggage Files) only work intermittently. The
    only solution appears to be deleting the Temporary Internet Files.
    PROBLEM
    1. I place the XLS, DOC, or PDF file in the Windows
    sub-directory that corresponds to the RoboHelp project sub-folder
    where the topic in which I’ll place the hyperlink exists.
    2. I open the help project in RoboHelp HTML.
    3. I right-click on the project’s Baggage Files
    sub-folder that corresponds to the Windows sub-directory in which I
    placed the XLS, DOC, or PDF file (in step 1).
    4. I import the XLS, DOC, or PDF file.
    5. I open the topic in which I’m going to place the
    hyperlink in the WYSIWYG editor.
    6. I “drag and drop” the Baggage File into the
    topic (in the WYSIWYG editor) to create a link to it.
    7. I save the changes and then generate HTML (.chm) help.
    8. I open the .chm file and click the hyperlink. The XLS,
    DOC, or PDF file may or may not open.
    9. When the hyperlink works correctly, for DOC and XLS files,
    a “File Download – Security Warning” dialog box
    appears asking, “Do you want to open or save this
    file?”. The buttons that are available are
    “Open”, “Save”, and “Cancel”.
    These buttons work then as one would expect. (When the hyperlink
    works correctly for a PDF file, it simply opens the PDF file in a
    new window; there’s no prompt to save, open, or cancel.)
    10. When a hyperlink does NOT work, for DOC, XLS, and PDF
    files, no dialog box or other visual message is displayed. Instead,
    the sound that is associated with the “Exclamation”
    program event is played (the “Windows XP
    Exclamation.wav” file is the WinXP default).
    Other Notes:
    - The hyperlinks ALWAYS work when I view a topic using the
    “View Selected Item” function (Ctrl+W) in the RoboHelp
    HTML project.
    - Once a hyperlink stops working, it will not start working
    again until I delete all the Temporary Internet Files.
    - A hyperlink will stop working even if Internet Explorer
    (iexplore.exe) is closed the entire time.
    WORKAROUND
    Through trial and error, I have discovered that if a
    hyperlink stops working, I can get it to work again using the
    following steps:
    1. Leave the .chm file open.
    2. Open Internet Explorer.
    3. Click Tools>Internet Options….
    4. From the “Internet Options” dialog box, select
    the “General” tab.
    5. Under the “Temporary Internet Files” section,
    click the “Delete Files…” button.
    6. From the “Delete Files” dialog box, select
    “Delete all offline content” and then click
    “OK”. The files are deleted and the “Delete
    Files” dialog box closes.
    7. Click “OK” to close the “Internet
    Options” dialog box.
    8. Without closing Internet Explorer and without re-starting
    the .chm file, all the hyperlinks that didn’t work before
    will now work.
    GENERAL SYSTEM INFORMATION
    - Windows XP Pro, SP2
    - Internet Explorer 6.0.2900.2180
    - RoboHelp X5, 5.0.2 Build 801
    - HTML (.chm) help project files exist on my local machine
    - HTML (.chm) help file is run from my local machine
    - Project is under RoboSource version control
    TEMPORARY INTERNET SETTINGS
    - “Check for newer versions of stored pages” is
    set to “Automatically”
    - “Current location” for the Temporary Internet
    files folder is set to “C:\Documents and Settings\My
    Username\Local Settings\Temporary Internet Files\”
    - “Amount of disk space to use” is set to
    “594” MB
    “View Files…”
    - An XLS or DOC file will be listed here if I click its
    hyperlink and then click either “Open” or
    “Save” from the “File Download – Security
    Warning” dialog box.
    - A file will appear here even if I click “Save”
    and then click “Cancel” from the subsequent “Save
    As” dialog box.
    - If I click “Cancel” from the “File
    Download – Security Warning” dialog box, the file does
    not appear in the Temporary Internet Files folder.
    - When a file does appear in the Temporary Internet Files
    folder, its Internet Address is displayed similar to the following:
    “ms-its:C:\PrimaryProjectFolder\ProjectName.chm::/SubFolderName/FileName.xls”
    “View Objects…”
    Here’s a list of all the program files that appear:
    - “Microsoft Office Template and Media Control”
    (Last Accessed 12/13/06) (Version 12,0,6024,0)
    - “Shockwave ActiveX Control” (Last Accessed
    12/14/06) (Version 10,1,4,20)
    - “Shockwave Flash Object” (Last Accessed
    12/18/06) (Version 9,0,28,0)
    - “Windows Genuine Advantage Validation Tool”
    (Last Accessed 12/14/06) (Version 1,5,722,0)
    - “WUWebControl Class” (Last Accessed 12/13/06)
    (Version 5,8,0,2469)
    Today is 12/18/06 so the only program file that is listed as
    having been “Last Accessed” today is the
    “Shockwave Flash Object”.
    REQUEST FOR HELP
    I really want to include certain PDF, DOC, and XLS files in
    their native format in a .chm file. However, I need a better
    solution to my problem than the one I discovered. What I really
    want is to avoid the entire problem altogether.
    Have anyone seen this before or have any suggestions?

    You wont be able to do that. The embedded objects would appear as images only.

  • I trashed my mimetypes.rdf file to reset download actions, and now Firefox won't open because profile missing, please advise

    Up until recently, when I would download a pdf file, it would automatically open, and recently, for some reason, it stopped opening automatically and just downloaded to my desktop where I wanted it. I found instructions on Mozilla if files downloaded but not displayed, that included displaying my profile folder and then deleting it. I trashed it (different from deleting?) and now if I try to open Firefox, I get the message that Firefox can't open/load because profile is missing. Please advise how I can get the profile folder back in.
    thanks

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Organizer defect creates and leaves temporary files in the open directory.

    I'm using Photoshop Elements 11 Organizer and Adobe Bridge CS6 concurrently.  If I have Bridge open to the same folder as PSE Organizer and I do an "Add captions ..." operation to a group of files selected in the Organizer, then there is a very good chance that PSE Organizer will rename one or more files to OriginalFileName_edTMP-1.extension and leave the renamed file in the directory rather than completing the update and returning the file(s) to their original name.  In most cases my original files are Nikon .nef files with .xmp sidecar files, but I've also seen this happen with .psd files.  The .nef files are generally large, averaging 35 Mb per .nef image and the .psd files are usually over 100 Mb.  If PSE Organizer and Bridge are open to different folders then Organizer does not leave the renamed file.  Thus I would suggest that there may be a logical threading error in PSE Organizer where it does not consider that another application may be monitoring the folder and also opening the files, which is what Bridge does when it discovers that a file has changed (the addition of a caption changes the file contents.)  This was also a defect in PSE Organizer 10.

    I believe you missed the point.  And just for the record I have 40+ years of software engineering experience and do know something about data bases and application programming.  There is a defect in the Photoshop Elements Organizer and I suspect that one of the developers forgot to check a return code from an operation.  I also suspect that what happens is that the Organizer temporarily renames the file it wants to update, makes the update, and then intends or tries to rename it back to the original name.   But with Bridge running in the background and watching to see if there are any changes in the folder, Bridge sees the new file name and makes the file (or possibly the directory) temporarily unavailable to the Organizer as Bridge updates its information and the window display.  If the timing of the operations is just right, the Organizer can't access what it needs to and probably gets a failed return code from the rename operation.  If my supposition is correct, the code doesn't check this return code after the rename operation and just assumes that it took place.  The problem is clearly related to timing (race condition) and is more likely to occur on large files, such as 100+ MB Photoshop files.  Just for the record, I am not actually working with both Organizer and Bridge at the same time.  Bridge is running in the background.  I've learned to avoid the problem by pointing Bridge to a different folder when I do an update in Organizer.  I also realize that information that I might add in Bridge does not show up in the Organizer Catalog, but fortunately Bridge is smart enough to extract tags and titles that I've added with the Organizer once Organizer has written them to the files. The problem that I'm reporting is not an issue about what a user should or can do, it's about safe programming practices.  Adobe will decide if they want to fix it or not.

  • Can anyone help? I just opened my PDF and letters are missing in each word and sentence. I am using the trial version of Acrobat Pro XI

    Can anyone help? I just opened my PDF and letters are missing in each word and sentence. I am using the trial version of Acrobat Pro XI

    Hi gretchenm66156293,
    Are you running into this issue with one PDF in particular, or with any PDF that you open? Did the PDF display correctly previously? How was that PDF created?
    For starters, please choose File > Properties and click the Fonts tab. What fonts are used in the PDF? Are they "embedded" or "subsetted."
    I would be happy to take a look at the PDF here, if you'd like. Let me know!
    Best,
    Sara

Maybe you are looking for