How to download word document

HOw to down load word document ?

Download from where? I generally find that it's easiest to just email documents to myself and open them in a compatible app on my iOS device.

Similar Messages

  • How can i view a downloaded word document in pages?

    how can i view a downloaded word document in pages?   i tried to download a file, which worked, but i can't view it since i don't have word office

    Not sure what you are saying but Pages just opens Word documents, drag the Word document onto Pages' icon.
    Or open the Word document from the Open dialog.
    If you are talking about testing a Word document after you have exported it from Pages then you will need of course to have Word to open it but there are free clones of Word as well such as LibreOffice, Openoffice and Neoffice that will do that as well.
    Peter

  • How to read word document in pl/sql

    How to read word document which is stored as BLOB column in table.
    I want to read it word by word.Please explain me how to raed using DBMS_lob
    package and substr,instr.

    You cannot. A Microsoft Word document is in a proprietary binary format. You cannot treat it as a text file and read "word-by-word" from it.
    As for examples - refer to the [url http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14258/toc.htm]Oracle® Database PL/SQL Packages and Types Reference manual. It describes DBMS_LOB and its usage in detail.

  • How to open word document form html container url iam getting internal_error while opening file

    Hi all,
    By using below code i am able to download word document file from html container. But before downloading i need edit these document to add Macro.
    I am unable to open word document.
    CREATE OBJECT G_HTML_CONTAINER
          EXPORTING
            CONTAINER_NAME = 'PDF'.
       CREATE OBJECT G_HTML_CONTROL
          EXPORTING
            PARENT = G_HTML_CONTAINER.
    * Convert xstring to binary table to pass to the LOAD_DATA method
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            BUFFER     = LV_CONTENT
          TABLES
            BINARY_TAB = LT_DATA.
    data_tab = LT_DATA ).
    * Load the HTML
        CALL METHOD G_HTML_CONTROL->LOAD_DATA(
           EXPORTING
             TYPE         = 'application'
             SUBTYPE      = 'DOC'
           IMPORTING
             ASSIGNED_URL         = LV_URL
           CHANGING
             DATA_TABLE           = LT_DATA
           EXCEPTIONS
             DP_INVALID_PARAMETER = 1
             DP_ERROR_GENERAL     = 2
             CNTL_ERROR           = 3
             OTHERS               = 4 ).
    * Show it
        CALL METHOD G_HTML_CONTROL->SHOW_URL( URL = LV_URL
          IN_PLACE = 'X' ).
    Before file download i want edit the file for that i am using below class.
    PROXY TYPE REF TO I_OI_DOCUMENT_PROXY.
    by using (get_document_proxy) method  getting proxy .
    call method control->get_document_proxy
    exporting
    document_format   = 'x'
    document_type      = 'Word.Document'
    register_container  = 'x'
    importing
    document_proxy     = proxy
    after these.
    call method proxy->open_document
    exporting
    document_url    = lv_url
    open_inplace    = 'x'
    hear i m getting retcode as INTERNAL ERROR
    can any one suggest me how to open document from html container.
    Thanks and reagards
    jogu yadav

    I got resolution
    Thanks and regards,
    Jogu yadav

  • I cannot download word documents. Error message says assocated helper application does not exist.

    Tried downloading word document from email. error message Associated helper application does not exist

    To open a document you must have installed an Android application for it. The file is downloaded but can be opened with Firefox, but with the specific app from Android.
    Try installing a documents app and for sure it will work.

  • How to upload word documents in iphone?

    Hello, I need to give a talk and I dont have printer... I should use the iphone, but I dont know how to read Word documents in the iphone... Someone can help me?

    Apple has a paid  app called Pages.  I have never used it but I guess it will open Word documents and might even allow you to store them on your phone maybe in ibooks or somewhere

  • Problem in Downloading Word Document of very huge size

    Hi Folks,
    I upload a word document of 5 MB size to the server. I do hexencoding before
    I upload. The problem is when i try to download the file from the server it
    goes on parsing the document and it does'nt stop. It is getting stuck in
    the while loop. I am using BufferedInputStream for reading the data and
    storing it in a String. Even the CPU utilization stays at 100% in Task Manager.
    Can any of you Suggest a solutation? Should I replace BufferedInputStream with
    some other class.
    Thanks in advance.
    -deena

    No wonder it takes long or even seems that it hangs... Your going to use incredible amount of memory within that loop. First of all you recreate your buffer every time, but then you create new string of it, and then concat it to other, which will again create new string. Stringbuffer will probably help, but it's still a waste.
    try this:
    byte inbuffer[]=new buffer[BUFSIZE];
    byte outbuffer[]=new buffer[BUFSIZE/2];
    int readed;
    while ( (readed=in.read(buffer))!=0)
       hexEncode(outbuffer, inbuffer, readed); // or whatever way you do it
       out.write(outbuffer, 0, readed); // or whereever you want to put the data
    }Anyway the idea is to use common input and output buffer so memory isn't wasted. This is based on a fact that InputStreams read suplied only with byte[] argument read's as much as possible from stream and return the amount of bytes read.

  • How to convert word documents to html page in sharepoint online 2013

    Hi,
    I am new SharePoint and still learning it.
    I have been tasked to do the following on office 365 E3 SharePoint 2013 Online edition.
    1) I have to create a Web page in asp.net
    2) This page needs to show document from a given SharePoint folder and bind them in a grid or dropdown on the asp .net web page
    3) On selecting the document from the drop down or gird (on asp .net webpage), I need to show the SharePoint word document as HTML on the webpage (something like word to html) Note: These SharePoint word document may contain Images, bullets, tables etc. 
    What I have been able to do till now
    1) I have been able to connect to SharePoint from ASP .net application.
    2) I have been able to retrieve document from a specific SharePoint folder.
    3) Read the document from SharePoint folder and bind them to a drop down on the asp .net page.
    What is missing?
    I am not aware about any API that SharePoint Online provides to convert Word document to HTML. Any code sample or reference on how to will be much appreciated. 
    I am not also not sure what is the best way of achieving the functionality this?
    Thanks 
    Krishna

    If this was SharePoint server then it would be easy however in O365 You need to create a app which will use the word automation service and below is  powershell which you can use for the conversion:-
    # This script will convert Docx to PDF using word automation and similarly it can be used to convert to HTML
    $wordFile="http://contoso/kick.docx"
    $pdfFile="http://contoso/kick.pdf"
    $wasp = Get-SPServiceApplicationProxy | where { $_.TypeName -eq "Word Automation Services Proxy" }
    $site = Get-SPSite "http://contoso"
    $ConvertJob = New-Object Microsoft.Office.Word.Server.Conversions.SyncConverter($wasp)
    $ConvertJob.UserToken = $site.UserToken
    $ConvertJob.Settings.UpdateFields = $false
    $ConvertJob.Settings.OutputFormat = "PDF"
    $ConvertJob.Convert($wordFile, $pdfFile)

  • How to open word document from application server?

    hello ,
    I want to open a word document that is placed on the application server.
    the function module 'ws_execute' works fine for displaying documents placed on ur local file system. But if i want to open from application server, what needs to b done?
    i m referring to the following demo program 'SAPRDEMOOFFICEINTEGRATION'
    is this the correct reference or there is some other way to do the same?
    kindly help.
    Regards,
    Roshani

    Hi Roshani,
              The solution is like this.
    1> Execute - this is the solution to your program. The file is generated and put in the Application Server for the data to be sent by some means to the intended Place.
    2> To Display/View - This is for the person (who runs the program) to view if the output generated is correct or not.
             So to accomplish this use the same internal table for both Open Dataset and Gui download.
    Open dataset puts data onto the Application server and Gui_download puts the data onto the Desktop or Presentation server for the user to see the data thats fetched.
    So use them as directed to achieve the desired output.
    Reward Points.
    Thanks,
    Tej..

  • How to edit Word Document stored in BDS through ABAP WebDynpro

    Hi All,
    Currently, my company has an ECC 6 program very similar to SAPRDEMO_FORM_INTERFACE.  This program takes a word form and populates it with various bits of data for the end user.  The user can then edit this document as they see fit and save it to the BDS system against a Material. 
    The current requirement is to replicate this functionality through a WebDynpro program.  SAP does have a demo WebDynpro program IOS_TEST_WORDPROCESSING under package SIOS.  Within Method WDDOMODIFYVIEW of view TEST_VIEW_WORDPROC, the program takes the URL of a MIME repository object (which is a word document) and displays that document.  I tried to replicate this functionality by using the URL and content of the document using the CL_BDS_DOCUMENT_SET; however I am unsuccessful in getting this document to display.  No matter what I do, I cannot seem to get the BDS document to display. 
    Does anyone know how to display and edit BDS documents through WebDynpro?  Any help that you can provide would be greatly appreciated.  Thanks for your help.
    John

    >
    John Breen wrote:
    > Hi All,
    >
    > Currently, my company has an ECC 6 program very similar to SAPRDEMO_FORM_INTERFACE.  This program takes a word form and populates it with various bits of data for the end user.  The user can then edit this document as they see fit and save it to the BDS system against a Material. 
    >
    > The current requirement is to replicate this functionality through a WebDynpro program.  SAP does have a demo WebDynpro program IOS_TEST_WORDPROCESSING under package SIOS.  Within Method WDDOMODIFYVIEW of view TEST_VIEW_WORDPROC, the program takes the URL of a MIME repository object (which is a word document) and displays that document.  I tried to replicate this functionality by using the URL and content of the document using the CL_BDS_DOCUMENT_SET; however I am unsuccessful in getting this document to display.  No matter what I do, I cannot seem to get the BDS document to display. 
    >
    > Does anyone know how to display and edit BDS documents through WebDynpro?  Any help that you can provide would be greatly appreciated.  Thanks for your help.
    >
    >
    > John
    John,
    use CL_HTTP_CLIENT instead to get the document from external URL.

  • How to store word document in SAP

    Hi Friends,
         How to store and retrive word document in SAP?
    Thanks & Regards,
    Vallamuthu.M

    Hi,
    Check for the SAP ArchiveLink & BDS feature which SAP is providing . I think it will help you.
    Regards
    Maneesh Chandran

  • How to open Word Document using java?

    Respected Sir/ Madam,
    I am doing my project in Network Security using java. I have to transfer the files from server to the client. Each transferred file should have some of the access privileges such as read, write and exeucte. If the transferred file is a word document means then automatically the client should open Microsoft word and if the file is having Read Permission alone then the save, Save As, cut,copy, paste options in the MS - Word should be disabled. This is similar for all the files that i have transferred. That is if the transferred file is excel, audio, video,txt file the corresponding application should be opened properly. How could I acheive this. If the file is having write permission then if the user clicks the save option then the contents of the file should be saved in the server machine not in the client machine, Could we achieve this???? Can anyone help me regarding this? Please give me your views about this query?

    Respected Sir / Madam,
    Thank you very much for your reply. Could we use Microsoft API inside java program to achieve my doubts?? Could U explain it more????

  • How to edit word documents once converted

    Can someone please advise how to edit a document I have converted into word from PDF.
    Many thanks

    Not sure what you mean. Are you asking how to use WORD? It also depends if you used the layout or the flow conversion process. With the layout, you get a bunch of text boxes. Almost nothing is in the standard flow of WORD. If you use the flow version, you sometimes get some strange sequencing of items. You might try both. If you have a graphic, then you either have to edit the graphic in a graphics package or do OCR in Acrobat before you do the conversion.

  • How to open word document in labview

    Hi,
    I want to open word document in labview,well i have done that.
    I want to display only the page part,don't want any editions,formatting to be done.
    please suggest me solution if any.

    How are you displaying your Word document, have you achieved that already?
    As far as I know, there is only one way to display Word documents and that's through the browser ActiveX interface:
    Using the Microsoft Web Browser control to embed a Word Document in LabVIEW
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • How to import words document to photoshop?

    I just bought photoshop Cs5. I would like to use the program to create my restaurant menu but my old menu was created in Words document . Is there a way to convert Words document to a format in photoshop so I can just edit them?
    need help from a beginner
    Thank you

    I my opinion you would be better to recreate it in Photoshop if that is what you are now going to use (I would use InDesign if you had that option). Doing this will also help you learn how to use it. You may be able to copy and past the text ok within reason from the word document to Photoshop. Also if you have any images equally you should be able to do the same with them.
    I assume you have some kind of table layout with meals and prices..? You may find this kind of layout fiddly with Photoshop that is why I mentioned InDesign as you would be able to control everything a lot better.
    Good luck!

Maybe you are looking for

  • [Theme] Black75 for N9

    NOTE: While this does not void a warranty, if you are not familiar or comfortable with using terminal or flashing (just in case), you may be best to just looky-loo here. Anything released here is tested and does not "break" the device. Remember, anyt

  • Capturing DVD video shot with a DVD Camcorder

    I have a Panasonic DVD camcorder. It records on mini DVD's. With FCE, how do I capture what I've shot. The camera has a USB output but not a fire wire. Can I go directly from my digital camcorder to the capture tool? Or can I use the internal DVD pla

  • Aggregation level control?

    Hi all, I am having a bit of an issue trying to use Lumira to analyze the CMS (healthcare procedure Medicare charge data) recently released by the US government. The data has the following structure: Provider ID Procedure ID Average payment for this

  • Distribution of costs problem

    hi, i am getting a message like Customizing error: Business transaction groups are not current, when i am trying to use the t.code: ksv5 (Distribution). Please help me to solve this issue

  • Unable to view all folders within exlpo

    I have a Zen Sleek player and I have 4 main folders under the root directory. I am able to see and play everything just fine within the player but when I go to view the folders within windows explorer I only see of the 4 folders. I have performed the