Edited pdf file upload from iPad

Is there any way other than sending an E-mail (which does not always work, depending on the receiving server) to upload an edited pdf document on the iPad to cloud storage (e.g., the Acrobat.com site)?

Very helpful, and now I get to sheepishly admit that, now that I see your answer, I actually had figured this out weeks ago, but had not yet set up a storage account at that point, and had by now forgotten.  My brain does not work like it did when I was 18 or 29 yrs of age, and it seems I expect more from it than ever, Hopefully others who are new to the App, or who have a brain-dead moment as I did, will benefit from this brief Q&A.   THANKS.

Similar Messages

  • Is there any way to block PDF files sharing from iPad to any another device or cloud? We need to have certain PDFs visible and readable only from iPad.

    Is there any way to block PDF files sharing from iPad to any another device or cloud? We need to have certain PDFs visible and readable only from iPad.

    There are "container" apps emerging for the iPad.  Enough searching & I suspect there would be one for your needs. 
    All in one Application that emphasize security
    Good Collaboration Suite  Secure mobile app-to-app collaboration.
    The Good Collaboration Suite includes Good for Enterprise, Good Share and Good Connect secure mobile apps, simplifying access to email, calendar, contacts, tasks, instant messaging, browsing and document sharing. These apps are built using Good’s next-gen containerization   that includes secure data sharing between any Good secured app as well as app-level encryption independent of the device used."
    http://www1.good.com/applications/

  • HT204365 Why did all my PDF files disappear from ibooks on my iPad

    All of my PDF files disappeared from iBooks on my iPad. Where and why did they suddenly disappear? How can I retrieve them?

    As far as I can work out, from incomplete downloads, ticks denote all downloaded ok. 
    The manually manage option is for those who want to tailor their library collections in Music and Video to specific items.  If you have this ticked, then it will sync with the sync selections in your devices pages (eg, Music, videos). 
    If you want to sync all of your collection 'all' the time, leave manually manage off and put the a tick in the devices' page to sync all items  Dependent on iCloud use, and or automatic download options in iTunes, new purchased items are added and synced automatically as they are added - this only applies to Store purchased items.
    If you are going to added content outside of the Store, then Manually Manage is the option to take for Music and Videos - it does not affect anything else. IE Apps or podcasts, etc.
    If you have manually manage off, and 'selected playlist' option ticked, then it will sync existing ticked items, but new items downloaded will require you tick them (a) after the next iTunes automatic download when it connects to the store and  downloads any items, or (b) you download to a device and then sync the device, in which case it transfers the new download to your library - but, as happened to you, deletes it from your idevice.
    Retcicking and resyncing will add the item back on next sync.
    Don't forget that whenever making any kind of manual change to hit Apply and resync, to stop changes being lost.
    However, and i cannot stress this enough, iTunes is very problematic, especially when handling large collections.  Its sync operations can be erratic or non-functional at times (even buggy perhaps)
    If all options fail, then go to your program installation control folder (Control panel\Programs etc on windows) and select to repair iTunes.
    And if you have not already got it
    http://help.apple.com/ipad/5/interface/  the ipad manual (not the used guide - this is more about how it operates)
    may prove usefiul to you.
    Best wishes, Ct

  • I have an iPad 2, and I am sending PDF file to my iPad, via a Hotmail email. But, the PDF arrives to the iPad in Mail already opended, as a picture on the bottom of the email. Is there a way to prevent it from auto open, so I can open with iBooks instead?

    I have an iPad 2, and I am sending PDF files to my iPad, via a Hotmail account. But, the PDF arrives to the iPad Mail account already opened at the bottom of the email. Is there a way to prevent this auto-opening of the PDF. I've seen screen shots with the box, and PDF listed inside the box, but mine open automatically. I want to get them into iBooks...?

    I am having the same problem and it is even bigger.
    When opening a 1-page PDF in iBooks and sending it via mail it is sent inline as preview, but the recipient cannot open the file anymore. Also on iPad and iPhone there is no "open in" possible.
    Somehow the mail app does destroy the file. What is going wrong?

  • How do I get my PDF files onto my ipad

    I spoke to apple in February and they helped me put ove a hundred PDF files onto my ipad.  When I open acrobat under the heading of documents is where all the files reside. I even made subfolders. Well, I forgot how to do it and called apple again today and they told me with the new ibook update, all pdf files get placed under ibooks. not only that, I cannot make subfolders.  Their only suggestion was to get an account with acrobat and transfer them that way.  I uploaded the files here, but now I cannot figure out how to get them onto my ipad.  Any help would be appreciated.
    Jim

    You can either select GoodReader at the bottom of the iPad's apps tab when connected to you computer's iTunes - it should appear as one apps that support file sharing (there is info on file sharing in the manual which can be downloaded from here http://support.apple.com/manuals/#ipad). Or the app itself supports wifi transfer via you wifi network - just touch the wifi symbol (next to the camera) at the bottom of the app on your iPad, and you should be given an address to use on your computer's browser so as to transfer files to/from the app.

  • Error while opening PDF file downloaded  from database Blob column

    Hi All,
    I am working on jdev 11.1.1.4.0.
    In my use-case I am using filedownload Actionlistner on a link to get the PDF file stored in the database in blob field. These files are being uploaded from other use-case in adf only.
    After getting the dialog box to open/save/cancel for the PDF file when i click on open then i am getting an error *'Adobe Reader could not open 'abc.pdf' because it is either not a supported file type*
    or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly docoded)' for some files , and to my surprise I am able to open some files.
    When I open these PDF files separately from desktop I am able to view the content of each and every file in adobe reader.
    I dont know where the problem exactly lies , while uploading/downloading the file . Any ideas/thoughts to resolve this issue?
    Thanks
    Kanika

    Thanks a lot Timo...!!!
    I checked the PDF file downloaded directly from the blob column in DB, there only it is corrupted so must be the problem in uploading the file. I am checking the code line by line,, but no problem in setting the file content type,size etc.
    Here is the code snippet ..
    byte[] buff;
    buff = new byte[(int)length]; -- Length is the file size
    int bytesRead = is.read(buff);
    for (int i = 0; bytesRead < buff.length; i++) {
    // int b = is.read();
    int b = is.read();
    if (b == -1)
    break;
    buff[i] = (byte)b;
    BlobDomain blobDomian = new BlobDomain((buff));
    TestVORow = (TestVORow Impl)TestVO.createRow();
    if(blobDomian != null) {
    TestVORow.setAttachment(blobDomian);
    am.getTransaction().commit();
    This seems to be Ok to me..the same issue, file is still corrupting.
    Any thoughts from your side ???
    Thanks
    Kanika
    The problem is resolved.
    Changes made are instead of
    InputStream is;
    used ... BufferedInputStream bis ;
    and after
    for (int i = 0; bytesRead < buff.length; i++) {
    // int b = bis.read();
    int b = bis.read();
    if (b == -1)
    break;
    buff[i] = (byte)b;
    bis.close(); // use this close bufferedInput Stream.
    Able to open each and every file now..Thanks for your suggestions Timo and Frank.
    Edited by: Kanika on Mar 6, 2012 3:15 AM

  • How to open hyperlink of PDF file uploaded at SharePoint(hosted at Office365) in 'Adobe Acrobat' for annotation and comments.

    Hi,
    I've a hyperlink of PDF file which is uploaded under SharePoint Document library(hosted at Office365 E1) on my custom '../SitePages/Approver.aspx'. Once user click on that hyperlink it should ask me to "Check-Out & Open' pdf file directly from sharePoint document library then it should automatically gets opened into 'Adobe Acrobat' where user will do some annotation/ comments in that pdf file & again 'Check-In' back his changes to SharePoint Document library.
    Following article will explain how I want to Check-In & Check-Out  pdf files from SharePoint document library once i click hyperlink on my '../SitePages/Approver.aspx' page.
    acrobatusers.com/tutorials/how-to-work-with-sharepoint-and-office-365
    Please let me know how to achieve this functionality using office 365.
    Your assistance would be greatly appreciated as this is top-priority requirement for us.
    Yours sincerely,
    Mahesh Sherkar
    [signature deleted by host]

    For instance, the forms.conf file:
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "D:\Oradev/forms/java/$1"
    # Virtual path for JInitiator downloadable executable and download page
    AliasMatch ^/forms/jinitiator/(..*) "D:\Oradev/jinit/$1"
    # Virtual path for runform.htm (used to run a form for testing purposes)
    AliasMatch ^/forms/html/(..*) "d:\oradev/tools/web/html/$1"
    # Virtual Path for icons
    AliasMatch ^/forms/icons/(..*) "d:\icons/$1"
    ...you can move your files in one of the existing physical directories - e.g: d:/icons - and call them with the following:
    Web.show_Document('/forms/icons/document.pdf','_blank');But you can also add your own virtual/physical directory:
    # Virtual Path for documents
    AliasMatch ^/forms/documents/(..*) "d:\documents/$1"
    ...with the following code:
    Web.show_Document('/forms/documents/document.pdf','_blank');Francois

  • Is it possible to hear a soundtrack in a pdf file with an iPad ?

    Is it possible to hear a soundtrack in a pdf file with an iPad ?

    Sorry, but Reader for iPad or iPhone does not yet support sound or video.
    You should get PDF Expert from Readdle. It costs US$9.99 but it's a much better reader, and, among other great features, supports multimedia.

  • I'm using iphone 4S, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. can someone help.

    I'm using iphone 4S and ipad mini, and I can not open PDF file only from my husband email that using Mic outlook. It was very weird because I can received other email with pdf file from other people. Can someone help...
    Thanks in advance

    Hi Eidda,
    This may because the attachment is a winmail.dat file. I would recommend taking a look at the article below for more information. Note: the article is written for OS X mail, but does also apply to this situation.
    Mac OS X Mail: What is a winmail.dat attachment?
    http://support.apple.com/kb/HT2614
    -Griff W.

  • Using Oracle "Import PDF" Extension in Open Office Draw to Edit pdf Files

    I am a fairly new Mac user with OS X 10.6. For several months, I have been trying to find something which would edit pdf files better than Preview does (for example, the content of a text box in Preview can only be "center aligned"). Skim and FormulatePro were two options I tried that were improvements over Preview in many respects, but wouldn't let me paste an image onto my pdf (such as, for example, if I wanted to put my digital signature on a document).
    Then, I "discovered" the Oracle PDF Import Extension which I had installed in Open Office months ago, but hadn't really used. By "discovered," I mean I read on somebody's blog that you could use Open Office Draw to edit pdf files and I thought, "Hey, I wonder if that would work with my setup." (Boy, do I feel stupid.)
    I have just started using this functionality, but in just an hour or so of playing around, I have found that it has far exceeded my expectations and, even, my immediate needs. Besides giving you (a) all the control over text and text boxes that you would expect from, say, a word processing program and (b) allowing you to paste images onto your pdf, Open Office Draw also includes layers!
    The layer function threw me off for a bit, because, at first, I kept finding that my attempts to edit the document resulted in grabbing the raster image and moving it "off" of the underlying text layer (a function, I will admit, that I think will be worth exploiting someday, but wasn't what I was looking for at the moment). Then, I discovered that you can "lock" the layer so as to prevent this annoying occurrence. To create your edits, simply create a new layer (call it "MyEdits" or whatever you want) and you're in business.
    Anybody who has done anything more than drawn a couple of lines and boxes on a page has discovered that editing the overlapping objects can be a real pain - if not an outright impossibility. Separating these overlapping objects through the use of different layers solves the problem.
    The only downside to the use of Open Office Draw as a pdf editing tool that I can see is that you must import the pdf, save your edits in odg format, and then export it to pdf when you're done. I know that we would all like to have the capability of doing everything I just described directly to the native document, but, hey, for all the functionality I have been searching the internet for weeks to find, I think it's a reasonable trade off.

    Try turning off protected mode.

  • Issue with opening PDF file link from Safari

    Hi Everyone,
    I got a problem with opening PDF file link from Safari 4.04. Instead of getting a normal pdf content, it shows some weird characters. Not sure it is something wrong with Adobe Reader Plugin or Safari?
    I have uploaded a screenshot of the issue in the adobe forum (http://forums.adobe.com/thread/531870). Please help!
    Many Thanks,
    John

    There's nothing wrong, except the fact that you have Adobe Reader installed. You don't need it, so get rid of it; it will only cause problems with Safari. What you're seeing is the contents of the PDF file, rather than having it displayed.
    If you want to download a PDF file, you can either Control-click on the link and choose "Download Linked File As…", or you can Option-click on the link for the file and it will be downloaded to your Download folder (usually your Desktop).
    If you want to view a PDF file in Safari, you don't need Adobe Reader; Safari is perfectly capable of doing this by itself and has been for years. Adobe Reader will only get in the way and slow everything down.

  • PDF file in my iPad

    Dear,
    When I download a PDF file to my iPad from an email or from PC. the PDF file word appeared like a dark lines (black lines) and can not see any words. while the original PDF file is perfect.
    I installed PDF expert application but no improvement
    Looking for your support
    Thank you
    Moheesen
    [email protected]

    Since the iTunes update 11.1.3 this should happen automatically!
    P. Bowden

  • Cannot open a password protected PDF file on my ipad

    WHy can't I open a password protected PDF file on my ipad even after I enter my password.

    Someone on another forum said you can with the app Goodreader Lite, but I haven't gotten to try it yet. I will let you know in about 45 minutes.
    P.S: Or this sounds even better - http://discussions.apple.com/thread.jspa?messageID=11780778&#11780778
    Message was edited by: compwiz1202

  • I do not get a readable or editable PDF file that has been converted to Microsoft Word.

    In the past I have been able to convert PDF files to MicroSoft Word, and Edit and Save the Documents. Now, the converted files are unreadable and uneditable. How do I correct this problem?

    Thanks for the email, Stacy!
    I don't have an old PDF file that I converted to MicroSoft Word, however the new file that I am trying to convert and edit is the same kind of file that I've converted and edited before; An Invoice from the same Company. Is there a possibility that a download, MicroSoft Compatibility Pack for the 2007 Office System, onto MicroSoft Windows XP Home Edition Version 2002 computer might be causing the problem? Should I download to (.doc) or (.docx)? Any help will be greatly appreciated!
    Thanks,
    Joseph Renn Little
    Date: Fri, 21 Mar 2014 08:48:32 -0700
    From: [email protected]
    To: [email protected]
    Subject: I do not get a readable or editable PDF file that has been converted to Microsoft Word.
        Re: I do not get a readable or editable PDF file that has been converted to Microsoft Word.
        created by StacySison in Adobe ExportPDF - View the full discussion
    Hi Joseph,
    I'd like to assist!
    Have you tried converting one of your old PDF's that have worked in the past to see if it still works?
    Are these files scanned to PDF files?
    You may want to try utilizing the OCR solution.
    Let me know if that works.
    Looking forward to hearing back from you!
    Kind regards, Stacy
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6231210#6231210
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6231210#6231210
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6231210#6231210. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe ExportPDF at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How can I save a pdf file on my ipad so I can view it later

    I want to be able to view a pdf file on my ipad when I do not have access to internet but I can't seem to save it on my ipad

    You need an app into which it can be saved. Download iBooks or Adobe Reader which are both free in the App Store, then you can save the PDF files into one of those apps. I prefer Adobe Reader because you can annotate, highlight, rename create folders, add your signature and do some other things that you cannot do with iBooks.
    After you download one of those apps, tap the PDF file in order to open it, than tap on the screen somewhere in order to make the sayer icon appear in the upper right corner. Tap the share icon and then select Open In iBooks or Adobe Reader from the resulting pop up window. That will save the file to the app.

Maybe you are looking for

  • Pp reports ( standard)

    hi sap gurus, i am implementation on MTO scenario of pipe & euipment manuf.industieries so i want infirmation about pp reports and where i get , my client wants following reports so plz tell me how i got fron sap standard or to make from abapers. dai

  • From Transaction FB60 values are not transferred to RFC

    Hi, We are working for integration of R/3 and 3rd Party Tax package. We are trying to pass the values from Trans FB60 & FB70 to the user exit EXIT_SAPLFYTX_USER_001. But it is not capturing after applying the OSS note 575644. Your help is appreciated

  • Just a Performance Question on BumbleBee

    I use Bumblebee and have ran a few SIMPLE tests. Every time I run them, using "primusrun" performs slower than "optirun". In my bumblebee.conf, the Bridge mode is set to "auto". Is that causing the issue? From what I've read, primus is supposed to be

  • Transportation Cost Split

    Hello friends!   Please, I would like to ask for some expert advice on the following issue:   My scenario is: I'm implementing SAP ERP (ECC 6.00) at a LSP (Logistcs Service Provider). The customer owns trucks and each truck is divided in two separate

  • Training, should I go for 9i or 10g?

    Hi All, I have been using various Open Source RDBMS's for a while and I would like to get some Oracle training under my belt. My question is, should I focus my learning path on 9i or 10g? I have looked at the education section of Oracle's site and th