File conversion docx to viewable document

Just signed up, uploaded a .pdf file for conversion.  Now, how di I get file on my drive to view and edit?

HI,
I am moving your posting at Acrobat.com forum to ExportPDF forum.
Hisami

Similar Messages

  • I receive an error message when submitting a pdf file for conversion to a Word document "... an unex

    I receive an error message when submitting a pdf file for conversion to a Word document "... an unexpected error has occurred..."   - is there a way to overcome this error?

    I received your Scan.pdf sent to [email protected] and had no problem to convert it via Export PDF service. Could you try again?
    Jyh-Jiun Liou

  • When combining files, conversion keeps failing with red notice that the document if password protected. What does that mean and what do I do?

    When combining files, conversion keeps failing with a red notice that the document is password protected. I was combining all pdf files and had just been successful with some of the same content under a different file name. What is wrong and how do I correct it?

    Hey SUSANO,
    I am sorry but you cannot combine files if they are password protected.
    You can check the same under 'File > Properties> Security
    Regards,
    Anubha

  • How to convert .doc files to .docx in a sharepoint library programmatically.

    Is there any possibility to Convert .doc files to .docx in a sharepoint document library.
    I have thousands and lakhs of .doc files and I need to automate to convert those .doc files to .docx with an automation script or powershell script or doing it programmatically.
    Can someone help me get through this.
    Thanks
    Gayatri

    Hello Gayatri,
    You can convert files from doc to docx using following options
    Option 1 
    in bulk using  Office File Converter (OFC) and Version Extraction Tool. Please refer below url for reference - http://technet.microsoft.com/en-us/library/cc179019.aspx
    Option 2 - PowerShell
    please refer url -http://blogs.msdn.com/b/ericwhite/archive/2008/09/19/bulk-convert-doc-to-docx.aspx
    Convert DOC to DOCX using PowerShell
    I was tasked with taking a large number of .DOC and .RTF files and converting them to .DOCX. The files were then going to be imported into a SharePoint site. So I went out on the web looking for PowerShell scripts to accomplish this. There are plenty to
    choose from.
    All the examples on the web were the same with some minor modifications. Most of them followed this pattern:
    $word = new-object -comobject word.application
    $word.Visible = $False
    $saveFormat = [Enum]::Parse([Microsoft.Office.Interop.Word.WdSaveFormat],”wdFormatDocumentDefault”);
    #Get the files
    $folderpath = “c:\doclocation\*”
    $fileType = “*doc”
    Get-ChildItem -path $folderpath -include $fileType | foreach-object
    $opendoc = $word.documents.open($_.FullName)
    $savename = ($_.fullname).substring(0,($_.FullName).lastindexOf(“.”))
    $opendoc.saveas([ref]“$savename”, [ref]$saveFormat);
    $opendoc.close();
    #Clean up
    $word.quit()
    After trying out several I started to convert some test documents. All went well until the files were uploaded to SharePoint. The .RTF files were fine but even though the .DOC fiels were now .DOCX files they did not allow for all the functionality of .DOCX
    to be used.
    After investigating a little further it turns out that when doing a conversion from .DOC to .DOCX the files are left in compatibility mode. The files are smaller, but they don’t allow for things like coauthors.
    So back to the drawing board and the web and I found a way to set compatibility mode off. The problem was that it required more steps including saving and reopening the files. In order to use this method I had to add a compatibility mode object:
    $CompatMode = [Enum]::Parse([Microsoft.Office.Interop.Word.WdCompatibilityMode], “wdWord2010″)
    And then change the code inside the {} from above to:
    $opendoc = $word.documents.open($_.FullName)
    $savename = ($_.fullname).substring(0,($_.FullName).lastindexOf(“.”))
    $opendoc.saveas([ref]“$savename”, [ref]$saveFormat);
    $opendoc.close();
    $converteddoc = get-childitem $savename
    $opendoc = $word.documents.open($converteddoc.FullName)$opendoc.SetCompatibilityMode($compatMode);
    $opendoc.save()
    $opendoc.close()
    It worked, but I didn’t like it. So back to the web again and this time I stumbled across the real way to do it. Use the Convert method. No one else seems to have used this in any of the examples but it is a much cleaner way to do it then the compatibility
    mode setting. So this is how I changed my code and now all the files come in to SharePoint as true .DOCX files.
    $word = new-object -comobject word.application
    $word.Visible = $False
    $saveFormat = [Enum]::Parse([Microsoft.Office.Interop.Word.WdSaveFormat],”wdFormatDocumentDefault”);
    #Get the files
    $folderpath = “c:\doclocation\*”
    $fileType = “*doc”
    Get-ChildItem -path $folderpath -include $fileType | foreach-object
    $opendoc = $word.documents.open($_.FullName)
    $savename = ($_.fullname).substring(0,($_.FullName).lastindexOf(“.”))
    $word.Convert()
    $opendoc.saveas([ref]“$savename”, [ref]$saveFormat);
    $opendoc.close();
    #Clean up
    $word.quit()

  • Sender File adapter File Conversion with key fields

    Please help me guys, I already spent way too much time on this!
    I checked a couple of BLOGs and I think I'm doing the right thing except I'm not getting the result I would expect.
    I'm trying to create an IDoc using the from a flat file.
    I get the following error:
    During the application mapping com/sap/xi/tf/_MM_TEST_ a com.sap.aii.utilxi.misc.api.BaseRuntimeException was thrown: RuntimeException in Message-Mapping transformatio~
    The Source file is this:
    H
    L0015
    The file adapter does create the XML below (looks fine):
      <ns:MT_SINGLE xmlns:ns="http://PPSC_TO_BO_INVOICE">
      <HEADER>
         <ID>H</ID>
      </HEADER>
      <LINE>
         <ID>L</ID>
         <SITE>0015</SITE>
      </LINE>
      </ns:MT_SINGLE>
    When I test the map in IR, with the XML that this file adapter created (above) it works fine!
    Also if I take away the HEADER from the source structure everything works fine and I can create the IDoc, therefore I think something must be wrong in the file conversion, the mapping is so simple there is nothing to fail there.
    The file conversion parameters that I have:
    Document Name: MT_SINGLE
    Document Namespace: http://PPSC_TO_BO_INVOICE
    Document Offset:
    Recordset Name: 
    Recordset Namespace:
    Recordset Structure: HEADER,1,LINE,*
    Recordset Sequence: Ascending
    Recordset per Message:
    Key Field name: ID
    Key Field Type: String (Case-Sensitive)
    LINE.fieldNames: ID,SITE
    LINE.fieldFixedLengths: 1,4
    LINE.keyFieldValue: L
    HEADER.fieldNames: ID
    HEADER.fieldFixedLengths: 1
    HEADER.keyFieldValue: H
    What am I doing wrong???
    Any help is much appreciated.
    Thanks,
    Viktor Varga

    Hi Viktor,
    Basic rules:
    1. Down load XML payload(output From Adapter) and test it in IR mapping program. If it is working there is no reason why it will fail in Runtime. Also Check Cache is up to date.
    Generally the problem lies with namespace.
    Hope this helps
    Regards,
    Satish

  • PDF file Conversion

    Hello Friends,
    In SAP, SOST Transaction, we can see the pdf document of delivery, but when send to the customers by email, the pdf file doesn't open at customer end.SOST sends this
    It gives the file conversion error.
    What we can do from developer's perspective to solve this ?
    Is this a ABAP issue?
    Regards
    Prashant

    MOVE p_spoolno TO lv_spoolno.
    * CONVERT THE SPOOL TO PDF
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid                    = lv_spoolno
          no_dialog                      = lc_no_dialog
    *     DST_DEVICE                     =
    *     PDF_DESTINATION                =
       IMPORTING
         pdf_bytecount                  = lv_bytecount
    *     PDF_SPOOLID                    =
    *     OTF_PAGECOUNT                  =
    *     BTC_JOBNAME                    =
    *     BTC_JOBCOUNT                   =
       TABLES
         pdf                            = gt_pdf_output
       EXCEPTIONS
         err_no_otf_spooljob            = 1
         err_no_spooljob                = 2
         err_no_permission              = 3
         err_conv_not_possible          = 4
         err_bad_dstdevice              = 5
         user_cancelled                 = 6
         err_spoolerror                 = 7
         err_temseerror                 = 8
         err_btcjob_open_failed         = 9
         err_btcjob_submit_failed       = 10
         err_btcjob_close_failed        = 11
         OTHERS                         = 12
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
    * Transfer the 132-long strings to 255-long strings
        LOOP AT gt_pdf_output INTO wa_pdf_output.
          TRANSLATE wa_pdf_output USING ' ~'.
          CONCATENATE v_buffer wa_pdf_output INTO v_buffer.
          MODIFY gt_pdf_output FROM wa_pdf_output.
          CLEAR wa_pdf_output.
        ENDLOOP.
    TO CONVERT THE DATA INTO PDF FORMAT ELSE THE PDF FILE*
    WON'T OPEN & REPORT WOULD GIVE A MESSAGE THAT*
    THE FILE IS DAMAGED & COULD NOT BE OPENED*
    TRANSLATE v_buffer USING '~ '.
        CLEAR : wa_messg_att,
                gt_messg_att.
        DO.
          wa_messg_att = v_buffer.
          APPEND wa_messg_att TO gt_messg_att.
          SHIFT v_buffer LEFT BY 255 PLACES.
          IF v_buffer IS INITIAL.
            EXIT.
          ENDIF.
          CLEAR wa_messg_att.
        ENDDO.
      ENDIF.

  • File Conversions with API...!

    Hi guys...!
    I'm searching for a file conversion product that comes with an API, which will enable programmers or developers to integrate it in their program.
    The product must be able to convert PDF, HTML, Excel, Access, Power Point, and Word into a text document. Most of the product that I found do not come with an API.
    Does anyone know a good product that does that...?
    Any suggestion will be welcome....!
    Thanks...

    Would you please btw describe how you want to convert
    a Powerpoint presentation to a txt file?No problem:---------------------------------------------------------------------
    | fancy background fancy background fancy background fancy background |
    | fa+-------------+fancy background fancy background fancy background |
    | fa| little info |fanc <================= KAPWING!  fancy background |
    | fa+-------------+fancy background fancy background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy backgroun+-----------------------------------+ ncy background |
    | fancy backgroun| Very important wahwahwah title    |ancy background |
    | fancy backgroun|           (c) some marketeer      |ancy background |
    | fancy backgroun+-----------------------------------+ancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy backgr *PLING!!  background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy background fancy background fancy background |
    | fancy background fancy background fancy background f+-----------+nd |
    | fancy backgro ZOOOOOFFFF! ======================>d | funky logo |nd |
    | fancy background fancy background fancy background f+-----------+nd |
    ---------------------------------------------------------------------kind regards,
    Jos

  • File conversion to word - uploading is showing but nothing is happening

    Hi
    Iv'e just purchased the online file conversion to word, i've just logged in and the adobe reader document shows it's updloading file to Adobe Export PDF online but it's taking ages and doesnt' seem to be working.
    My boss needs this done super urgent - can you please???

    I do not know what the problem is; it's possible that there is a problem with the ExportPDF server?
    If it's super urgent, what I would do is download the free trial of Acrobat Pro, and run the conversion with Acrobat for now.
    [topic moved to ExportPDF forum]

  • File Conversion to File Conversion Scenario..

    Hi,
    I am doing a File Conversion to File Conversion scenario. Hope its clear..
    Well in this scenario my structure is
    <File2File_Conversion_Sender_MT>
    <Employee>
    <id>aa</id>
    </name>sas</name>
    <Employee>
    <File2File_Conversion_Sender_MT>
    In sender:-
    Wat will be the document name?
    Recordset name?
    Recordset structure?
    In receiver:-
    Recordset structure?
    Let me know if any more clarification is needed.
    thanks
    Anju

    Hi Anju,
    Use this :
    Document Name : File2File_Conversion_Sender_MT (this is Outbound Message Type)
    Document Namespace : NAmespace of outbount Message Type.
    Recordset Structure : Employee,*
    Name----
    Value
    Employee.fieldSeparator -
    >   ,
    Employee.endSeparator -
    >  'nl'
    Employee.fieldNames    -
    >  id,name
    ignoreRecordsetName   -
    > true
    Go through this :
    /people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    Thanks,
    Maheshwari.
    Message was edited by:
            Maheshwari Morbale

  • AutoVue server does not support file conversion

    We've developed the ISDK for viewing the files and it's working fine. As the next step, it's required to use AutoVue Web Services to convert the files to pdf and jpeg formats.
    I've deployed the AutoVueWS.war and VueServlet.war files in our application server and ping method works fine. But the 'Convert' method in web services gives below error.
    javax.xml.ws.soap.SOAPFaultException: convert failed:File conversion not supported. ConvertOption[|Format:PDF|ScaleType:TYPE_SIZE|ScaleFactor:0|Width:800.0|Height:600.0|PageType:RANGE|FromPage:1|ToPage:1|ColorDepth:-1|FileName:c:/output/readme.txt-1357634753084.1.PDF|StepsPerInch:0.0|CameraView:NONE]
         at com.sun.xml.internal.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:178)
         at com.sun.xml.internal.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:111)
         at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:108)
         at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
         at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
         at $Proxy32.convert(Unknown Source)
         at autovuewsclient2.AutoVueWSClient2.main(AutoVueWSClient2.java:50)
    The client code is as below.
    VueBeanWS_Service service = new VueBeanWS_Service();
    //create proxy
    VueBeanWS proxy = service.getVueBeanWSPort();
    //call autovue ping Web method
    System.out.print (proxy.ping("Hello from Java") );
    //Call the convert Web method.
    try{
    ConvertOption option = new ConvertOption();
    option.setFormat(Format.PDF);
    option.setPage(1);
    option.setScaleType(ScaleType.TYPE_SIZE);
    option.setHeight(600);
    option.setWidth(800);
    String URI = "http://wordpress.org/extend/plugins/about/readme.txt";
    byte[] file = proxy.convert(URI, option, null, false);
    FileOutputStream fos = new FileOutputStream("c:/temp/output1.pdf");
    fos.write(file);
    fos.close();
    catch(Exception e){
    e.printStackTrace();
    File in the above URI is downloaded to the AutoVue Server properly. But the conversion is failed.
    Please help me to solve this error.

    Hi,
    To convert files to PDF format, AutoVue uses a built-in proprietary PDF print driver called the AutoVue Document Converter. The above error may occur if this print driver is not properly installed. To install the AutoVue Document Converter print driver, execute the InstallPdfPrintDriver.exe program from your AutoVue installation directory. Before proceeding with the install make sure the "Print Spooler" service is started.
    Here are the necessary steps in order to enable the "Print Spooler":
    1. Go to Start > Settings > Control Panel > Administrative Tools.
    2. Select Services.
    3. Select the "Print Spooler" service and make sure to start it.
    4. Try to install the AutoVue Document Converter print driver.
    Thanks,
    Daniel

  • I downloaded the adobe XI software and it shows in my Adobe download assistant as downloaded but I can not open it and it is not a part of my applications. Very frustrating download process as I just want to convert a PDF file to an editable word document

    I downloaded the adobe XI software and it shows in my Adobe download assistant as downloaded but I can not open it and it is not a part of my applications. Very frustrating download process as I just want to convert a PDF file to an editable word document...

    Odonnells52 you will still need to install Adobe Acrobat Professional prior to being able to make edits to PDF or utilize Acrobat.   By default the installation files have been saved to your download folder.
    If you continue to face difficulties with the Adobe Download Assistant then please see Troubleshoot Adobe Download Assistant.
    You can also download the installation files directly from Download Acrobat products | Standard, Pro | XI, X if you are unable to locate the downloaded installation files.

  • Advice needed - .vob file conversion for playing on itouch

    help needed and advice on best application for dvd/movie file conversion.
    i want to convert .vob file so i can transfer to ipod.
    seems like there are several free & pay for app's out there - any guidance as to which is the best would be appreciated.
    thanks in advance

    chriswalsh wrote:
    .. i want to convert .vob file so i can transfer to ipod.
    haven't tried for vob, but a nice lil' tool:
    http://thelittleappfactory.com/evom/
    another well-known converter, esp for DVD>>Apple-toys-usage is
    http://handbrake.fr/ (don't worry, english spoken)
    note to Mods: the latest version is NO ripper (=DRM-override), but a converter..
    both free, no additional installs needed..

  • Is there any way to reset the file type to "Adobe Acrobat Document" rather than "pdf file"?

    An update from WordPerfect automatically installed Foxit on my computer without warning me.  I uninstalled it and reinstalled CS5 and Acrobat 11 but when I look at a list of files in Windows Explorer, all of my PDF files are simply listed as "PDF file" rather than "Adobe Acrobat Document".  I rely on the Adobe name to get my PDF listed at the top of list of files when I sort by document type for something that I need to do 4 or 5 times a day.  Having it buried under "PDF" is causing lots of errors.
    I've tried searching the registry but can't find anything that would make this change.  I know it's related to the computer because when I use my laptop to view the same folder on the desktop, the laptop shows the files as "Adobe Acrobat Document".  I just don't know where to look to fix this.
    Any help would be very much appreciated.
    Thanks,
    GiGi

    I have already reinstalled both Adobe Reader and the full version of CS5 which includes Adobe Pro.  Neither of those steps worked. 
    Thanks,
    GiGi

  • With my taking any action, my folders and files no longer appear under documents (under Places). Now a folder titled Documents has appeared on my desktop with all my files and folders. What happened?What happened?

    With my taking any action, my folders and files no longer appear under documents (under Places). Now a folder titled Documents has appeared on my desktop with all my files and folders. What happened?What happened?

    The way I moved from 10.3.9 to 10.5.8 was to use "ditto -rsrc" and copy the user homes and the data share to an external firewire drive. Then did the same in reverse.
    I found the key to data and share permissions to make sure that the users had the same UID in Leopard that they had in Panther.
    You can then use "sudo rm -rf" to remove any folder from the relocated homes that you want. Remember if you do choose to remove "~/Library" from each users relocated home, you will be removing any iCal calendars, login.keychains, browser bookmarks, custom screensavers and wallpapers, etc.
    Users don't really care if they can login and do any work. But there will be much wailing, gnashing of the teeth, and anxiety, if they lose their bookmarks and wallpaper.

  • As I like open a file it coms message This document cannot be open because is it too old. First open by Pages 09 What I have to do?? I do not have Page 09 any more.

    As I like open a file it coms message 
    "This document cannot be open because is it too old. First open by Pages 09"
    What I have to do?? I do not have Page 09 any more. I've got Pages Vers.5.0.1

    I suspect you have created the documnet's in Pages 08 or earlier. Do you have the iWork 08 DVD so you can install it? Then update to from this link Pages 08 3.0.3  Use it for you older documents and use Pages 5 only for new documents.

Maybe you are looking for

  • How do I export bookmarks in 3.6.6. Exporting via the Boomarks menu does NOT work.

    <blockquote>Locked by Moderator as a duplicate/re-post. Please continue the discussion in this thread: [tiki-view_forum_thread.php?comments_parentId=710076&forumId=1] Thanks - c</blockquote> == Issue == I have another kind of problem with Firefox ==

  • JComboBox with Generics

    Hi, I have a class with two fields/propertys. Like this: public class TestClass {      private string myCode = "";      private string myDescription = "";      public TestClass (String Code, String Description) {           this.myCode = Code;        

  • Backing Up Catalogs

    When i attempt to back up my catalog to an external hard drive, I get to 64% backed up and then elements becomes unresponsive. This happens each and every time I attempt a backup. I am running windows 7 and photoshop elements 11. Please Help.

  • Limited Access - can't load web pages

    Although I am connected to the internet, web pages won't load. Trouble-shooting, it says I have "limited access" (I've tried both hard wire and Wife - same deal, no go). Thought it might be my ISP, so I was on the phone with AT&T support and we ran t

  • Contact photo question

    In the tv ad's for both the first gen and the 3G when a call is recived the added photo displays as a small picture in the upper right corner with the wallpaper still displayed..I like that. my phone will display the contact photo covering the whole